summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorClaudio Fontana <sick_soul@users.sourceforge.net>2006-07-22 00:41:28 +0000
committerClaudio Fontana <sick_soul@users.sourceforge.net>2006-07-22 00:41:28 +0000
commitd2877acc14917f127c982a3c176dcd3eb3dabb4f (patch)
tree31efdd425a3e83dacb07bc74edb66de04d7713bd /configure.ac
parent4902bd18cc771b4b8674ac27bec3d473cdf84cf2 (diff)
downloadidutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.tar.gz
idutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.tar.bz2
idutils-d2877acc14917f127c982a3c176dcd3eb3dabb4f.zip
* fix sbrk portability issue
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
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