[Plib-cvs] plib/examples configure.in,1.36,1.37
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2004-02-16 02:34:13
|
Update of /cvsroot/plib/plib/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20530/plib/examples 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/examples/configure.in,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- configure.in 30 Nov 2003 21:03:23 -0000 1.36 +++ configure.in 16 Feb 2004 02:26:27 -0000 1.37 @@ -31,6 +31,10 @@ [ --enable-js build JS examples default: yes],, enable_js=yes) +AC_ARG_ENABLE(pw, +[ --enable-pw build PW examples default: yes],, +enable_pw=yes) + AC_ARG_ENABLE(net, [ --enable-net build NET examples default: yes],, enable_net=yes) @@ -68,6 +72,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") @@ -253,6 +258,7 @@ Makefile \ src/Makefile \ src/js/Makefile \ + src/pw/Makefile \ src/pui/Makefile \ src/sg/Makefile \ src/sl/Makefile \ @@ -290,6 +296,7 @@ Building FNT examples: $enable_fnt Building JS examples: $enable_js + Building PW examples: $enable_pw Building NET examples: $enable_net Building PUI examples: $enable_pui Building SG examples: $enable_sg |