diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2008-08-29 05:27:16 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2008-08-29 05:27:16 +0000 |
commit | bfd6dd958479dd8f2d37354bddc135f04cd2d8c8 (patch) | |
tree | c8de53965f12047e4b610f40ee9edc6b8c727715 /java/eclipse | |
parent | - Add entry for irc/tirc (diff) |
. Enforce JAVA_VERSION of 1.6 on FreeBSD 7.x and better. While jdk15 will
work, diablo-jdk15 won't, so the safest way to do this is to just
enforce jdk16 or diablo-jdk16.
. Enforce using something that was compiled on FreeBSD 8.x since the binary
packages are likely to cause problems.
Diffstat (limited to 'java/eclipse')
-rw-r--r-- | java/eclipse/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index f7400294d0e8..89633d194385 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -61,6 +61,10 @@ MAKE_CAIRO= make_cairo .include <bsd.port.pre.mk> .if ${OSVERSION} >= 700000 +JAVA_VERSION= 1.6 +.endif + +.if ${OSVERSION} >= 800000 JAVA_VENDOR= bsdjava .endif |