Mark the current code as rc3, and distribute mod-blacklist.c.
authorMichael Poole <mdpoole@troilus.org>
Tue, 11 Aug 2009 03:51:28 +0000 (23:51 -0400)
committerMichael Poole <mdpoole@troilus.org>
Tue, 11 Aug 2009 03:51:28 +0000 (23:51 -0400)
configure.in (AC_INIT): Bump release number to rc3.
  (HAVE_SOCKADDR_SA_LEN): Define to a non-empty value (specifically, 1).
  (HAVE_STRUCT_ADDRINFO): Likewise.
src/Makefile.am (EXTRA_srvx_SOURCES): Include mod-blacklist.c.

configure.in
src/Makefile.am

index b7b8b470838c7addae39e1e90d588b52c1dc7e15..7712b0cdfee16b9684c8fd1d4733d5c378de74ec 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to create a configure script.
 
 dnl General initialization.
 AC_PREREQ(2.59)
-AC_INIT([srvx],[1.4.0-rc2],[srvx-bugs@lists.sourceforge.net])
+AC_INIT([srvx],[1.4.0-rc3],[srvx-bugs@lists.sourceforge.net])
 CODENAME=surge
 AC_CONFIG_HEADERS(src/config.h)
 AC_CONFIG_SRCDIR(src/opserv.c)
@@ -73,11 +73,11 @@ AC_CHECK_HEADERS(fcntl.h malloc.h netdb.h arpa/inet.h netinet/in.h sys/resource.
 
 dnl portability stuff, hurray! -Jedi
 AC_CHECK_MEMBER([struct sockaddr.sa_len],
-                [AC_DEFINE([HAVE_SOCKADDR_SA_LEN],,[Define if struct sockaddr has sa_len field])],
+                [AC_DEFINE([HAVE_SOCKADDR_SA_LEN],[1],[Define if struct sockaddr has sa_len field])],
                 [],[#include <sys/types.h>
 #include <sys/socket.h>])
 AC_CHECK_MEMBER([struct addrinfo.ai_flags],
-                [AC_DEFINE([HAVE_STRUCT_ADDRINFO],,[Define if struct addrinfo declared])],
+                [AC_DEFINE([HAVE_STRUCT_ADDRINFO],[1],[Define if struct addrinfo declared])],
                 [],[#include <sys/types.h>
 #include <sys/socket.h>
 #include <netdb.h>])
index 1f788b692e04b96480c38ec9f16e782c254b4051..adcb5518c5d0c8dee722fd3e35d82183e19b6cb6 100644 (file)
@@ -51,6 +51,7 @@ EXTRA_srvx_SOURCES = \
        proto-bahamut.c \
        proto-common.c \
        proto-p10.c \
+       mod-blacklist.c \
        mod-helpserv.c \
        mod-memoserv.c \
        mod-qserver.c \