[cig-commits] r4672 - cs/spatialdata-0.1/trunk

brad at geodynamics.org brad at geodynamics.org
Fri Sep 29 19:47:39 PDT 2006


Author: brad
Date: 2006-09-29 19:47:39 -0700 (Fri, 29 Sep 2006)
New Revision: 4672

Modified:
   cs/spatialdata-0.1/trunk/configure.ac
Log:
Added tests for pyrexc and pyrexembed in configure.

Modified: cs/spatialdata-0.1/trunk/configure.ac
===================================================================
--- cs/spatialdata-0.1/trunk/configure.ac	2006-09-30 00:56:33 UTC (rev 4671)
+++ cs/spatialdata-0.1/trunk/configure.ac	2006-09-30 02:47:39 UTC (rev 4672)
@@ -104,6 +104,21 @@
      AC_MSG_ERROR([Pythia library not found; try LDFLAGS="-L<pythia lib dir>"])
   ])
 
+  # PYREX/PYREXEMBED
+  AC_CHECK_PROG([have_pyrex],
+    [pyrexc],
+    [yes],
+    [no])
+  if test "$have_pyrex" = "no"; then
+    AC_MSG_ERROR([Pyrex not found in current path.])
+  fi
+  AC_CHECK_PROG([have_pyrexembed],
+    [pyrexembed],
+    [yes],
+    [no])
+  if test "$have_pyrexembed" = "no"; then
+    AC_MSG_ERROR([Pyrexembed not found in current path.])
+  fi
 fi
 
 # DOXYGEN



More information about the cig-commits mailing list