diff options
author | marcus <marcus@FreeBSD.org> | 2004-10-14 08:37:47 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-10-14 08:37:47 +0800 |
commit | 429a8ae39cdc9b78c11d50609a94a68306bb3aaf (patch) | |
tree | f86f549f6dca7c67c996d06fb95f75d6200b7525 /mail/thunderbird3/Makefile | |
parent | 5a9891199f13e389c4031691ffb40b006334cbaf (diff) | |
download | freebsd-ports-gnome-429a8ae39cdc9b78c11d50609a94a68306bb3aaf.tar.gz freebsd-ports-gnome-429a8ae39cdc9b78c11d50609a94a68306bb3aaf.tar.zst freebsd-ports-gnome-429a8ae39cdc9b78c11d50609a94a68306bb3aaf.zip |
Fix build with Perl < 5.6.1.
Diffstat (limited to 'mail/thunderbird3/Makefile')
-rw-r--r-- | mail/thunderbird3/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/thunderbird3/Makefile b/mail/thunderbird3/Makefile index c9208c79a91d..d8771737fe86 100644 --- a/mail/thunderbird3/Makefile +++ b/mail/thunderbird3/Makefile @@ -57,6 +57,10 @@ OPTIONS= DEBUG "Build a debugging image" off \ IGNORE= "core dumps at runtime" .endif # ${ARCH} == "alpha" && ${OSVERSION} < 500035 +.if ${PERL_LEVEL} < 500600 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-config_make-jars.pl +.endif # ${PERL_LEVEL} < 500600 + .if defined(WITH_DEBUG) WITH_LOGGING= yes CONFIGURE_ENV+= WITH_DEBUG=yes |