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

Misha Brukman brukman at cs.uiuc.edu
Mon Apr 18 11:55:24 PDT 2005



Changes in directory llvm-tv/autoconf:

configure.ac updated: 1.5 -> 1.6
---
Log message:

Fix autoconf to work with autoconf-2.59


---
Diffs of the changes:  (+8 -4)

 configure.ac |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)


Index: llvm-tv/autoconf/configure.ac
diff -u llvm-tv/autoconf/configure.ac:1.5 llvm-tv/autoconf/configure.ac:1.6
--- llvm-tv/autoconf/configure.ac:1.5	Mon Apr 18 13:38:59 2005
+++ llvm-tv/autoconf/configure.ac	Mon Apr 18 13:54:13 2005
@@ -1,13 +1,17 @@
 dnl Process this file with autoconf 2.5x to create a configure script.
 
 dnl Initialize
-AC_INIT([[[LLVM-TV]]],[[[pre-release]]],[llvmbugs at cs.uiuc.edu])
+AC_INIT([[llvm-tv]],[[pre-release]],[llvmbugs at cs.uiuc.edu])
 
 dnl Place all of the extra autoconf files into the config subdirectory
 AC_CONFIG_AUX_DIR([autoconf])
 
+dnl Configure the makefile's configuration data
+AC_CONFIG_FILES([Makefile.config])
+
 dnl Configure Makefiles
 AC_CONFIG_MAKEFILE(Makefile)
+AC_CONFIG_MAKEFILE(Makefile.common)
 AC_CONFIG_MAKEFILE(lib/Makefile)
 AC_CONFIG_MAKEFILE(lib/Snapshot/Makefile)
 AC_CONFIG_MAKEFILE(tools/Makefile)
@@ -20,8 +24,8 @@
 dnl have been specified by the user. By default, assume we've unpacked this
 dnl project in projects/<project-name>, as is customary, and look in ../..
 dnl for the main LLVM source and object trees.
-AC_ARG_WITH(llvmsrc,AC_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
-AC_ARG_WITH(llvmobj,AC_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
+AC_ARG_WITH(llvmsrc,AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
+AC_ARG_WITH(llvmobj,AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
 
 dnl Create the output files
-AC_OUTPUT([Makefile.common Makefile.config])
+AC_OUTPUT






More information about the llvm-commits mailing list