[Plib-cvs] plib configure.in,1.47,1.48
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-05 06:15:00
|
Update of /cvsroot/plib/plib In directory usw-pr-cvs1:/tmp/cvs-serv22787/plib Modified Files: configure.in Log Message: Added PSL. Modified documents and configure/make system accordingly. Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/configure.in,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- configure.in 2 Sep 2002 19:14:05 -0000 1.47 +++ configure.in 5 Sep 2002 06:14:56 -0000 1.48 @@ -37,6 +37,7 @@ [ --with-GL=DIR set the prefix directory where GL resides], GL_PREFIX=$withval, GL_PREFIX=auto) + AC_ARG_WITH(glut, [ --without-glut build GLUT-free PUI library (highly experimental!)],, with_glut=yes) @@ -62,6 +63,10 @@ [ --enable-sg build SG library default: yes],, enable_sg=yes) +AC_ARG_ENABLE(psl, +[ --enable-psl build PSL library default: yes],, +enable_psl=yes) + AC_ARG_ENABLE(sl, [ --enable-sl build SL library default: yes],, enable_sl=yes) @@ -139,6 +144,13 @@ fi fi +if test "x$enable_psl" = "xyes"; then + if test "x$enable_ul" = "xno"; then + AC_MSG_WARN([cannot build PSL library without UL library enabled]) + dependancy_problem=yes + fi +fi + if test "x$enable_sl" = "xyes"; then if test "x$enable_ul" = "xno"; then AC_MSG_WARN([cannot build SL library without UL library enabled]) @@ -186,6 +198,7 @@ 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") +AM_CONDITIONAL(BUILD_PSL, test "x$enable_psl" = "xyes") AM_CONDITIONAL(BUILD_SL, test "x$enable_sl" = "xyes") AM_CONDITIONAL(BUILD_SSG, test "x$enable_ssg" = "xyes") AM_CONDITIONAL(BUILD_SSGAUX, test "x$enable_ssgaux" = "xyes") @@ -383,6 +396,7 @@ src/pui/Makefile \ src/sg/Makefile \ src/sl/Makefile \ + src/psl/Makefile \ src/ssg/Makefile \ src/ssgAux/Makefile \ src/fnt/Makefile \ @@ -410,6 +424,7 @@ Building NET library: $enable_net Building PUI library: $enable_pui Building SG library: $enable_sg + Building PSL library: $enable_psl Building SL library: $enable_sl Building SSG library: $enable_ssg Building ssgAux library: $enable_ssgaux |