diff options
author | sergei <sergei@FreeBSD.org> | 2005-02-22 18:08:10 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2005-02-22 18:08:10 +0800 |
commit | 6799224d1ec025e6c092b1a23c0b391b7aac573f (patch) | |
tree | 2aebbba1a6fe6d85b6ea4303c8d7b67bb5836daf /mail/maildrop | |
parent | f37ddeec090856afd5c6dc5fdd79c28afbdce07e (diff) | |
download | freebsd-ports-graphics-6799224d1ec025e6c092b1a23c0b391b7aac573f.tar.gz freebsd-ports-graphics-6799224d1ec025e6c092b1a23c0b391b7aac573f.tar.zst freebsd-ports-graphics-6799224d1ec025e6c092b1a23c0b391b7aac573f.zip |
- Build fails under RELENG_4 unless USE_GMAKE=yes.
Make it conditional on OSVERSION since RELENG_5 and HEAD
does not have that problem
Noticed by: KIMURA Yasuhiro <yasu@utahime.org>
Diffstat (limited to 'mail/maildrop')
-rw-r--r-- | mail/maildrop/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 4d396e0613f..166c90dfe0a 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -42,6 +42,10 @@ LDFLAGS+= -L${LOCALBASE}/lib .include <bsd.port.pre.mk> +.if ${OSVERSION} < 500000 +USE_GMAKE =yes +.endif + .if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-db=gdbm |