mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
add -lXext to the glx test link lines
This commit is contained in:
parent
475a0b0d4a
commit
c46f1046f0
1 changed files with 4 additions and 4 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 $X_EXTRA_LIBS ]
|
||||
[ -L$glx_libraries -lX11 -lXext $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 $X_EXTRA_LIBS ]
|
||||
[ -L$glx_libraries -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
)
|
||||
fi
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
|
@ -609,13 +609,13 @@ else
|
|||
AC_CHECK_LIB(GL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
OGL_NAME=GL,,
|
||||
[ $X_LIBS -lX11 $X_EXTRA_LIBS ]
|
||||
[ $X_LIBS -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
)
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
AC_CHECK_LIB(MesaGL, glColor4f,
|
||||
HAVE_GLX=yes
|
||||
OGL_NAME=MesaGL,,
|
||||
[ $X_LIBS -lX11 $X_EXTRA_LIBS ]
|
||||
[ $X_LIBS -lX11 -lXext $X_EXTRA_LIBS ]
|
||||
)
|
||||
fi
|
||||
if test "x$HAVE_GLX" != xyes; then
|
||||
|
|
Loading…
Reference in a new issue