Add some solaris specific libraries
This commit is contained in:
parent
1b390135a1
commit
14c3e9e4d4
1 changed files with 14 additions and 1 deletions
13
configure.ac
13
configure.ac
|
@ -223,7 +223,20 @@ if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" \
|
|||
fi
|
||||
LIBS=$save_LIBS
|
||||
fi
|
||||
|
||||
case "${host}" in
|
||||
*-*-irix*)
|
||||
;;
|
||||
*-*-solaris*)
|
||||
AC_CHECK_LIB(nsl, main)
|
||||
AC_CHECK_LIB(dl, dlclose)
|
||||
AC_CHECK_LIB(xnet,inet_addr)
|
||||
AC_CHECK_LIB(socket, socket)
|
||||
;;
|
||||
*)
|
||||
AC_CHECK_LIB(socket, socket)
|
||||
;;
|
||||
esac
|
||||
|
||||
dnl check for glut location
|
||||
AC_CHECK_HEADER(GL/glut.h)
|
||||
|
|
Loading…
Add table
Reference in a new issue