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

John Criswell criswell at cs.uiuc.edu
Fri Jul 23 08:41:07 PDT 2004



Changes in directory llvm/autoconf:

configure.ac updated: 1.95 -> 1.96

---
Log message:

Revised the generation of files so that they follow the newer autoconf
standards.  This is in hopes of fixing configuration problems on
Windows Services for Unix.



---
Diffs of the changes:  (+12 -7)

Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.95 llvm/autoconf/configure.ac:1.96
--- llvm/autoconf/configure.ac:1.95	Tue Jul 20 22:14:51 2004
+++ llvm/autoconf/configure.ac	Fri Jul 23 10:40:57 2004
@@ -26,8 +26,18 @@
   fi
 done
 
-dnl Configure a header file
+dnl Configure header files
 AC_CONFIG_HEADERS(include/Config/config.h)
+
+dnl Configure other output file
+AC_CONFIG_FILES(Makefile.config
+ include/Support/DataTypes.h
+ include/Support/ThreadSupport.h
+ include/Support/hash_map
+ include/Support/hash_set
+ include/Support/iterator)
+
+dnl Do special configuration of Makefiles
 AC_CONFIG_MAKEFILE(Makefile)
 AC_CONFIG_MAKEFILE(Makefile.common)
 AC_CONFIG_MAKEFILE(lib/Makefile)
@@ -448,12 +458,7 @@
                    [Extension that shared libraries have, e.g., ".so".])
 
 dnl Create the output files
-AC_OUTPUT(Makefile.config
- include/Support/DataTypes.h
- include/Support/ThreadSupport.h
- include/Support/hash_map
- include/Support/hash_set
- include/Support/iterator)
+AC_OUTPUT()
 
 dnl Warn loudly if llvm-gcc was not obviously working
 if test $llvmgccwarn = yes





More information about the llvm-commits mailing list