Update of /cvsroot/playerstage/code/stage
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7267
Modified Files:
configure.ac
Log Message:
attempting to work around OS X GL strangeness
Index: configure.ac
===================================================================
RCS file: /cvsroot/playerstage/code/stage/configure.ac,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** configure.ac 24 Feb 2008 20:13:57 -0000 1.23
--- configure.ac 24 Feb 2008 20:46:12 -0000 1.24
***************
*** 11,18 ****
AC_CONFIG_SRCDIR(libstage/model.cc)
! dnl determine system type. this is used in a couple of places to infer the
! dnl types of arguments to some networking library functions. if/when we
! dnl upgrade to newer Autotools, this can probably go away.
AC_CANONICAL_SYSTEM
dnl Initialize automake, requiring version 1.9 or better,
--- 11,24 ----
AC_CONFIG_SRCDIR(libstage/model.cc)
! dnl Determine system type. We need to know if we're on Darwin so we
! dnl can make spacial arrangements for OS X's weird framework system
AC_CANONICAL_SYSTEM
+ darwin=no
+ case $host in
+ *-darwin*)
+ darwin=yes ;;
+ esac
+ AM_CONDITIONAL(DARWIN, test "x$darwin" = "xyes")
+
dnl Initialize automake, requiring version 1.9 or better,
***************
*** 23,27 ****
AC_PROG_MAKE_SET
-
dnl Generate a configuration header called <config.h> and put all the C
dnl preprocessor defines in there
--- 29,32 ----
***************
*** 52,56 ****
dnl ==== OPEN GL =====
! AX_CHECK_GLU
dnl ==== GRAPHICS FILES ====
--- 57,61 ----
dnl ==== OPEN GL =====
! dnl AX_CHECK_GLU
dnl ==== GRAPHICS FILES ====
|