diff options
author | Jim Meyering <jim@meyering.net> | 2000-06-06 16:43:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-06-06 16:43:58 +0000 |
commit | 2b074f3e1ef94efa960ec9abe991e0bcff1817b5 (patch) | |
tree | 67d5fa6b6f3901345dec1a88a65c76af8374bd88 | |
parent | 949d0ef45928323ed3e752f782b56de150f400e4 (diff) | |
download | idutils-2b074f3e1ef94efa960ec9abe991e0bcff1817b5.tar.gz idutils-2b074f3e1ef94efa960ec9abe991e0bcff1817b5.tar.bz2 idutils-2b074f3e1ef94efa960ec9abe991e0bcff1817b5.zip |
Require 2.14a.
Check for declaration of strsep.
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8be4710..a276ab1 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ dnl they are there to delimit sections in the output configure script. AC_INIT(src/mkid.c) AM_CONFIG_HEADER(config.h) -AC_PREREQ(2.13) +AC_PREREQ(2.14a) AM_INIT_AUTOMAKE([id-utils], [3.2e]) GNU_PACKAGE="GNU $PACKAGE" @@ -83,6 +83,8 @@ AC_TYPE_OFF_T AC_TYPE_SIZE_T AM_TYPE_PTRDIFF_T +AC_CHECK_DECLS([strsep]) + ############################################################################## ################ Set default compilation flags ############################### ############################################################################## |