diff options
author | Greg McGary <greg@mcgary.org> | 1999-04-04 10:00:16 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 1999-04-04 10:00:16 +0000 |
commit | 5b14b89e85cbf4fe4fe92e283288f652b642c0f1 (patch) | |
tree | 2a3b00f473ee42a6720fcdfda36045e1a02e158f | |
parent | 9d749cb05b57d3203899a3292ffc90fdb1f7d074 (diff) | |
download | idutils-5b14b89e85cbf4fe4fe92e283288f652b642c0f1.tar.gz idutils-5b14b89e85cbf4fe4fe92e283288f652b642c0f1.tar.bz2 idutils-5b14b89e85cbf4fe4fe92e283288f652b642c0f1.zip |
* configure.in: Check for regcomp and compile lib/regex.c
if the system doesn't provide it.
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9d49fc9..6fb4330 100644 --- a/configure.in +++ b/configure.in @@ -102,6 +102,7 @@ AM_FUNC_OBSTACK AC_CHECK_FUNCS(getwd getcwd link strerror isascii bcopy bzero memcpy) AC_REPLACE_FUNCS(strdup strndup strspn strcspn strpbrk strstr strtok) AC_REPLACE_FUNCS(basename dirname fnmatch error memcpy memset) +AC_CHECK_FUNC(regcomp, , [LIBOBJS="$LIBOBJS regex.o"]) ############################################################################## ################ Internationalization ######################################## |