aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-15 04:01:48 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-15 04:01:48 +0000
commit6af3d265261e24792b642cd476438cb072b19bbf (patch)
tree32aeab7888d2adecb9afdddbfeea71397ad7424f
parent175bf068ab753f0dbd231703f2ae0e8751c71354 (diff)
Don't put newlines in AC macros that can't handle them!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18952 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--autoconf/configure.ac5
-rwxr-xr-xconfigure7
2 files changed, 5 insertions, 7 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index e295b87878..2ce691b9a1 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -409,9 +409,8 @@ dnl=== SECTION 8: Check for specific functions needed
dnl===
dnl===-----------------------------------------------------------------------===
-AC_CHECK_FUNCS([backtrace getcwd gettimeofday isatty getrusage mkstemp mktemp
- mkdtemp realpath])
-AC_CHECK_FUNCS([strdup strtoq strtoll])
+AC_CHECK_FUNCS([backtrace getcwd gettimeofday isatty getrusage mkstemp mktemp])
+AC_CHECK_FUNCS([mkdtemp realpath strdup strtoq strtoll])
AC_C_PRINTF_A
AC_FUNC_ALLOCA
AC_FUNC_RAND48
diff --git a/configure b/configure
index 1b47b619af..b0545cfd40 100755
--- a/configure
+++ b/configure
@@ -26618,10 +26618,7 @@ fi
-
-
for ac_func in backtrace getcwd gettimeofday isatty getrusage mkstemp mktemp
- mkdtemp realpath
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $ac_func" >&5
@@ -26725,7 +26722,9 @@ done
-for ac_func in strdup strtoq strtoll
+
+
+for ac_func in mkdtemp realpath strdup strtoq strtoll
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $ac_func" >&5