diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2005-08-01 19:17:24 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2005-08-01 19:17:24 +0800 |
commit | 94f3e6239acac041dcce9120aaeaeccd4fcfdfa9 (patch) | |
tree | 483bcef80bb0c07b81c214392a30e0bc577c26ab /security/gnupg1 | |
parent | 5127a3faff7cbccf877adc5b6cf1327a950e6dbe (diff) | |
download | freebsd-ports-gnome-94f3e6239acac041dcce9120aaeaeccd4fcfdfa9.tar.gz freebsd-ports-gnome-94f3e6239acac041dcce9120aaeaeccd4fcfdfa9.tar.zst freebsd-ports-gnome-94f3e6239acac041dcce9120aaeaeccd4fcfdfa9.zip |
Fix build failure on 4.x.
Reported by: "Sander Holthaus - Orange XL" <info@orangexl.com>
Diffstat (limited to 'security/gnupg1')
-rw-r--r-- | security/gnupg1/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile index 81cc2ab762ab..446a3708c492 100644 --- a/security/gnupg1/Makefile +++ b/security/gnupg1/Makefile @@ -68,6 +68,10 @@ post-install: PKGMESSAGE= /nonexistent .endif +.if ${OSVERSION} < 500000 +CONFIGURE_ARGS+= --without-readline +.endif + check: (cd ${WRKSRC}; ${MAKE} check) |