diff options
author | jdolecek <jdolecek> | 2004-01-13 19:44:59 +0000 |
---|---|---|
committer | jdolecek <jdolecek> | 2004-01-13 19:44:59 +0000 |
commit | 23a33263e639d5428069ff5d12cd928be0fc3525 (patch) | |
tree | f3cb9129fe32207a4e48e11f2ccb861b8fb47892 | |
parent | a6d91655b274e1ab06053414604bc08096961417 (diff) | |
download | pkgsrc-23a33263e639d5428069ff5d12cd928be0fc3525.tar.gz |
Add SSL support to net/php4-ftp package (ftp_ssl_connect() function et.al.).
Bump package revision.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | net/php4-ftp/Makefile | 9 |
2 files changed, 9 insertions, 3 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 4dc6d01877f..98082926a79 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.4449 2004/01/13 13:06:52 adam Exp $ +$NetBSD: CHANGES,v 1.4450 2004/01/13 19:44:59 jdolecek Exp $ Changes to the packages collection and infrastructure in 2004: @@ -205,3 +205,4 @@ Changes to the packages collection and infrastructure in 2004: Updated cyrus-saslauthd to 2.1.17nb1 [jlam 2004-01-13] Added xawtv-3.90 [jmmv 2004-01-13] Updated sylpheed-claws to 0.9.8 [adam 2004-01-13] + Updated php4-ftp to 4.3.4nb2 [jdolecek 2004-01-13] diff --git a/net/php4-ftp/Makefile b/net/php4-ftp/Makefile index 330c32235cf..7428d7acef6 100644 --- a/net/php4-ftp/Makefile +++ b/net/php4-ftp/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2004/01/13 18:59:35 jdolecek Exp $ +# $NetBSD: Makefile,v 1.6 2004/01/13 19:44:59 jdolecek Exp $ MODNAME= ftp CATEGORIES+= net -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= PHP4 extension for FTP access USE_BUILDLINK2= YES @@ -12,4 +12,9 @@ DISTINFO_FILE= ${.CURDIR}/distinfo CONFIGURE_ARGS+= --enable-${MODNAME} +# adjust so that the pkg gets built with SSL support +LIBS+= -lssl -lcrypto +CFLAGS+= -DHAVE_OPENSSL_EXT + +.include "../../security/openssl/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |