summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTravis Bryson <[email protected]>2006-06-13 23:56:43 +0000
committerTravis Bryson <[email protected]>2006-06-13 23:56:43 +0000
commitdef81ee489540046027b9150640a58fbbbfdd7aa (patch)
tree93c55b6b0923e9ead629e1d87f64eb9274410ab9
parent1754f08ec0fb62ecd23f1ec3ec7c94da9a44de7a (diff)
Issue number:
Obtained from: Submitted by: Travis Reviewed by: Add Solaris AMD64 detection. Put 64 bit JVM in your path before 32 bit for detection to occur properly. Modified Files: make/gluegen-cpptasks.xml git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@34 a78bb65f-1512-4460-ba86-f6dc96a7bf27
-rwxr-xr-xmake/gluegen-cpptasks.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/make/gluegen-cpptasks.xml b/make/gluegen-cpptasks.xml
index 0eaa66a..66a9158 100755
--- a/make/gluegen-cpptasks.xml
+++ b/make/gluegen-cpptasks.xml
@@ -38,6 +38,7 @@
- isLinuxX86
- isOSX
- isSolaris
+ - isSolarisAMD64
- isSolarisSparcv9
- isUnix
- isWindows
@@ -129,6 +130,13 @@
<os arch="sparcv9" />
</and>
</condition>
+ <condition property="isSolarisAMD64">
+ <and>
+ <os name="SunOS" />
+ <os arch="AMD64" />
+ </and>
+ </condition>
+
<!-- Note: assumes X11 platform by default -->
<condition property="isX11">
<and>
@@ -147,6 +155,7 @@
<echo message="OS X=${isOSX}" />
<echo message="Solaris=${isSolaris}" />
<echo message="SolarisSparcv9=${isSolarisSparcv9}" />
+ <echo message="SolarisAMD64=${isSolarisAMD64}" />
<echo message="Unix=${isUnix}" />
<echo message="Windows=${isWindows}" />
<echo message="X11=${isX11}" />