1
0
Fork 0

Updated Thanks file.

Changes to configure.in for better solaris support.
This commit is contained in:
curt 1999-01-19 17:49:14 +00:00
parent 164eeabc57
commit 67c365a447
2 changed files with 26 additions and 18 deletions

4
Thanks
View file

@ -26,6 +26,10 @@ Steve Baker <sbaker@link.com>
most of the more sophisticated features of Flight Gear. most of the more sophisticated features of Flight Gear.
Michael Basler <pmb@knUUt.de>
Coauthor of the Getting Started guide.
Paul Bleisch <pbleisch@acm.org> Paul Bleisch <pbleisch@acm.org>
Paul redid the "debug" system so that it would be much more Paul redid the "debug" system so that it would be much more
flexible, so it could be easily disabled for production system, and flexible, so it could be easily disabled for production system, and

View file

@ -95,7 +95,11 @@ dnl Enable serial support on Unix type systems
AM_CONDITIONAL(ENABLE_UNIX_SERIAL, true) AM_CONDITIONAL(ENABLE_UNIX_SERIAL, true)
dnl extra library and include directories dnl extra library and include directories
EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6" EXTRA_DIRS="/usr/local /usr/X11R6"
if test -d /opt/X11R6 ; then
EXTRA_DIRS="$EXTRA_DIRS /opt/X11R6"
fi
if test "x$ac_cv_header_windows_h" = "xyes" ; then if test "x$ac_cv_header_windows_h" = "xyes" ; then
EXTRA_DIRS="${EXTRA_DIRS} `pwd`/Win32" EXTRA_DIRS="${EXTRA_DIRS} `pwd`/Win32"
@ -115,7 +119,7 @@ AC_CHECK_LIB(m, cos)
base_LIBS="$LIBS" base_LIBS="$LIBS"
# AC_CHECK_LIB(socket, socket) AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(X11, XCreateWindow) AC_CHECK_LIB(X11, XCreateWindow)
AC_CHECK_LIB(Xext, XShmCreateImage) AC_CHECK_LIB(Xext, XShmCreateImage)
AC_CHECK_LIB(Xi, XGetExtensionVersion) AC_CHECK_LIB(Xi, XGetExtensionVersion)
@ -218,6 +222,22 @@ else
ac_cv_lib_glut_glutGameModeString="yes" ac_cv_lib_glut_glutGameModeString="yes"
fi fi
if test "x$ac_cv_lib_glut_glutGetModifiers" = "xno"; then
echo
echo "Unable to find the necessary OpenGL or GLUT libraries."
echo "See config.log for automated test details and results ..."
exit 1
fi
if test "x$ac_cv_lib_glut_glutGameModeString" = "xno"; then
echo
echo "Your version of glut doesn't support game mode."
echo "You need to fetch and install the latest version of glut from:"
echo
echo " http://reality.sgi.com/opengl/glut3/glut3.html"
exit 1
fi
opengl_LIBS="$LIBS" opengl_LIBS="$LIBS"
LIBS="$base_LIBS" LIBS="$base_LIBS"
@ -243,22 +263,6 @@ AC_FUNC_VPRINTF
AC_CHECK_FUNCS( ftime gettimeofday memcpy bcopy mktime strstr rand random \ AC_CHECK_FUNCS( ftime gettimeofday memcpy bcopy mktime strstr rand random \
setitimer getitimer signal GetLocalTime rint getrusage ) setitimer getitimer signal GetLocalTime rint getrusage )
if test "x$ac_cv_lib_glut_glutGetModifiers" = "xno"; then
echo
echo "Unable to find the necessary OpenGL or GLUT libraries."
echo "See config.log for automated test details and results ..."
exit 1
fi
if test "x$ac_cv_lib_glut_glutGameModeString" = "xno"; then
echo
echo "Your version of glut doesn't support game mode."
echo "You need to fetch and install the latest version of glut from:"
echo
echo " http://reality.sgi.com/opengl/glut3/glut3.html"
exit 1
fi
AM_CONFIG_HEADER(Include/config.h) AM_CONFIG_HEADER(Include/config.h)
AC_OUTPUT( \ AC_OUTPUT( \