[cig-commits] r5083 - short/3D/PyLith/trunk

brad at geodynamics.org brad at geodynamics.org
Tue Oct 24 17:34:48 PDT 2006


Author: brad
Date: 2006-10-24 17:34:48 -0700 (Tue, 24 Oct 2006)
New Revision: 5083

Modified:
   short/3D/PyLith/trunk/configure.ac
Log:
Moved AM_CONDITIONALs to proper place.

Modified: short/3D/PyLith/trunk/configure.ac
===================================================================
--- short/3D/PyLith/trunk/configure.ac	2006-10-25 00:30:53 UTC (rev 5082)
+++ short/3D/PyLith/trunk/configure.ac	2006-10-25 00:34:48 UTC (rev 5083)
@@ -33,12 +33,14 @@
 	[  --enable-testing        Enable unit testing with cppunit (requires cppunit) [[default=no]]],
 	[enable_testing=yes],
 	[enable_testing=no])
+AM_CONDITIONAL([ENABLE_TESTING], [test "$enable_testing" = yes])
 
 # DOCUMENTATION w/doxygen
 AC_ARG_ENABLE([documentation],
 	[  --enable-documentation  Enable buuilding html documentation (requires doxygen) [[default=no]]],
 	[enable_documentation=yes],
 	[enable_documentation=no])
+AM_CONDITIONAL([ENABLE_DOCUMENTATION], [test "$enable_documentation" = yes])
 
 # ----------------------------------------------------------------------
 # C/C++/libtool/install
@@ -84,7 +86,6 @@
 fi
 
 # CPPUNIT
-AM_CONDITIONAL([ENABLE_TESTING], [test "$enable_testing" = yes])
 if test "$enable_testing" = "yes" ; then
   AC_LANG(C++)
   AC_CHECK_HEADER([cppunit/TestRunner.h], [], [
@@ -127,7 +128,6 @@
 ])
 
 # DOXYGEN
-AM_CONDITIONAL([ENABLE_DOCUMENTATION], [test "$enable_documentation" = yes])
 if test "$enable_documentation" = "yes" ; then
   AC_CHECK_PROG([have_doxygen],
     [doxygen],



More information about the cig-commits mailing list