[llvm-commits] CVS: llvm-test/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Wed Jul 13 21:50:03 PDT 2005



Changes in directory llvm-test/autoconf:

configure.ac updated: 1.22 -> 1.23
---
Log message:

Minor adjustments to make --with-f2c a little easier to use and understand.


---
Diffs of the changes:  (+9 -9)

 configure.ac |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)


Index: llvm-test/autoconf/configure.ac
diff -u llvm-test/autoconf/configure.ac:1.22 llvm-test/autoconf/configure.ac:1.23
--- llvm-test/autoconf/configure.ac:1.22	Tue Jul 12 12:35:53 2005
+++ llvm-test/autoconf/configure.ac	Wed Jul 13 23:49:51 2005
@@ -89,6 +89,15 @@
 AC_PROG_BISON
 AC_PROG_LIBTOOL
 
+dnl Check for f2c in various locations or get from --with-f2c option
+CHECK_F2C_ALL()
+if test "x${F2C}" = "x"; then
+  CHECK_F2C_BIN()
+  CHECK_F2C_H()
+  CHECK_F2C_LIB()
+  CHECK_F2C_ENABLE()
+fi
+
 dnl Checks for header files.
 dnl We don't check for ancient stuff or things that are guaranteed to be there
 dnl by the C++ standard. We always use the <cfoo> versions of <foo.h> C headers.
@@ -110,14 +119,5 @@
 EXTERNAL_BENCHMARK(sweep3d,/home/vadve/criswell/umt2k)
 EXTERNAL_BENCHMARK(fpgrowth,/home/vadve/shared/benchmarks/fpgrowth)
 
-dnl Check for f2c
-CHECK_F2C_ALL()
-if test "x${F2C}" = "x"; then
-  CHECK_F2C_BIN()
-  CHECK_F2C_H()
-  CHECK_F2C_LIB()
-  CHECK_F2C_ENABLE()
-fi
-
 dnl Create the output files
 AC_OUTPUT






More information about the llvm-commits mailing list