diff options
author | Olivier Cochard <olivier@FreeBSD.org> | 2019-03-21 15:05:14 +0000 |
---|---|---|
committer | Olivier Cochard <olivier@FreeBSD.org> | 2019-03-21 15:05:14 +0000 |
commit | 169ef8fcfa4dba8b76752599db37ed11670f8e97 (patch) | |
tree | 9d0d7cbf4a12cfe118d52cdf27fc3230716628a2 | |
parent | databases/mongodb40: fix aarch64 compilation (diff) |
Fix: build against SSL from ports and connection problem with TLS 1.3
PR: 236697
Submitted by: gahr
Notes
Notes:
svn path=/head/; revision=496469
-rw-r--r-- | www/shellinabox/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/www/shellinabox/Makefile b/www/shellinabox/Makefile index 559e12e98d7e..49bd11f7d1ac 100644 --- a/www/shellinabox/Makefile +++ b/www/shellinabox/Makefile @@ -4,7 +4,7 @@ PORTNAME= shellinabox PORTVERSION= 2.20 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= olivier@FreeBSD.org @@ -12,7 +12,7 @@ COMMENT= Publish command line shell through AJAX interface LICENSE= GPLv2 -USES= autoreconf libtool +USES= autoreconf libtool ssl OPTIONS_DEFINE= CORES NOLOGIN CORES_DESC= Patch shellinaboxd to enable core dumps @@ -30,6 +30,9 @@ PKGDEINSTALL= ${WRKDIR}/pkg-deinstall SUB_FILES= pkg-deinstall SUB_LIST= USERS=${USERS} GROUPS=${GROUPS} +CONFIGURE_ARGS= --disable-runtime-loading --disable-pam \ + CFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib + NOLOGIN_CONFIGURE_ON= --disable-login .include <bsd.port.options.mk> |