diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 07:47:01 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 07:47:01 +0000 |
commit | 29814c80cf1fbfb71ed6b0aaa6c55a583adbf7bf (patch) | |
tree | 71553218eb7e40661095a876c8a3e061c3d7d2fa | |
parent | BROKEN: Does not compile on FreeBSD >= 5.x (diff) |
BROKEN on 5.x: Does not compile
Notes
Notes:
svn path=/head/; revision=111796
-rw-r--r-- | security/vncrypt/Makefile | 4 | ||||
-rw-r--r-- | sysutils/ucspi-ssl/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/security/vncrypt/Makefile b/security/vncrypt/Makefile index 2274175103d3..c45ca342ea08 100644 --- a/security/vncrypt/Makefile +++ b/security/vncrypt/Makefile @@ -27,6 +27,10 @@ SUP_OS_VER= 450004 BROKEN= "OS versions prior to ${SUP_OS_VER} is not supported" .endif +.if ${OSVERSION} >= 502112 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .ifdef(IPSEC) #Compile for kernel with IPSEC support MAKE_ENV+= CRYPTO_SRCS="" diff --git a/sysutils/ucspi-ssl/Makefile b/sysutils/ucspi-ssl/Makefile index 313ba32796d9..4f170a901c43 100644 --- a/sysutils/ucspi-ssl/Makefile +++ b/sysutils/ucspi-ssl/Makefile @@ -37,6 +37,10 @@ IGNORE= "requires Perl 5.6.0 or greater. Please install lang/perl5 and retry, o PLIST_SUB+= SSLPERL="@comment " .endif +.if ${OSVERSION} >= 502112 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + do-build: .if defined(WITHOUT_SSLPERL) cd ${WRKSRC} && package/compile https@ sslcat sslconnect sslclient sslserver |