diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-07-22 00:41:28 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-07-22 00:41:28 +0000 |
commit | d2877acc14917f127c982a3c176dcd3eb3dabb4f (patch) | |
tree | 31efdd425a3e83dacb07bc74edb66de04d7713bd /configure.ac | |
parent | 4902bd18cc771b4b8674ac27bec3d473cdf84cf2 (diff) | |
download | idutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.tar.gz idutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.tar.bz2 idutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.zip |
* fix sbrk portability issue
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 8efded7..c0bc3c3 100644 --- a/configure.ac +++ b/configure.ac @@ -27,10 +27,12 @@ AC_FUNC_ALLOCA AM_GNU_GETTEXT -# Use HAVE_LINK as discriminator between Unix systems and others -AC_CHECK_FUNCS(link, - [AC_MSG_NOTICE([assuming Unix conventions])], - [AC_MSG_NOTICE([assuming non-Unix])]) +# check functions + +# if HAVE_LINK, then in the code we look for file aliases +# if HAVE_SBRK, then we can generate statistics on memory usage + +AC_CHECK_FUNCS([link sbrk]) AM_PATH_LISPDIR |