[pubcookie-dev] CVS update: fox;
webiso/pubcookie configure,1.72,1.73 configure.ac,1.68,1.69
fox at washington.edu
fox at washington.edu
Tue Sep 14 09:41:46 PDT 2004
Update of /usr/local/cvsroot/webiso/pubcookie
In directory webiso-cvs.cac.washington.edu:/var/tmp/cvs-serv30543/webiso/pubcookie
Modified Files:
configure configure.ac
Log Message:
configure: fix a misplaced restore of CFLAGS
keyclient/keyserver:
Fix some problems with keyserver's authentication of clients.
1) Allow a wildcard in the cert cn. We allow a single '*' at
the start of a cn.
2) Allow a host's DNS name to be in a cert's subject alt name
as well as in the cn field. No wildcards in the alt names.
3) Allow client certs that are signed by untrusted CAs to
cache their public keys on the keyserver site. This allows
them to get crypt keys using the otherwise untrusted certificate.
The keyclient parameter "-U cert_file" will upload a certificate
to the keyserver. This can only be done from a trusted client,
i.e. in the "keyserver_client_list" list.
Index: webiso/pubcookie/configure
diff -c webiso/pubcookie/configure:1.72 webiso/pubcookie/configure:1.73
*** webiso/pubcookie/configure:1.72 Thu Sep 2 16:23:09 2004
--- webiso/pubcookie/configure Tue Sep 14 09:41:44 2004
***************
*** 1,5 ****
#! /bin/sh
! # From configure.ac Revision: 1.67 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for Pubcookie 3.1.2 pre-beta1.
#
--- 1,5 ----
#! /bin/sh
! # From configure.ac Revision: 1.68 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for Pubcookie 3.1.2 pre-beta1.
#
***************
*** 3776,3785 ****
esac
fi
if test "x$APACHE_VERSION" = "x"; then
! OCFLAGS=$CFLAGS
! APXS_INC=`$APXS -q INCLUDEDIR`
! CFLAGS="$CFLAGS -I$APXS_INC"
! if test "$cross_compiling" = yes; then
{ { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
See \`config.log' for more details." >&5
echo "$as_me: error: cannot run test program while cross compiling
--- 3776,3785 ----
esac
fi
if test "x$APACHE_VERSION" = "x"; then
! OCFLAGS=$CFLAGS
! APXS_INC=`$APXS -q INCLUDEDIR`
! CFLAGS="$CFLAGS -I$APXS_INC"
! if test "$cross_compiling" = yes; then
{ { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
See \`config.log' for more details." >&5
echo "$as_me: error: cannot run test program while cross compiling
***************
*** 3794,3807 ****
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
! /* Look for 1.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( ( APACHE_RELEASE > 10300000 &&
APACHE_RELEASE < 10400000 ) != 1 );
! }
_ACEOF
rm -f conftest$ac_exeext
--- 3794,3807 ----
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
! /* Look for 1.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( ( APACHE_RELEASE > 10300000 &&
APACHE_RELEASE < 10400000 ) != 1 );
! }
_ACEOF
rm -f conftest$ac_exeext
***************
*** 3827,3834 ****
fi
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
! if test "x$APACHE_VERSION" = "x"; then
! if test "$cross_compiling" = yes; then
{ { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
See \`config.log' for more details." >&5
echo "$as_me: error: cannot run test program while cross compiling
--- 3827,3834 ----
fi
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
! if test "x$APACHE_VERSION" = "x"; then
! if test "$cross_compiling" = yes; then
{ { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
See \`config.log' for more details." >&5
echo "$as_me: error: cannot run test program while cross compiling
***************
*** 3843,3855 ****
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
! /* Look for 2.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( *AP_SERVER_MAJORVERSION!='2');
! }
_ACEOF
rm -f conftest$ac_exeext
--- 3843,3855 ----
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
! /* Look for 2.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( *AP_SERVER_MAJORVERSION!='2');
! }
_ACEOF
rm -f conftest$ac_exeext
***************
*** 3865,3871 ****
(exit $ac_status); }; }; then
APACHE_VERSION="2"
! { { echo "$as_me:$LINENO: error: Apache version 1.3.x or 2.x is required!" >&5
echo "$as_me: error: Apache version 1.3.x or 2.x is required!" >&2;}
{ (exit 1); exit 1; }; }
--- 3865,3871 ----
(exit $ac_status); }; }; then
APACHE_VERSION="2"
! { { echo "$as_me:$LINENO: error: Apache version 1.3.x or 2.x is required!" >&5
echo "$as_me: error: Apache version 1.3.x or 2.x is required!" >&2;}
{ (exit 1); exit 1; }; }
***************
*** 3878,3894 ****
fi
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
! fi
! fi
! echo "$as_me:$LINENO: result: $APACHE_VERSION" >&5
echo "${ECHO_T}$APACHE_VERSION" >&6
! APACHE_VERSION=$APACHE_VERSION
- CFLAGS=$OCFLAGS
! apache_target=module
! apache_src_ref=".."
fi # if apxs
--- 3878,3894 ----
fi
rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
! fi
! CFLAGS=$OCFLAGS
! fi
! echo "$as_me:$LINENO: result: $APACHE_VERSION" >&5
echo "${ECHO_T}$APACHE_VERSION" >&6
! APACHE_VERSION=$APACHE_VERSION
! apache_target=module
! apache_src_ref=".."
fi # if apxs
Index: webiso/pubcookie/configure.ac
diff -c webiso/pubcookie/configure.ac:1.68 webiso/pubcookie/configure.ac:1.69
*** webiso/pubcookie/configure.ac:1.68 Thu Sep 2 16:23:09 2004
--- webiso/pubcookie/configure.ac Tue Sep 14 09:41:44 2004
***************
*** 1,6 ****
# Process this file with autoconf to produce a configure script.
! AC_REVISION($Revision: 1.68 $)
AC_INIT(Pubcookie, [3.1.2 pre-beta1], 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.69 $)
AC_INIT(Pubcookie, [3.1.2 pre-beta1], pubcookie-dev at u.washington.edu)
AC_CONFIG_SRCDIR([src/libpubcookie.c])
AC_CONFIG_HEADER([src/config.h])
***************
*** 258,304 ****
esac
fi
if test "x$APACHE_VERSION" = "x"; then
! OCFLAGS=$CFLAGS
! APXS_INC=`$APXS -q INCLUDEDIR`
! CFLAGS="$CFLAGS -I$APXS_INC"
! AC_TRY_RUN( [
! /* Look for 1.x version */
! #include <stdlib.h>
! #include <httpd.h>
!
! int main() {
exit( ( APACHE_RELEASE > 10300000 &&
APACHE_RELEASE < 10400000 ) != 1 );
! }
! ],
! [APACHE_VERSION="1_3"]
! [
! ]
! )
! if test "x$APACHE_VERSION" = "x"; then
! AC_TRY_RUN( [
! /* Look for 2.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( *AP_SERVER_MAJORVERSION!='2');
! }
! ],
! [APACHE_VERSION="2"]
! [
! AC_MSG_ERROR([Apache version 1.3.x or 2.x is required!])
! ]
! )
! fi
! fi
! AC_MSG_RESULT([$APACHE_VERSION])
! AC_SUBST(APACHE_VERSION, $APACHE_VERSION)
- CFLAGS=$OCFLAGS
! apache_target=module
! apache_src_ref=".."
fi # if apxs
--- 258,304 ----
esac
fi
if test "x$APACHE_VERSION" = "x"; then
! OCFLAGS=$CFLAGS
! APXS_INC=`$APXS -q INCLUDEDIR`
! CFLAGS="$CFLAGS -I$APXS_INC"
! AC_TRY_RUN( [
! /* Look for 1.x version */
! #include <stdlib.h>
! #include <httpd.h>
!
! int main() {
exit( ( APACHE_RELEASE > 10300000 &&
APACHE_RELEASE < 10400000 ) != 1 );
! }
! ],
! [APACHE_VERSION="1_3"]
! [
! ]
! )
! if test "x$APACHE_VERSION" = "x"; then
! AC_TRY_RUN( [
! /* Look for 2.x version */
! #include <stdlib.h>
! #include <httpd.h>
! int main() {
exit( *AP_SERVER_MAJORVERSION!='2');
! }
! ],
! [APACHE_VERSION="2"]
! [
! AC_MSG_ERROR([Apache version 1.3.x or 2.x is required!])
! ]
! )
! fi
! CFLAGS=$OCFLAGS
! fi
! AC_MSG_RESULT([$APACHE_VERSION])
! AC_SUBST(APACHE_VERSION, $APACHE_VERSION)
! apache_target=module
! apache_src_ref=".."
fi # if apxs
end of message
More information about the pubcookie-dev
mailing list