Don't link agains OpenGL libraries when it's not needed
This commit is contained in:
parent
fa0c719c30
commit
02bb6a6325
1 changed files with 3 additions and 4 deletions
|
@ -198,12 +198,8 @@ esac
|
|||
|
||||
dnl Checks for libraries.
|
||||
|
||||
null_LIBS="$LIBS"
|
||||
|
||||
AC_SEARCH_LIBS(cos, m)
|
||||
|
||||
base_LIBS="$LIBS"
|
||||
|
||||
dnl Thread related checks
|
||||
AC_CHECK_LIB(pthread, pthread_exit)
|
||||
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(dlclose, dl)
|
||||
|
||||
base_LIBS="$LIBS"
|
||||
opengl_LIBS=""
|
||||
|
||||
dnl check for glut location
|
||||
AC_CHECK_HEADER(GL/glut.h)
|
||||
if test "x$ac_cv_header_GL_glut_h" = "xyes"; then
|
||||
|
|
Loading…
Add table
Reference in a new issue