Update of /cvsroot/plib/plib/demos/exposer
In directory usw-pr-cvs1:/tmp/cvs-serv30008
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/exposer/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- configure.in 1 Sep 2002 01:07:59 -0000 1.12
+++ configure.in 1 Sep 2002 05:54:52 -0000 1.13
@@ -3,6 +3,7 @@
AC_INIT(src/exposer.cxx)
AM_INIT_AUTOMAKE(exposer, 0.0.1)
+
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
@@ -14,10 +15,13 @@
AC_LANG_CPLUSPLUS
[...189 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
AC_OUTPUT( Makefile \
data/Makefile \
|