Add some solaris specific libraries
This commit is contained in:
parent
1b390135a1
commit
14c3e9e4d4
1 changed files with 14 additions and 1 deletions
15
configure.ac
15
configure.ac
|
@ -223,7 +223,20 @@ if test "x$ac_cv_lib_pthread_pthread_exit" != "xyes" \
|
||||||
fi
|
fi
|
||||||
LIBS=$save_LIBS
|
LIBS=$save_LIBS
|
||||||
fi
|
fi
|
||||||
AC_CHECK_LIB(socket, socket)
|
|
||||||
|
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
|
dnl check for glut location
|
||||||
AC_CHECK_HEADER(GL/glut.h)
|
AC_CHECK_HEADER(GL/glut.h)
|
||||||
|
|
Loading…
Add table
Reference in a new issue