Merge pull request #263 from caolanm/fix_libreoffice_android_build

fix error: use of undeclared identifier 'OPENGL_LIB'
macos/v1.5.9^2
Emmanuele Bassi 3 years ago committed by GitHub
commit 8db879f810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/dispatch_common.c

@ -683,7 +683,11 @@ epoxy_load_gl(void)
#endif
if (!api.gl_handle) {
#if defined(OPENGL_LIB)
fprintf(stderr, "Couldn't open %s or %s\n", GLX_LIB, OPENGL_LIB);
#else
fprintf(stderr, "Couldn't open %s\n", GLX_LIB);
#endif
abort();
}

Loading…
Cancel
Save