summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--bsd-inet_aton.h2
-rw-r--r--configure.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 99f47dece..a06f8d9ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,7 +8,7 @@
8 from Jim Watt <jimw@peisj.pebio.com> 8 from Jim Watt <jimw@peisj.pebio.com>
9 - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known 9 - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
10 to compile on more platforms (incl NeXT). 10 to compile on more platforms (incl NeXT).
11 - (djm) Added bsd-inet_aton for NeXT 11 - (djm) Added bsd-inet_aton and configure support for NeXT
12 12
1320000709 1320000709
14 - (djm) Only enable PAM_TTY kludge for Linux. Problem report from 14 - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
diff --git a/bsd-inet_aton.h b/bsd-inet_aton.h
index b8e9674ba..ec3c225c9 100644
--- a/bsd-inet_aton.h
+++ b/bsd-inet_aton.h
@@ -4,7 +4,7 @@
4#include "config.h" 4#include "config.h"
5 5
6#ifndef HAVE_INET_ATON 6#ifndef HAVE_INET_ATON
7int inet_aton(const char *cp, struct in_addr *addr) 7int inet_aton(const char *cp, struct in_addr *addr);
8#endif /* HAVE_INET_ATON */ 8#endif /* HAVE_INET_ATON */
9 9
10#endif /* _BSD_INET_ATON_H */ 10#endif /* _BSD_INET_ATON_H */
diff --git a/configure.in b/configure.in
index 52184db52..2e2422597 100644
--- a/configure.in
+++ b/configure.in
@@ -219,7 +219,7 @@ fi
219AC_CHECK_HEADERS(bstring.h endian.h lastlog.h limits.h login.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h stddef.h time.h usersec.h util.h utmp.h utmpx.h) 219AC_CHECK_HEADERS(bstring.h endian.h lastlog.h limits.h login.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h stddef.h time.h usersec.h util.h utmp.h utmpx.h)
220 220
221# Checks for library functions. 221# Checks for library functions.
222AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_af clock freeaddrinfo gai_strerror getaddrinfo getnameinfo getrusage innetgr md5_crypt memmove mkdtemp on_exit openpty rresvport_af setenv seteuid setlogin setproctitle setreuid sigaction sigvec snprintf strlcat strlcpy vsnprintf vhangup _getpty __b64_ntop) 222AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_af clock freeaddrinfo gai_strerror getaddrinfo getnameinfo getrusage inet_aton innetgr md5_crypt memmove mkdtemp on_exit openpty rresvport_af setenv seteuid setlogin setproctitle setreuid sigaction sigvec snprintf strlcat strlcpy vsnprintf vhangup _getpty __b64_ntop)
223dnl checks for time functions 223dnl checks for time functions
224AC_CHECK_FUNCS(gettimeofday time) 224AC_CHECK_FUNCS(gettimeofday time)
225dnl checks for libutil functions 225dnl checks for libutil functions