Browse Source

build: fix EGL library detection.

Sometimes libEGL.so can be available (provided as a symlink
by Debian diversion packages) while EGL/egl.h isn’t.
legacy
Sam Hocevar 6 years ago
parent
commit
0e8227aa71
2 changed files with 17 additions and 14 deletions
  1. +13
    -12
      build/autotools/m4/lol-conf.m4
  2. +4
    -2
      src/eglapp.cpp

+ 13
- 12
build/autotools/m4/lol-conf.m4 View File

@@ -119,18 +119,19 @@ if test "${enable_gl}" != "no"; then
AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl) AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl)
EGL_LIBS="${EGL_LIBS} -lX11" EGL_LIBS="${EGL_LIBS} -lX11"
fi fi
AC_CHECK_LIB(EGL, main, AC_CHECK_HEADERS(EGL/egl.h,
[ac_cv_my_have_egl="yes" [AC_CHECK_LIB(EGL, eglInitialize,
AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl) [ac_cv_my_have_egl="yes"
EGL_LIBS="-lEGL"]) AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl)
dnl Raspberry Pi is different, check for it with extra libs; also we EGL_LIBS="-lEGL"])
dnl look for a different function to bypass autoconf caching dnl Raspberry Pi is different, check for it with extra libs; also we
AC_CHECK_LIB(EGL, eglGetDisplay, dnl look for a different function to bypass autoconf caching
[ac_cv_my_have_egl="yes" AC_CHECK_LIB(EGL, eglGetDisplay,
AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl) [ac_cv_my_have_egl="yes"
EGL_LIBS="-lEGL -lvcos -lvchiq_arm -lbcm_host -lGLESv2"], AC_DEFINE(LOL_USE_EGL, 1, Define to 1 to use libegl)
[:], EGL_LIBS="-lEGL -lvcos -lvchiq_arm -lbcm_host -lGLESv2"],
[-lvcos -lvchiq_arm -lbcm_host -lGLESv2]) [:],
[-lvcos -lvchiq_arm -lbcm_host -lGLESv2])])
fi fi
AM_CONDITIONAL(LOL_USE_EGL, test "${ac_cv_my_have_egl}" != "no") AM_CONDITIONAL(LOL_USE_EGL, test "${ac_cv_my_have_egl}" != "no")




+ 4
- 2
src/eglapp.cpp View File

@@ -20,8 +20,10 @@
# include <X11/Xatom.h> # include <X11/Xatom.h>
# include <X11/Xutil.h> # include <X11/Xutil.h>
# endif # endif
# include <EGL/egl.h> # if defined HAVE_EGL_EGL_H
# include <EGL/eglext.h> # include <EGL/egl.h>
# include <EGL/eglext.h>
# endif
#endif #endif


#if LOL_USE_SDL #if LOL_USE_SDL


||||||
x
 
000:0
Loading…
Cancel
Save