From: <fir...@us...> - 2004-02-08 03:14:26
|
Update of /cvsroot/mod-auth/mod_authn_dbi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7684 Modified Files: ChangeLog TODO autogen.sh configure.in Log Message: - Use APXS for the Install Target. - Moved Post Apache 2.1 Release items to their own TODO section. Index: ChangeLog =================================================================== RCS file: /cvsroot/mod-auth/mod_authn_dbi/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ChangeLog 8 Feb 2004 02:27:35 -0000 1.3 --- ChangeLog 8 Feb 2004 03:11:09 -0000 1.4 *************** *** 1,3 **** --- 1,9 ---- -------------------------------------------------------------------------------------------------------- + 07.02.2004 20:14 (MST), firechipmunk + - Use APXS for the Install Target. + - Moved Post Apache 2.1 Release items to their own TODO section. + + + -------------------------------------------------------------------------------------------------------- 07.02.2004 19:30 (MST), firechipmunk - Fixed .cvsignore so annoying files are not seen by 'cvs update' Index: TODO =================================================================== RCS file: /cvsroot/mod-auth/mod_authn_dbi/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TODO 31 Dec 2003 05:36:13 -0000 1.4 --- TODO 8 Feb 2004 03:11:09 -0000 1.5 *************** *** 5,8 **** --- 5,16 ---- ----- Upcoming Versions: + Post Apache 2.1 Release: + - Create Binary Releases (rpm and deb?) + - Get into Package Systems: (post 1.0?) + - Debian + - FreeBSD + - Gentoo + - Lunar + 1.0.0 - Testimonials / Who is using it - put it on the website? *************** *** 13,19 **** - with mod_authn_cache? - Classic MySQL, PgSQL, SQLite.. etc? - - Create Patches to use 2.1 Authentication on 2.0.XX Releases? - Update Documentation (README Specificly needs to be reworked) - Test on all supported libdbi databases. - Test on 32bit, 64bit, little/big endian machines (might be a little exterme) - Linux x86 --- 21,30 ---- - with mod_authn_cache? - Classic MySQL, PgSQL, SQLite.. etc? - Update Documentation (README Specificly needs to be reworked) - Test on all supported libdbi databases. + + MySQL + + PostgreSQL + - SQLite + - mSQL - Test on 32bit, 64bit, little/big endian machines (might be a little exterme) - Linux x86 *************** *** 23,48 **** - Linux MIPS [chip] - PPC? - - Create Binary Releases (rpm and deb?) - * For now perhaps just create /debian/ and RPM .specs files, - pending a 2.1/2.2 -release of Apache? - - Get into Package Systems: (post 1.0?) - * requires httpd 2.1 or 2.2 -release? - - Debian - - FreeBSD - - Gentoo - - Lunar 0.9.0 - Include HTML/XML Documentation in Releases? ! - Bigger Files... ! - Use APXS for Makefiles [chip] ! - Remove extra files from CVS (autoconf/make stuff we don't need) [chip] ! - Have external people look for security issues (Prep for 1.0) - Create "security-issues" contact address (for whole auth project?) - Mangle usernames [axel] - More SQL Variables [axel] - Support mod_dbi_pool [chip?] - - Merge In Cyan changes to Mainline? [chip] - * These Officaly Might break how the Digest RFC Works... - Send Announcements: - SourceForge --- 34,48 ---- - Linux MIPS [chip] - PPC? 0.9.0 - Include HTML/XML Documentation in Releases? ! - Create Plain Text XSL Stuff ! + Use APXS for Makefiles [chip] ! + Remove extra files from CVS (autoconf/make stuff we don't need) [chip] ! ? Have external people look for security issues (Prep for 1.0) - Create "security-issues" contact address (for whole auth project?) - Mangle usernames [axel] - More SQL Variables [axel] - Support mod_dbi_pool [chip?] - Send Announcements: - SourceForge Index: autogen.sh =================================================================== RCS file: /cvsroot/mod-auth/mod_authn_dbi/autogen.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** autogen.sh 8 Feb 2004 02:23:53 -0000 1.5 --- autogen.sh 8 Feb 2004 03:11:09 -0000 1.6 *************** *** 6,14 **** aclocal autoheader automake --add-missing --copy ! ! echo ! echo "Using `autoconf --version`, if you have problems" ! echo "while building then edit autogen.sh and rerun it..." ! echo autoconf --- 6,13 ---- aclocal autoheader + touch NEWS automake --add-missing --copy ! rm NEWS autoconf + rm -rf autom4te.cache + Index: configure.in =================================================================== RCS file: /cvsroot/mod-auth/mod_authn_dbi/configure.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure.in 3 Nov 2003 16:03:22 -0000 1.3 --- configure.in 8 Feb 2004 03:11:09 -0000 1.4 *************** *** 2,6 **** AC_INIT(src/mod_authn_dbi.c) AM_MAINTAINER_MODE ! AM_INIT_AUTOMAKE(mod_authn_dbi, 0.0.7) AM_CONFIG_HEADER(include/mod_authn_dbi_config.h:config.in) --- 2,6 ---- AC_INIT(src/mod_authn_dbi.c) AM_MAINTAINER_MODE ! AM_INIT_AUTOMAKE(mod_authn_dbi, 0.9.0) AM_CONFIG_HEADER(include/mod_authn_dbi_config.h:config.in) *************** *** 177,180 **** --- 177,181 ---- AC_SUBST(DBI_LIB) AC_SUBST(CFLAGS) + AC_SUBST(APXS) AC_OUTPUT(Makefile src/Makefile) |