diff options
author | beech <beech@FreeBSD.org> | 2008-01-08 04:55:35 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-01-08 04:55:35 +0800 |
commit | bda85f954c6bb429870602007e4a5b3bf4917f6c (patch) | |
tree | d0f9c148e6ae6685f262148d07c246f195aa0d25 /ftp/proftpd-devel | |
parent | b460ed3d836ec162b5fa9d8b61a8ea652c1f1a8e (diff) | |
download | freebsd-ports-gnome-bda85f954c6bb429870602007e4a5b3bf4917f6c.tar.gz freebsd-ports-gnome-bda85f954c6bb429870602007e4a5b3bf4917f6c.tar.zst freebsd-ports-gnome-bda85f954c6bb429870602007e4a5b3bf4917f6c.zip |
- Fix issue, if compiled with both base and port versions of openssl
installed, mod_tls will fail to load.
- Bump portrevision
PR: ports/119243
Submitted by: Joe Horn <joehorn@gmail.com>
Approved by: linimon (mentor)
Diffstat (limited to 'ftp/proftpd-devel')
-rw-r--r-- | ftp/proftpd-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile index 6828f7f79cfb..819a5754ab62 100644 --- a/ftp/proftpd-devel/Makefile +++ b/ftp/proftpd-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= proftpd DISTVERSION= 1.3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= ftp MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \ ftp://ftp.fastorama.com/mirrors/ftp.proftpd.org/distrib/source/ \ @@ -187,9 +187,9 @@ PLIST_FILES+= include/proftpd/mod_sql.h .endif .if defined(WITH_OPENSSL) -CFLAGS+= -DHAVE_OPENSSL .include <${PORTSDIR}/Mk/bsd.openssl.mk> -PROFTPD_LIBS+= -lssl -lcrypto -L${LOCALBASE}/lib +CFLAGS+= -DHAVE_OPENSSL -I${OPENSSLINC} +PROFTPD_LIBS+= -lssl -lcrypto -L${OPENSSLLIB} MODULES:=${MODULES}:mod_tls .endif |