diff options
author | nate <nate@FreeBSD.org> | 2001-03-06 15:41:02 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 2001-03-06 15:41:02 +0000 |
commit | d83f722ce6e903fd3fb4c344c8a57705ade502d2 (patch) | |
tree | 93b8a61c4973b513ef7b2f666f140d9bfb497af8 /java/jdk11 | |
parent | 52822e1527691d4a3ba154079f069701a52471dd (diff) | |
download | FreeBSD-ports-d83f722ce6e903fd3fb4c344c8a57705ade502d2.zip FreeBSD-ports-d83f722ce6e903fd3fb4c344c8a57705ade502d2.tar.gz |
- Inform the user about the need for the compat 3.X libraries if they
install on a FreeBSD 4.X system.
Submitted by: Ernst de Haan <ernst@jollem.com>
Diffstat (limited to 'java/jdk11')
-rw-r--r-- | java/jdk11/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/java/jdk11/Makefile b/java/jdk11/Makefile index dc96779..bf5d0a8 100644 --- a/java/jdk11/Makefile +++ b/java/jdk11/Makefile @@ -42,5 +42,8 @@ do-install: post-install: ${LOCALBASE}/bin/registervm "${PREFIX}/jdk${JDK_VERSION}/bin/java # JDK${JDK_VERSION}" - +.if ${OSVERSION} > 400000 + ${ECHO} "You will need to install the compat3x libraries to use this port." +.endif + .include <bsd.port.post.mk> |