Thread: [srvx-commits] CVS: services configure.ac,1.8,1.9 autogen.sh,1.5,1.6 aclocal.m4,1.13,1.14 Makefile.a
Brought to you by:
entrope
From: Entrope <en...@us...> - 2001-09-27 21:58:25
|
Update of /cvsroot/srvx/services In directory usw-pr-cvs1:/tmp/cvs-serv11746 Modified Files: configure.ac autogen.sh aclocal.m4 Makefile.am Log Message: first step at modularizing services - the old four are gone, to be repartitioned and using a better common framework help files are moved from src/ to doc/ directory protocol backends are made dynamically loadable Index: configure.ac =================================================================== RCS file: /cvsroot/srvx/services/configure.ac,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** configure.ac 2001/09/26 02:34:25 1.8 --- configure.ac 2001/09/27 21:58:08 1.9 *************** *** 1,5 **** dnl Process this file with autoconf to create a configure script. dnl Then invoke that configure script using a command line like this: ! dnl ./configure --enable-maintainer-mode --enable-transition --enable-debug --enable-proto=ircu_p10 dnl General initialization. --- 1,5 ---- dnl Process this file with autoconf to create a configure script. dnl Then invoke that configure script using a command line like this: ! dnl ./configure --enable-maintainer-mode --enable-transition --enable-debug dnl General initialization. *************** *** 20,23 **** --- 20,24 ---- AC_TYPE_SIGNAL AC_C_CONST + AC_DISABLE_STATIC dnl Checks for programs. *************** *** 232,248 **** [ AC_MSG_RESULT(no)]) - AC_MSG_CHECKING(which protocol to build) - AC_ARG_ENABLE(proto, - [ --enable-proto=PROTO IRC dialect to support (one of: ircu_p10, bahamut); default: ircu_p10], - [PROTO="$enableval"], - [PROTO=ircu_p10]) - if test ! -f "${srcdir}/src/proto_${PROTO}.h" ; then - AC_MSG_ERROR([Missing file ${srcdir}/src/proto_${PROTO}.h; do we really support protocol ${PROTO}?]) - fi - AC_DEFINE_UNQUOTED(PROTO_INCLUDE, "proto_${PROTO}.h", [Header file for IRC dialect support]) - AC_MSG_RESULT($PROTO) - - MY_SUBDIRS="" - MY_SUBDIRS="$MY_SUBDIRS src" CFLAGS="$CFLAGS -W -Wall" if test "z$USE_MAINTAINER_MODE" = zyes ; then --- 233,236 ---- *************** *** 250,255 **** fi ! AC_SUBST(MY_SUBDIRS) ! AC_SUBST(PROTO) ! AC_CONFIG_FILES([Makefile src/Makefile po/Makefile.in po/Makefile intl/Makefile]) AC_OUTPUT --- 238,242 ---- fi ! AC_SUBST(export_dynamic_flag_spec) ! AC_CONFIG_FILES([po/Makefile.in po/Makefile intl/Makefile docs/Makefile src/Makefile Makefile]) AC_OUTPUT Index: autogen.sh =================================================================== RCS file: /cvsroot/srvx/services/autogen.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** autogen.sh 2001/09/26 02:34:25 1.5 --- autogen.sh 2001/09/27 21:58:08 1.6 *************** *** 3,6 **** aclocal autoheader -Wall ! automake -a --gnu Makefile src/Makefile autoconf -Wall --- 3,6 ---- aclocal autoheader -Wall ! automake -a --gnu Makefile src/Makefile docs/Makefile autoconf -Wall Index: aclocal.m4 =================================================================== RCS file: /cvsroot/srvx/services/aclocal.m4,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** aclocal.m4 2001/09/26 02:34:25 1.13 --- aclocal.m4 2001/09/27 21:58:08 1.14 *************** *** 159,3047 **** fi]) ! # Macro to add for using GNU gettext. ! # Ulrich Drepper <dr...@cy...>, 1995. ! # ! # This file can be copied and used freely without restrictions. It can ! # be used in projects which are not available under the GNU General Public ! # License or the GNU Library General Public License but which still want ! # to provide support for the GNU gettext functionality. ! # Please note that the actual code of the GNU gettext library is covered [...6260 lines suppressed...] ! # to provide support for the GNU gettext functionality. ! # Please note that the actual code of the GNU gettext library is covered ! # by the GNU Library General Public License, and the rest of the GNU ! # gettext package package is covered by the GNU General Public License. ! # They are *not* in the public domain. ! ! # serial 2 ! ! AC_DEFUN([AM_LC_MESSAGES], ! [if test $ac_cv_header_locale_h = yes; then ! AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, ! [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES], ! am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) ! if test $am_cv_val_LC_MESSAGES = yes; then ! AC_DEFINE(HAVE_LC_MESSAGES, 1, ! [Define if your <locale.h> file defines LC_MESSAGES.]) ! fi ! fi]) Index: Makefile.am =================================================================== RCS file: /cvsroot/srvx/services/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** Makefile.am 2001/09/26 02:34:25 1.13 --- Makefile.am 2001/09/27 21:58:08 1.14 *************** *** 1,2 **** EXTRA_DIST = srvx.conf.example sockcheck.db.example ! SUBDIRS = src po intl --- 1,2 ---- EXTRA_DIST = srvx.conf.example sockcheck.db.example ! SUBDIRS = po intl docs src |