[Mod-auth-commit] mod_authn_dbi configure.in,1.4,1.5
Brought to you by:
firechipmunk,
honx
From: <fir...@us...> - 2004-02-08 04:05:02
|
Update of /cvsroot/mod-auth/mod_authn_dbi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14930 Modified Files: configure.in Log Message: fixed up thread safety options. Index: configure.in =================================================================== RCS file: /cvsroot/mod-auth/mod_authn_dbi/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** configure.in 8 Feb 2004 03:11:09 -0000 1.4 --- configure.in 8 Feb 2004 04:02:03 -0000 1.5 *************** *** 11,14 **** --- 11,17 ---- 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], *************** *** 163,167 **** AP_INCLUDES="-I`${APXS} -q INCLUDEDIR`" AC_MSG_RESULT($AP_INCLUDES) ! CFLAGS="$CFLAGS $AP_INCLUDES" AC_PATH_PROG(PKG_CONFIG, pkg-config, no) --- 166,170 ---- AP_INCLUDES="-I`${APXS} -q INCLUDEDIR`" AC_MSG_RESULT($AP_INCLUDES) ! CFLAGS="${CFLAGS} $AP_INCLUDES -DDBI_NOT_THREAD_SAFE=${DBI_NOT_THREAD_SAFE}" AC_PATH_PROG(PKG_CONFIG, pkg-config, no) |