[Plib-cvs] plib/demos/ttt3d configure.in,1.10,1.11
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-09-01 06:07:04
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv31783 Modified Files: configure.in Log Message: Adopted a bunch of changes from the top-level configure.in Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- configure.in 1 Sep 2002 01:08:00 -0000 1.10 +++ configure.in 1 Sep 2002 06:07:01 -0000 1.11 @@ -14,10 +14,13 @@ AC_LANG_CPLUSPLUS + dnl Command line arguments. +dnl Don't use AC_HELP_STRING here as old versions of autoconf do not +dnl understand it. AC_ARG_WITH(GL, -AC_HELP_STRING([--with-GL=DIR], [set the prefix directory where GL resides]), +[ --with-GL=DIR set the prefix directory where GL resides], [...184 lines suppressed...] + WFLAG="-fullwarn"; + fi + ;; +*) + if test "x$CXX" = "xicpc" || test "x$CXX" = "xicc"; then + WFLAG="-w1" + fi + ;; +esac + +CFLAGS="$CFLAGS $WFLAG" +CXXFLAGS="$CXXFLAGS $WFLAG" -if test "x$ac_cv_lib_audio_ALopenport" = "xyes" ; then - dnl this is an SGI machine... - LIBS="$LIBS -laudio" -fi MY_EXPAND_DIR(ttt3d, "$datadir/games/$PACKAGE") AC_DEFINE_UNQUOTED(TTT3D_DATADIR, "$ttt3d_datadir") |