diff options
author | Sven Gothel <[email protected]> | 2013-01-19 03:57:52 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-19 03:57:52 +0100 |
commit | 039ff52d12f5dd750494fb2dea580946291bdb7e (patch) | |
tree | 120fedf7cc88637a087c51ae801d857c3ee82223 /make | |
parent | 9bcec728aebc74c81cdd7c92aba5ac2706a7da19 (diff) |
Modified Java 1.5 Buffers patch 2b7d1b1d25cb2cd73311ec9159b465f0391bf5e0 - May break GCJ/ECJ .. needs to be revised.
- Adding JAVA_6 in PlatformPropsImpl
- Buffers.isDirect() chooses fast-path iff JAVA_6, otherwise using reflection (GCJ/ECJ)
- Adding JAVA_6 info in VersionUtil
- API doc: Refine JAVA_SE and JAVA_6 spec.
TODO: In case GCJ etc is unable to compile the JAVA_6 code
even though it uses a static condition (probably not),
We have to wrap isStatic in an own class, one for JAVA_6 and one for <= 1.5.
This will be a good exercise for further issues we may have w/ Java <= 1.5.
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/runtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index 2f3942f..d01867f 100755 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -67,7 +67,7 @@ function onetest() { echo } -#onetest com.jogamp.common.GlueGenVersion 2>&1 | tee -a $LOG +onetest com.jogamp.common.GlueGenVersion 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestSystemPropsAndEnvs 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionInfo 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestVersionNumber 2>&1 | tee -a $LOG |