diff options
author | bad <bad> | 1999-12-01 01:00:17 +0000 |
---|---|---|
committer | bad <bad> | 1999-12-01 01:00:17 +0000 |
commit | edd0d53334cd6be6b353822ee5f4d0e768a1c48e (patch) | |
tree | fae50a015581d5e420d550c9d4c59a105d73841a /www/ap-ssl/patches | |
parent | 659df12fe1c4f40da91e985d1b0a676c03a04b2b (diff) | |
download | pkgsrc-edd0d53334cd6be6b353822ee5f4d0e768a1c48e.tar.gz |
Update to mod_ssl-2.3.8-1.3.9 so that this works again with the updated
Apache server and OpenSSl-0.9.4.
Makefile: Take advantage of the working configure script.
patches/patch-aa: replace this with a gross hack that finds the libssl
shared library with our current version of the OpenSSL pkg.
Diffstat (limited to 'www/ap-ssl/patches')
-rw-r--r-- | www/ap-ssl/patches/patch-aa | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/www/ap-ssl/patches/patch-aa b/www/ap-ssl/patches/patch-aa index 4e4baf2a190..0dc625b1b67 100644 --- a/www/ap-ssl/patches/patch-aa +++ b/www/ap-ssl/patches/patch-aa @@ -1,12 +1,14 @@ -$NetBSD: patch-aa,v 1.1.1.1 1998/12/03 17:22:02 tv Exp $ +$NetBSD: patch-aa,v 1.2 1999/12/01 01:00:18 bad Exp $ ---- pkg.sslsup/ca-fix.c.orig Thu Dec 3 11:40:55 1998 -+++ pkg.sslsup/ca-fix.c Thu Dec 3 11:41:27 1998 -@@ -20,6 +20,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <ctype.h> - #include <bio.h> - #include <objects.h> +# make sure configure finds the ssl library. +--- pkg.sslmod/libssl.module.orig Thu Sep 30 14:24:27 1999 ++++ pkg.sslmod/libssl.module Tue Nov 30 19:35:43 1999 +@@ -382,7 +382,7 @@ + if [ -f "$SSL_BASE/libssl.a" ]; then + SSL_LIBDIR='$(SSL_BASE)' + my_real_ssl_libdir="$SSL_BASE" +- elif [ -f "$SSL_BASE/lib/libssl.a" ]; then ++ elif [ -f "$SSL_BASE/lib/libssl.so.1.0" ]; then + SSL_LIBDIR='$(SSL_BASE)/lib' + my_real_ssl_libdir="$SSL_BASE/lib" + else |