mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
Don't put newlines in AC macros that can't handle them!
llvm-svn: 18952
This commit is contained in:
parent
48ea06b9bb
commit
e77564ce28
@ -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
|
||||
|
7
configure
vendored
7
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user