Update of /cvsroot/plib/plib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20530/plib
Modified Files:
configure.in
Log Message:
Added the 'PW' library. Added some functionality to the ssgAux screen dump
facility so you can dump to an array in memory as an alternative to dumping
it straight to disk.
Index: configure.in
===================================================================
RCS file: /cvsroot/plib/plib/configure.in,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- configure.in 2 Feb 2004 01:35:15 -0000 1.53
+++ configure.in 16 Feb 2004 02:26:26 -0000 1.54
@@ -50,6 +50,10 @@
[ --enable-js build JS library default: yes],,
enable_js=yes)
+AC_ARG_ENABLE(pw,
+[ --enable-pw build PW library default: yes],,
+enable_pw=yes)
+
AC_ARG_ENABLE(net,
[ --enable-net build NET library default: yes],,
enable_net=yes)
@@ -98,6 +102,13 @@
fi
fi
+if test "x$enable_pw" = "xyes"; then
+ if test "x$enable_ul" = "xno"; then
+ AC_MSG_WARN([cannot build PW library without UL library enabled])
+ dependancy_problem=yes
+ fi
+fi
+
if test "x$enable_js" = "xyes"; then
if test "x$enable_ul" = "xno"; then
AC_MSG_WARN([cannot build JS library without UL library enabled])
@@ -194,6 +205,7 @@
AM_CONDITIONAL(BUILD_FNT, test "x$enable_fnt" = "xyes")
AM_CONDITIONAL(BUILD_JS, test "x$enable_js" = "xyes")
+AM_CONDITIONAL(BUILD_PW, test "x$enable_pw" = "xyes")
AM_CONDITIONAL(BUILD_NET, test "x$enable_net" = "xyes")
AM_CONDITIONAL(BUILD_PUI, test "x$enable_pui" = "xyes")
AM_CONDITIONAL(BUILD_SG, test "x$enable_sg" = "xyes")
@@ -413,6 +425,7 @@
src/ssg/Makefile \
src/ssgAux/Makefile \
src/fnt/Makefile \
+ src/pw/Makefile \
src/net/Makefile )
if test "x$need_glut" = "xyes"; then
@@ -441,6 +454,7 @@
Building SL library: $enable_sl
Building SSG library: $enable_ssg
Building ssgAux library: $enable_ssgaux
+ Building PW library: $enable_pw
Building UTIL library: $enable_ul
Need GLUT: $glut_msg
|