mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
forgot to add it to GLX_LIBS
This commit is contained in:
parent
c46f1046f0
commit
fa99cb304b
1 changed files with 4 additions and 2 deletions
|
@ -580,13 +580,13 @@ if test "x$glx_libraries" != xauto -a "x$glx_libraries" != xno -a "x$glx_librari
|
|||
AC_CHECK_LIB(GL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
OGL_NAME=GL,,
|
||||
[ -L$glx_libraries -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
[ -L$glx_libraries-lX11 $X_EXTRA_LIBS ]
|
||||
)
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
AC_CHECK_LIB(MesaGL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
OGL_NAME=MesaGL,,
|
||||
[ -L$glx_libraries -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
[ -L$glx_libraries -lX11 $X_EXTRA_LIBS ]
|
||||
)
|
||||
fi
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
|
@ -608,12 +608,14 @@ else
|
|||
HAVE_GLX=no
|
||||
AC_CHECK_LIB(GL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
GLX_LIBS=-lXext
|
||||
OGL_NAME=GL,,
|
||||
[ $X_LIBS -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
)
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
AC_CHECK_LIB(MesaGL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
GLX_LIBS=-lXext
|
||||
OGL_NAME=MesaGL,,
|
||||
[ $X_LIBS -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue