From: Matej U. <mat...@us...> - 2006-09-12 22:16:35
|
Update of /cvsroot/mod-c/mod_c In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv30293 Modified Files: .cvsignore ChangeLog Makefile.in aclocal.m4 configure Log Message: Told apxs not to link against libehtml - it would complain about ehtml not being portable (and exit with error). Index: aclocal.m4 =================================================================== RCS file: /cvsroot/mod-c/mod_c/aclocal.m4,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** aclocal.m4 8 Sep 2006 15:00:32 -0000 1.3 --- aclocal.m4 12 Sep 2006 22:16:30 -0000 1.4 *************** *** 1,3 **** ! # generated automatically by aclocal 1.9.5 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, --- 1,3 ---- ! # generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, *************** *** 14,19 **** # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- [...3994 lines suppressed...] --- 6401,6406 ---- done done ]) + SED=$lt_cv_path_SED AC_MSG_RESULT([$SED]) ]) *************** *** 5945,5949 **** # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.9.5])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- --- 6423,6427 ---- # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.9.6])]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- Index: Makefile.in =================================================================== RCS file: /cvsroot/mod-c/mod_c/Makefile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.in 22 Aug 2006 20:24:04 -0000 1.4 --- Makefile.in 12 Sep 2006 22:16:30 -0000 1.5 *************** *** 99,102 **** --- 99,104 ---- DEFS = @DEFS@ DEPDIR = @DEPDIR@ + DOXYGEN = @DOXYGEN@ + DOXYGEN_SUBDIR = @DOXYGEN_SUBDIR@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ *************** *** 176,180 **** sysconfdir = @sysconfdir@ target_alias = @target_alias@ ! SUBDIRS = src include all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive --- 178,182 ---- sysconfdir = @sysconfdir@ target_alias = @target_alias@ ! SUBDIRS = src include $(DOXYGEN_SUBDIR) all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive Index: .cvsignore =================================================================== RCS file: /cvsroot/mod-c/mod_c/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 23 Aug 2006 14:45:38 -0000 1.1 --- .cvsignore 12 Sep 2006 22:16:30 -0000 1.2 *************** *** 4,5 **** --- 4,6 ---- config.* autom4te* + *.m4 Index: configure =================================================================== RCS file: /cvsroot/mod-c/mod_c/configure,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure 8 Sep 2006 15:00:32 -0000 1.6 --- configure 12 Sep 2006 22:16:30 -0000 1.7 *************** *** 281,285 **** # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. ! if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi if test -z "$ECHO"; then --- 281,285 ---- # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. ! (unset CDPATH) >/dev/null 2>&1 && unset CDPATH [...9921 lines suppressed...] + if test x"$ac_file" != x-; then + { echo "$as_me:$LINENO: creating $ac_file" >&5 + echo "$as_me: creating $ac_file" >&6;} + rm -f "$ac_file" + fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: *************** *** 21016,21025 **** esac done` || { (exit 1); exit 1; } - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 - echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF --- 20492,20495 ---- Index: ChangeLog =================================================================== RCS file: /cvsroot/mod-c/mod_c/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 1 Feb 2006 12:13:09 -0000 1.4 --- ChangeLog 12 Sep 2006 22:16:30 -0000 1.5 *************** *** 1,2 **** --- 1,6 ---- + 2006-09-13 Matej Urbas <mat...@gm...> + + * .cvsignore: Added another ignore rule. + 2006-02-01: - The default session server has been rewritten to use sockets. It still |