diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-01 14:06:21 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-01 14:06:21 +0000 |
commit | 06db458bca0265f9dffe90d9036b02b4ba638340 (patch) | |
tree | c63866d74701b49941622f5445296b416c697c6f /autoconf | |
parent | 1766971769c21aa4e55671ac5be45b21ff31f8cd (diff) |
autoconf: generate clang's private config.h header
The CMake build already generated one. Follows clang r149497.
This brings us one step closer to compiling and configuring clang
separately from LLVM using the autoconf build, too.
(I lack the right version of autoconf et al. to regen, but it
was a simple change, so I just updated configure manually.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index d01cea48057..84a120b4f09 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1586,7 +1586,10 @@ AC_CONFIG_FILES([llvm.spec]) dnl Configure doxygen's configuration file AC_CONFIG_FILES([docs/doxygen.cfg]) + +dnl Configure clang, if present if test -f ${srcdir}/tools/clang/README.txt; then + AC_CONFIG_HEADERS([tools/clang/include/clang/Config/config.h]) AC_CONFIG_FILES([tools/clang/docs/doxygen.cfg]) fi |