diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-04-28 12:35:00 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-04-28 12:35:00 +0000 |
commit | 8bda86c0bfd3693420e334a10d19bed61b131bae (patch) | |
tree | 6cb319f2bc84d508eba661d40d49bbf66db1cd95 | |
parent | 531ab0917004cc1dbbdc4a2b6b8d41f354dd2da7 (diff) | |
download | samba-8bda86c0bfd3693420e334a10d19bed61b131bae.tar.gz samba-8bda86c0bfd3693420e334a10d19bed61b131bae.tar.xz samba-8bda86c0bfd3693420e334a10d19bed61b131bae.zip |
added asprintf test
-rwxr-xr-x | source/configure | 2 | ||||
-rw-r--r-- | source/configure.in | 2 | ||||
-rw-r--r-- | source/include/config.h.in | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/source/configure b/source/configure index 75736f4e3d4..cbdd7ee50e9 100755 --- a/source/configure +++ b/source/configure @@ -5235,7 +5235,7 @@ else fi done -for ac_func in memmove vsnprintf snprintf setsid glob strpbrk pipe crypt16 getauthuid +for ac_func in memmove vsnprintf snprintf asprintf setsid glob strpbrk pipe crypt16 getauthuid do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo "configure:5242: checking for $ac_func" >&5 diff --git a/source/configure.in b/source/configure.in index eca0e6acd44..c6f1b29e72f 100644 --- a/source/configure.in +++ b/source/configure.in @@ -490,7 +490,7 @@ fi AC_CHECK_FUNCS(waitpid getcwd strdup strtoul strerror chown fchown chmod fchmod chroot) AC_CHECK_FUNCS(fstat strchr utime utimes getrlimit fsync bzero memset) -AC_CHECK_FUNCS(memmove vsnprintf snprintf setsid glob strpbrk pipe crypt16 getauthuid) +AC_CHECK_FUNCS(memmove vsnprintf snprintf asprintf setsid glob strpbrk pipe crypt16 getauthuid) AC_CHECK_FUNCS(strftime sigprocmask sigblock sigaction innetgr setnetgrent getnetgrent endnetgrent) AC_CHECK_FUNCS(initgroups select poll rdchk getgrnam getgrent pathconf) AC_CHECK_FUNCS(setpriv setgidx setuidx setgroups sysconf mktime rename ftruncate stat64 fstat64) diff --git a/source/include/config.h.in b/source/include/config.h.in index 0e488f14f65..cf1db393c3f 100644 --- a/source/include/config.h.in +++ b/source/include/config.h.in @@ -432,6 +432,9 @@ /* Define if you have the _write function. */ #undef HAVE__WRITE +/* Define if you have the asprintf function. */ +#undef HAVE_ASPRINTF + /* Define if you have the atexit function. */ #undef HAVE_ATEXIT |