diff options
author | marino <marino@FreeBSD.org> | 2016-09-13 12:50:04 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-09-13 12:50:04 +0800 |
commit | aaeea5bb53b813c50c6140ae3137639b772851ce (patch) | |
tree | 3ff3090f4eb7f8061abc133358d00a3997ccff69 | |
parent | df8fa9ad9ff9d1b784d92a49c69f9ac6ba1bf1b6 (diff) | |
download | freebsd-ports-gnome-aaeea5bb53b813c50c6140ae3137639b772851ce.tar.gz freebsd-ports-gnome-aaeea5bb53b813c50c6140ae3137639b772851ce.tar.zst freebsd-ports-gnome-aaeea5bb53b813c50c6140ae3137639b772851ce.zip |
net/xisp: Document SSL requirement and configure it properly
Approved by: SSL blanket
-rw-r--r-- | net/xisp/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/xisp/Makefile b/net/xisp/Makefile index 3740edb43813..3992589987ba 100644 --- a/net/xisp/Makefile +++ b/net/xisp/Makefile @@ -14,12 +14,14 @@ COMMENT= User-friendly X interface to pppd/chat LIB_DEPENDS= libforms.so:x11-toolkits/xforms +USES= alias ssl USE_XORG= xpm +CFLAGS+= -DUSE_OPENSSL -I${OPENSSLINC} MAKE_ENV+= CCFLAGS="${CFLAGS}" post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/Makefile + -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" ${WRKSRC}/Makefile .include <bsd.port.mk> |