diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 6 insertions, 3 deletions
@@ -3,6 +3,8 @@ - Less chatty when setting timeouts fail - Drop privileges after binding to port. Allows listening on ports < 1024 - Ported to Solaris + - Fix problem with binding to certain 'long' addresses + - Support embedded NULLs in email data. 1.2.1 [2005-04-15] - Fixed bug (introduced in 1.2) when 'Header' option is not present. diff --git a/configure.in b/configure.in index 5b6fe63..5dc2d93 100644 --- a/configure.in +++ b/configure.in @@ -36,8 +36,8 @@ dnl Nate Nielsen <nielsen@memberwebs.com> dnl dnl Process this file with autoconf to produce a configure script. -AC_INIT(proxsmtp, 1.2.1.93, nielsen@memberwebs.com) -AM_INIT_AUTOMAKE(proxsmtp, 1.2.1.93) +AC_INIT(proxsmtp, 1.2.1.94, nielsen@memberwebs.com) +AM_INIT_AUTOMAKE(proxsmtp, 1.2.1.94) LDFLAGS="$LDFLAGS -L/usr/local/lib" CFLAGS="$CFLAGS -I/usr/local/include" @@ -102,7 +102,8 @@ AC_CHECK_GLOBAL(__argv) # Required Functions AC_CHECK_FUNCS([memset strerror malloc realloc getopt strchr tolower getaddrinfo usleep], , [echo "ERROR: Required function missing"; exit 1]) -AC_CHECK_FUNCS([strlwr strlcat strlcpy strncat strncpy]) +AC_CHECK_FUNCS([strlwr strlcat strlcpy strncat strncpy setenv daemon]) +AC_CHECK_FUNCS([getline getdelim]) # Have to resolve this for the path below if test "${prefix}" = "NONE"; then |