Change libGLU check to look for gluLookAt instead of glBegin.
This commit is contained in:
parent
c2b5cb35d2
commit
6e9ab40b28
|
@ -4079,9 +4079,9 @@ EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
echo $ac_n "checking for glBegin in -lGLU""... $ac_c" 1>&6
|
echo $ac_n "checking for gluLookAt in -lGLU""... $ac_c" 1>&6
|
||||||
echo "configure:4084: checking for glBegin in -lGLU" >&5
|
echo "configure:4084: checking for gluLookAt in -lGLU" >&5
|
||||||
ac_lib_var=`echo GLU'_'glBegin | sed 'y%./+-%__p_%'`
|
ac_lib_var=`echo GLU'_'gluLookAt | sed 'y%./+-%__p_%'`
|
||||||
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
|
@ -4094,10 +4094,10 @@ cat > conftest.$ac_ext <<EOF
|
||||||
/* Override any gcc2 internal prototype to avoid an error. */
|
/* Override any gcc2 internal prototype to avoid an error. */
|
||||||
/* We use char because int might match the return type of a gcc2
|
/* We use char because int might match the return type of a gcc2
|
||||||
builtin and then its argument prototype would still apply. */
|
builtin and then its argument prototype would still apply. */
|
||||||
char glBegin();
|
char gluLookAt();
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
glBegin()
|
gluLookAt()
|
||||||
; return 0; }
|
; return 0; }
|
||||||
EOF
|
EOF
|
||||||
if { (eval echo configure:4104: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
if { (eval echo configure:4104: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
||||||
|
|
|
@ -334,7 +334,7 @@ then
|
||||||
|
|
||||||
fi
|
fi
|
||||||
dnl Check for GLU32 library.
|
dnl Check for GLU32 library.
|
||||||
AC_CHECK_LIB(GLU,glBegin,
|
AC_CHECK_LIB(GLU,gluLookAt,
|
||||||
X_PRE_LIBS="$X_PRE_LIBS -lGLU"
|
X_PRE_LIBS="$X_PRE_LIBS -lGLU"
|
||||||
GLU32FILES='$(GLU32FILES)'
|
GLU32FILES='$(GLU32FILES)'
|
||||||
GLU32_DLL=glu32
|
GLU32_DLL=glu32
|
||||||
|
|
Loading…
Reference in New Issue