diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-04-16 12:24:42 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-04-16 12:24:42 +0000 |
commit | bb8dbb773216e0b593530741499c5c77c12de69d (patch) | |
tree | cfa685a07117980e7ba90faf305b49563efa4389 | |
parent | b66932e1a5dc3a368474e6e110c5a88a251465f5 (diff) | |
download | samba-bb8dbb773216e0b593530741499c5c77c12de69d.tar.gz samba-bb8dbb773216e0b593530741499c5c77c12de69d.tar.bz2 samba-bb8dbb773216e0b593530741499c5c77c12de69d.zip |
reran configure after adding a test for strnlen()
(This used to be commit 78ead781261d397ace22640e3820d0f4fe17722c)
-rwxr-xr-x | source3/configure | 2 | ||||
-rw-r--r-- | source3/include/config.h.in | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/source3/configure b/source3/configure index 5e2416abe7..3e13dc1b22 100755 --- a/source3/configure +++ b/source3/configure @@ -5257,7 +5257,7 @@ else RUNPROG="" fi -for ac_func in dlopen dlclose dlsym dlerror waitpid getcwd strdup strndup strtoul strerror chown fchown chmod fchmod chroot link mknod mknod64 +for ac_func in dlopen dlclose dlsym dlerror waitpid getcwd strdup strndup strnlen strtoul strerror chown fchown chmod fchmod chroot link mknod mknod64 do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo "configure:5264: checking for $ac_func" >&5 diff --git a/source3/include/config.h.in b/source3/include/config.h.in index 7328d022c1..afe49d419c 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -809,6 +809,9 @@ /* Define if you have the strndup function. */ #undef HAVE_STRNDUP +/* Define if you have the strnlen function. */ +#undef HAVE_STRNLEN + /* Define if you have the strpbrk function. */ #undef HAVE_STRPBRK |