diff options
author | simon <simon@FreeBSD.org> | 2006-09-04 05:14:52 +0800 |
---|---|---|
committer | simon <simon@FreeBSD.org> | 2006-09-04 05:14:52 +0800 |
commit | aff0ee41cd41794a199b90c5f1c8529000bd2871 (patch) | |
tree | bb71c4f3c27fe0f1c4547cda2af06f9fc39ade2b /security | |
parent | 11a5c03027470cf552723c07167d7131f5b87ea8 (diff) | |
download | freebsd-ports-gnome-aff0ee41cd41794a199b90c5f1c8529000bd2871.tar.gz freebsd-ports-gnome-aff0ee41cd41794a199b90c5f1c8529000bd2871.tar.zst freebsd-ports-gnome-aff0ee41cd41794a199b90c5f1c8529000bd2871.zip |
Mark BROKEN on recent -CURRENT since it doesn't compile with OpenSSL
0.9.8b.
When here anyway, fix portlint warning about BROKEN when WITHOUT_NLS
is defined.
Diffstat (limited to 'security')
-rw-r--r-- | security/newpki-lib/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/newpki-lib/Makefile b/security/newpki-lib/Makefile index 5d7e2e858574..5a0c8d1f20be 100644 --- a/security/newpki-lib/Makefile +++ b/security/newpki-lib/Makefile @@ -24,7 +24,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+= --includedir=${PREFIX}/include/newpki .if defined(WITHOUT_NLS) -BROKEN= "Does not build without gettext" +BROKEN= does not build without gettext PLIST_SUB+= NLS="@comment " CONFIGURE_ARGS+= --disable-nls .else @@ -41,6 +41,10 @@ GNU_CONFIGURE= yes USE_GCC= 3.4 .endif +.if ${OSVERSION} >= 700019 +BROKEN= does not compile with OpenSSL 0.9.8b +.endif + pre-patch: @${FIND} ${WRKSRC} -name '*.cpp' -or -name '*.h' | ${XARGS} ${REINPLACE_CMD} -e 's|
||g' |