diff options
| author | Florian Westphal <fw@strlen.de> | 2005-04-16 07:26:44 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2005-04-16 07:26:44 +0000 |
| commit | 873edc6311b4b2501e2f9a5103a0118ff5c6d8cc (patch) | |
| tree | 58930fa40c3f3acc926cfc475e24aaf6b8b12d6e /configure.in | |
| parent | 6ed37415fc571afdea6712b2907aace3092fe50e (diff) | |
| download | ngircd-873edc6311b4b2501e2f9a5103a0118ff5c6d8cc.tar.gz ngircd-873edc6311b4b2501e2f9a5103a0118ff5c6d8cc.zip | |
check for strdup()
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index eefefd7c..f6cf350d 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.108 2005/03/21 22:15:15 alex Exp $ +# $Id: configure.in,v 1.109 2005/04/16 07:26:44 fw Exp $ # # -- Initialisation -- @@ -121,7 +121,7 @@ AC_CHECK_FUNCS([ \ memset realloc setsid setsockopt socket strcasecmp strchr strerror \ strstr waitpid],,AC_MSG_ERROR([required function missing!])) -AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strlcpy strlcat) +AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strdup strlcpy strlcat) AC_CHECK_FUNCS(select,[AC_CHECK_HEADERS(sys/select.h)], AC_MSG_ERROR([required function select() is missing!]) |