Committer : entrope
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2005-12-29 22:13:20 UTC
Modified files:
ircd/Makefile.am configure.ac ChangeLog
Added files:
ircd/test/Makefile.am
Log message:
Include ircd/test directory in automake system.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.760 ircu2.10/ChangeLog:1.761
--- ircu2.10/ChangeLog:1.760 Thu Dec 29 13:57:58 2005
+++ ircu2.10/ChangeLog Thu Dec 29 14:13:10 2005
@@ -1,5 +1,19 @@
2005-12-29 Michael Poole <[EMAIL PROTECTED]>
+ * configure.ac: ircd/test/Makefile is a new output file.
+
+ * configure: Regenerate.
+
+ * ircd/Makefile.am: Include "test" subdirectory in build.
+
+ * ircd/Makefile.in: Regenerate.
+
+ * ircd/test/Makefile.am: New automake Makefile.
+
+ * ircd/test/Makefile.in: Overwrite with generated version.
+
+2005-12-29 Michael Poole <[EMAIL PROTECTED]>
+
* include/ircd.h: Make maxclients and maxconnections variable.
* include/list.h (init_list): Add maximum connections argument.
Index: ircu2.10/configure.ac
diff -u ircu2.10/configure.ac:1.1 ircu2.10/configure.ac:1.2
--- ircu2.10/configure.ac:1.1 Thu Dec 22 12:06:21 2005
+++ ircu2.10/configure.ac Thu Dec 29 14:13:10 2005
@@ -14,7 +14,7 @@
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dnl
-dnl @(#)$Id: configure.ac,v 1.1 2005/12/22 20:06:21 klmitch Exp $
+dnl @(#)$Id: configure.ac,v 1.2 2005/12/29 22:13:10 entrope Exp $
AC_INIT([Undernet IRC Daemon], 10.13.alpha.0, [EMAIL PROTECTED], [ircu2])
AC_PREREQ(2.59)
@@ -34,7 +34,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA])
-AC_REVISION($Revision: 1.1 $)
+AC_REVISION($Revision: 1.2 $)
AC_CONFIG_SRCDIR([ircd/ircd.c])
AM_INIT_AUTOMAKE([foreign])
@@ -44,7 +44,7 @@
dnl Define configuration header file and other output files
AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile ircd/Makefile])
+AC_CONFIG_FILES([Makefile ircd/Makefile ircd/test/Makefile])
dnl What type of system is this?
AC_CANONICAL_HOST
Index: ircu2.10/ircd/Makefile.am
diff -u ircu2.10/ircd/Makefile.am:1.1 ircu2.10/ircd/Makefile.am:1.2
--- ircu2.10/ircd/Makefile.am:1.1 Thu Dec 22 12:06:22 2005
+++ ircu2.10/ircd/Makefile.am Thu Dec 29 14:13:10 2005
@@ -16,8 +16,9 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
-## @(#)$Id: Makefile.am,v 1.1 2005/12/22 20:06:22 klmitch Exp $
+## @(#)$Id: Makefile.am,v 1.2 2005/12/29 22:13:10 entrope Exp $
+SUBDIRS = test
noinst_PROGRAMS = table_gen
bin_PROGRAMS = convert-conf umkpasswd ircd
Index: ircu2.10/ircd/test/Makefile.am
diff -u /dev/null ircu2.10/ircd/test/Makefile.am:1.1
--- /dev/null Thu Dec 29 14:13:21 2005
+++ ircu2.10/ircd/test/Makefile.am Thu Dec 29 14:13:10 2005
@@ -0,0 +1,51 @@
+## AutoMake Makefile for the Undernet IRC Daemon sources
+##
+## Copyright (C) 2005 by Michael Poole <[EMAIL PROTECTED]>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##
+## @(#)$Id: Makefile.am,v 1.1 2005/12/29 22:13:10 entrope Exp $
+
+AM_CPPFLAGS = -I${top_srcdir}/include -I.. -I../..
+
+check_PROGRAMS = \
+ ircd_chattr_t \
+ ircd_in_addr_t \
+ ircd_match_t \
+ ircd_string_t
+
+ircd_chattr_t_SOURCES = \
+ ircd_chattr_t.c \
+ test_stub.c \
+ ../ircd_string.c
+
+ircd_in_addr_t_SOURCES = \
+ ircd_in_addr_t.c \
+ test_stub.c \
+ ../ircd_alloc.c \
+ ../ircd_string.c \
+ ../match.c \
+ ../numnicks.c
+
+ircd_match_t_SOURCES = \
+ ircd_match_t.c \
+ test_stub.c \
+ ../ircd_string.c \
+ ../match.c
+
+ircd_string_t_SOURCES = \
+ ircd_string_t.c \
+ test_stub.c \
+ ../ircd_string.c
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches