SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,14 @@
Index: OpenGL/__init__.py
--- OpenGL/__init__.py.orig
+++ OpenGL/__init__.py
@@ -212,6 +212,10 @@ TYPE_ANNOTATIONS = False
from OpenGL.plugins import PlatformPlugin, FormatHandler
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' )
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd4', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd5', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd6', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd7', 'OpenGL.platform.glx.GLXPlatform' )
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' )
PlatformPlugin( 'posix', 'OpenGL.platform.glx.GLXPlatform' )
PlatformPlugin( 'osmesa', 'OpenGL.platform.osmesa.OSMesaPlatform')