diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 05:49:15 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 05:49:15 +0000 |
commit | 0fcca1262bf8468e369365244c5d543f4c75632c (patch) | |
tree | 1a6ab9b563e7c25547e5d9a1103489a5254f0da0 | |
parent | 63f13c4cbc25f3d1c234d982524c873fc589b197 (diff) | |
download | bcm5719-llvm-0fcca1262bf8468e369365244c5d543f4c75632c.tar.gz bcm5719-llvm-0fcca1262bf8468e369365244c5d543f4c75632c.zip |
For PR351:
* lib/System depends on sbrk(3), make sure we check for it.
llvm-svn: 19200
-rw-r--r-- | llvm/autoconf/configure.ac | 4 | ||||
-rwxr-xr-x | llvm/configure | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index e8c00a476f2..a236005ac22 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/autoconf/configure.ac @@ -443,8 +443,8 @@ dnl===-----------------------------------------------------------------------=== AC_CHECK_FUNCS([backtrace getcwd getpagesize getrusage gettimeofday isatty ]) AC_CHECK_FUNCS([mkdtemp mkstemp mktemp ]) -AC_CHECK_FUNCS([realpath setrlimit strdup strerror strerror_r strtoll strtoq ]) -AC_CHECK_FUNCS([sysconf]) +AC_CHECK_FUNCS([realpath sbrk setrlimit strdup strerror strerror_r ]) +AC_CHECK_FUNCS([strtoll strtoq sysconf]) AC_C_PRINTF_A AC_FUNC_ALLOCA AC_FUNC_RAND48 diff --git a/llvm/configure b/llvm/configure index 69e95560cd4..870f6339764 100755 --- a/llvm/configure +++ b/llvm/configure @@ -27274,8 +27274,7 @@ done - -for ac_func in realpath setrlimit strdup strerror strerror_r strtoll strtoq +for ac_func in realpath sbrk setrlimit strdup strerror strerror_r do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 @@ -27377,7 +27376,9 @@ fi done -for ac_func in sysconf + + +for ac_func in strtoll strtoq sysconf do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 |