Update of /cvsroot/plib/plib/examples
In directory usw-pr-cvs1:/tmp/cvs-serv24654
Modified Files:
configure.in
Log Message:
Support for building only certain examples; ICC compatibility (warning flags)
Index: configure.in
===================================================================
RCS file: /cvsroot/plib/plib/examples/configure.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- configure.in 12 Aug 2002 21:56:43 -0000 1.27
+++ configure.in 1 Sep 2002 05:21:26 -0000 1.28
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/js/js_demo.cxx)
-AM_INIT_AUTOMAKE(plib_examples, 1.5.2)
+AM_INIT_AUTOMAKE(plib_examples, 1.6.0)
dnl Checks for programs.
@@ -22,58 +22,66 @@
[ --with-GL=DIR set the prefix directory where GL resides],
GL_PREFIX=$withval, GL_PREFIX=auto)
[...271 lines suppressed...]
+ fi
+else
+ glut_msg="no"
+fi
+
+AC_MSG_RESULT(
+[PLIB configuration information:
+
+ Building FNT examples: $enable_fnt
+ Building JS examples: $enable_js
+ Building NET examples: $enable_net
+ Building PUI examples: $enable_pui
+ Building SG examples: $enable_sg
+ Building SL examples: $enable_sl
+ Building SSG/ssgAux examples: $enable_ssg
+ Building UTIL examples: $enable_ul
+
+ Need GLUT: $glut_msg
+])
|