Update of /cvsroot/mod-auth/mod_authn_dbi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32512
Modified Files:
ChangeLog TODO configure.in
Log Message:
removed DBI_NOT_THREAD_SAFE.
fixed sha1 support.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/mod-auth/mod_authn_dbi/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ChangeLog 8 Feb 2004 21:47:23 -0000 1.8
+++ ChangeLog 8 Feb 2004 22:41:12 -0000 1.9
@@ -1,4 +1,10 @@
--------------------------------------------------------------------------------------------------------
+08.02.2004 15:44 (MST), firechipmunk
+ - Removed DBI_NOT_THREAD_SAFE
+ - Fixed SHA1 Support
+
+
+--------------------------------------------------------------------------------------------------------
08.02.2004 14:50 (MST), firechipmunk
- Removed 'native' SHA1 Support. This is now included in apr-util.
Index: TODO
===================================================================
RCS file: /cvsroot/mod-auth/mod_authn_dbi/TODO,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- TODO 8 Feb 2004 03:11:09 -0000 1.5
+++ TODO 8 Feb 2004 22:41:12 -0000 1.6
@@ -33,6 +33,7 @@
- AMD64?
- Linux MIPS [chip]
- PPC?
+ - Support mod_dbi_pool [chip?]
0.9.0
- Include HTML/XML Documentation in Releases?
@@ -43,7 +44,6 @@
- Create "security-issues" contact address (for whole auth project?)
- Mangle usernames [axel]
- More SQL Variables [axel]
- - Support mod_dbi_pool [chip?]
- Send Announcements:
- SourceForge
- FreshMeat [chip]
Index: configure.in
===================================================================
RCS file: /cvsroot/mod-auth/mod_authn_dbi/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- configure.in 8 Feb 2004 04:02:03 -0000 1.5
+++ configure.in 8 Feb 2004 22:41:12 -0000 1.6
@@ -10,9 +10,6 @@
AC_PROG_INSTALL
AM_PROG_LIBTOOL
-# XXXX: Write an option for this.
-DBI_NOT_THREAD_SAFE=1
-
AC_MSG_CHECKING(for --with-dbi)
AC_ARG_WITH(dbi, [ --with-dbi=PATH Path to dbi],
[
@@ -165,7 +162,7 @@
AC_MSG_CHECKING([for Apache include directory])
AP_INCLUDES="-I`${APXS} -q INCLUDEDIR`"
AC_MSG_RESULT($AP_INCLUDES)
-CFLAGS="${CFLAGS} $AP_INCLUDES -DDBI_NOT_THREAD_SAFE=${DBI_NOT_THREAD_SAFE}"
+CFLAGS="${CFLAGS} $AP_INCLUDES"
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
|