diff options
author | Mumit Khan <khan@xraylith.wisc.edu> | 1999-04-15 22:05:35 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-15 16:05:35 -0600 |
commit | acbbd80a549738efba5710a1e4fee114fd08056e (patch) | |
tree | 0ee0d2463aa466f8760f6e1c1f676361d5e55672 /libiberty/configure.in | |
parent | d825fa8795d3e7e98ecf28eaf3e8ce38c5cde441 (diff) | |
download | gcc-acbbd80a549738efba5710a1e4fee114fd08056e.zip gcc-acbbd80a549738efba5710a1e4fee114fd08056e.tar.gz gcc-acbbd80a549738efba5710a1e4fee114fd08056e.tar.bz2 |
configure.in (checkfuncs): Check for sbrk.
* configure.in (checkfuncs): Check for sbrk.
* config.in: Rebuilt.
* configure: Likewise.
* xmalloc.c: Use HAVE_SBRK instead of the host specific definitions.
From-SVN: r26480
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 9a49672..da33ca9 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -154,7 +154,7 @@ funcs="$funcs waitpid" vars="sys_errlist sys_nerr sys_siglist" -checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times" +checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk" # These are neither executed nor required, but they help keep # autoheader happy without adding a bunch of text to acconfig.h. @@ -168,6 +168,7 @@ if test "x" = "y"; then AC_DEFINE(HAVE_SYS_NERR) AC_DEFINE(HAVE_SYS_SIGLIST) AC_CHECK_FUNCS(getrusage on_exit psignal strerror strsignal sysconf times) + AC_CHECK_FUNCS(sbrk) fi # For each of these functions, if the host does not provide the |