1
0
Fork 0

Don't link agains OpenGL libraries when it's not needed

This commit is contained in:
ehofman 2003-07-07 11:26:48 +00:00
parent fa0c719c30
commit 02bb6a6325

View file

@ -198,12 +198,8 @@ esac
dnl Checks for libraries. dnl Checks for libraries.
null_LIBS="$LIBS"
AC_SEARCH_LIBS(cos, m) AC_SEARCH_LIBS(cos, m)
base_LIBS="$LIBS"
dnl Thread related checks dnl Thread related checks
AC_CHECK_LIB(pthread, pthread_exit) AC_CHECK_LIB(pthread, pthread_exit)
if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" \ if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" \
@ -229,6 +225,9 @@ AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(main, nsl) AC_SEARCH_LIBS(main, nsl)
AC_SEARCH_LIBS(dlclose, dl) AC_SEARCH_LIBS(dlclose, dl)
base_LIBS="$LIBS"
opengl_LIBS=""
dnl check for glut location dnl check for glut location
AC_CHECK_HEADER(GL/glut.h) AC_CHECK_HEADER(GL/glut.h)
if test "x$ac_cv_header_GL_glut_h" = "xyes"; then if test "x$ac_cv_header_GL_glut_h" = "xyes"; then