Skip to content

Commit

Permalink
Fixed bug 5208 - Fix libGL loading on OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 23, 2020
1 parent c2b8530 commit ce293ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/video/x11/SDL_x11opengl.c
Expand Up @@ -32,11 +32,11 @@
#include "SDL_loadso.h"
#include "SDL_x11opengles.h"

#if defined(__IRIX__) || defined(__NetBSD__)
#if defined(__IRIX__) || defined(__NetBSD__) || defined(__OpenBSD__)
/*
* IRIX doesn't have a GL library versioning system.
* NetBSD has different GL library versions depending on how the library was
* installed (package vs. xsrc).
* NetBSD and OpenBSD have different GL library versions depending on how
* the library was installed.
*/
#define DEFAULT_OPENGL "libGL.so"
#elif defined(__MACOSX__)
Expand Down

0 comments on commit ce293ee

Please sign in to comment.