[pubcookie-dev]
WEBISO CVS update: jjminer; webiso/pubcookie configure.ac,1.37,1.38
miner at doit.wisc.edu
miner at doit.wisc.edu
Fri May 30 12:01:13 PDT 2003
Update of /usr/local/cvsroot/webiso/pubcookie
In directory webiso-cvs.cac.washington.edu:/var/tmp/cvs-serv21009/pubcookie
Modified Files:
configure.ac
Log Message:
Adding a check to make sure that Apache has been compiled with DSO support.
Index: webiso/pubcookie/configure.ac
diff -c webiso/pubcookie/configure.ac:1.37 webiso/pubcookie/configure.ac:1.38
*** webiso/pubcookie/configure.ac:1.37 Thu May 29 14:40:30 2003
--- webiso/pubcookie/configure.ac Fri May 30 12:01:11 2003
***************
*** 1,6 ****
# Process this file with autoconf to produce a configure script.
! AC_REVISION($Revision: 1.37 $)
AC_INIT(Pubcookie, [3.0.0 pre-rc2], pubcookie-dev at u.washington.edu)
AC_CONFIG_SRCDIR([src/libpubcookie.c])
AC_CONFIG_HEADER([src/config.h])
--- 1,6 ----
# Process this file with autoconf to produce a configure script.
! AC_REVISION($Revision: 1.38 $)
AC_INIT(Pubcookie, [3.0.0 pre-rc2], pubcookie-dev at u.washington.edu)
AC_CONFIG_SRCDIR([src/libpubcookie.c])
AC_CONFIG_HEADER([src/config.h])
***************
*** 16,22 ****
# Before any tests, check to see if we are doing anything..
! AC_MSG_CHECKING([If I should build the apache module..])
AC_ARG_ENABLE(apache,
AC_HELP_STRING([--enable-apache],
[Enable building the apache module (default: on)]),
--- 16,22 ----
# Before any tests, check to see if we are doing anything..
! AC_MSG_CHECKING([if I should build the apache module])
AC_ARG_ENABLE(apache,
AC_HELP_STRING([--enable-apache],
[Enable building the apache module (default: on)]),
***************
*** 37,43 ****
enable_login=no
fi
! AC_MSG_CHECKING([If I should build the login cgi..])
AC_ARG_ENABLE(login,
AC_HELP_STRING([--enable-login],
[Enable building the login cgi (default: off)]),
--- 37,43 ----
enable_login=no
fi
! AC_MSG_CHECKING([if I should build the login cgi])
AC_ARG_ENABLE(login,
AC_HELP_STRING([--enable-login],
[Enable building the login cgi (default: off)]),
***************
*** 182,187 ****
--- 182,198 ----
if test "x$APXS" = "x"; then
AC_MSG_ERROR( "apxs is required for building mod_pubcookie!" )
+ else
+ AC_MSG_CHECKING( [if $APXS works] )
+ $APXS -q CFLAGS >/dev/null 2>&1
+ if test "$?" != "0"; then
+ AC_MSG_RESULT([no])
+ AC_MSG_RESULT([Here is the output from $APXS:])
+ $APXS -q CFLAGS
+ AC_MSG_ERROR([Please correct this error and try again.])
+ else
+ AC_MSG_RESULT([yes])
+ fi
fi
fi # If they disabled apache, don't look for apxs.
end of message
More information about the pubcookie-dev
mailing list