diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-03-10 21:01:48 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-03-10 21:01:48 +0000 |
commit | c0e6077fa2a9fe4f21dc80431c96c0e58240b1e5 (patch) | |
tree | 5056d99b635474d404b99999ba5f604a673b9122 /www/libwww/files/patch-configure | |
parent | Chase shared library version bump in textproc/uim. (diff) |
- Patch the braindead configure script and make the OpenSSL part really work
Fixes: ports/109728
Reported by: bf <bf2006a@yahoo.com>
Notes
Notes:
svn path=/head/; revision=187078
Diffstat (limited to 'www/libwww/files/patch-configure')
-rw-r--r-- | www/libwww/files/patch-configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/libwww/files/patch-configure b/www/libwww/files/patch-configure new file mode 100644 index 000000000000..5d2695f867b6 --- /dev/null +++ b/www/libwww/files/patch-configure @@ -0,0 +1,15 @@ +--- configure.orig Wed Jun 12 11:31:31 2002 ++++ configure Sat Mar 10 21:51:00 2007 +@@ -7612,8 +7612,11 @@ + if test "x$withval" = "xyes"; then + withval=$ssllib + SSLINC=$sslinc ++ LIBS="$LIBS $withval" ++ else ++ SSLINC="-I$withval/include/openssl" ++ LIBS="$LIBS -L$withval/lib -lssl -lcrypto" + fi +- LIBS="$LIBS $withval" + cat > conftest.$ac_ext <<EOF + #line 7619 "configure" + #include "confdefs.h" |