summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2004-07-23 15:40:57 +0000
committerJohn Criswell <criswell@uiuc.edu>2004-07-23 15:40:57 +0000
commitdc76e323968007ae8b89788b8b932e26dfa18abe (patch)
tree9a6485de72f962994c8cb0a7f37530c04b3d1590 /autoconf
parentec2bc645053e9051ada01fac6a555df17a85c91d (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15132 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac19
1 files changed, 12 insertions, 7 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 89a4eef4f73..4d83147df69 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -26,8 +26,18 @@ do
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 @@ AC_DEFINE_UNQUOTED(SHLIBEXT,"$SHLIBEXT",
[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