mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 11:48:35 -04:00
Stricter check for FreeBSD version when openssl was updated to 1.0 (thanks danfe)
Fix plist; Mark BROKEN if libressl is detected (thanks jhale)
This commit is contained in:
parent
2a385bab4a
commit
51a8fbbbf3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=426177
2 changed files with 9 additions and 1 deletions
|
@ -62,9 +62,12 @@ IGNORE?= enable PCRE support to use DeviceAtlas
|
||||||
.if ${PORT_OPTIONS:MOPENSSL}
|
.if ${PORT_OPTIONS:MOPENSSL}
|
||||||
USES+= ssl
|
USES+= ssl
|
||||||
MAKE_ARGS+= USE_OPENSSL=1
|
MAKE_ARGS+= USE_OPENSSL=1
|
||||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000015
|
||||||
WITH_OPENSSL_PORT= yes
|
WITH_OPENSSL_PORT= yes
|
||||||
.endif
|
.endif
|
||||||
|
.if ${SSL_DEFAULT:Mlibressl*}
|
||||||
|
BROKEN= does not build with libressl
|
||||||
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MLUA}
|
.if ${PORT_OPTIONS:MLUA}
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
man/man1/haproxy.1.gz
|
man/man1/haproxy.1.gz
|
||||||
sbin/halog
|
sbin/halog
|
||||||
sbin/haproxy
|
sbin/haproxy
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/51Degrees-device-detection.txt
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/DeviceAtlas-device-detection.txt
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/SPOE.txt
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/WURFL-device-detection.txt
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/acl.fig
|
%%PORTDOCS%%%%DOCSDIR%%/acl.fig
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/architecture.txt
|
%%PORTDOCS%%%%DOCSDIR%%/architecture.txt
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/close-options.txt
|
%%PORTDOCS%%%%DOCSDIR%%/close-options.txt
|
||||||
|
@ -94,3 +98,4 @@ sbin/haproxy
|
||||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssl.cfg
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssl.cfg
|
||||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stats_haproxy.sh
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stats_haproxy.sh
|
||||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparent_proxy.cfg
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparent_proxy.cfg
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wurfl-example.cfg
|
||||||
|
|
Loading…
Add table
Reference in a new issue