diff options
author | Kenneth Russel <[email protected]> | 2006-08-01 21:46:00 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-08-01 21:46:00 +0000 |
commit | ff5fa954165c45037849b986f41f4a192cad163e (patch) | |
tree | 6bccdac0bdd9ae0d0d089de7826df3565f1612a5 /make | |
parent | f3d83a065e57365cfc99a6ed57362d35b10cd070 (diff) |
Changed isSolaris property detected by gluegen-cpptasks.xml to mean
any of the 32- or 64-bit Solaris targets; added isSolaris32Bit
property; revised dependent build.xml files
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@36 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'make')
-rwxr-xr-x | make/gluegen-cpptasks.xml | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/make/gluegen-cpptasks.xml b/make/gluegen-cpptasks.xml index 66a9158..0c1e39d 100755 --- a/make/gluegen-cpptasks.xml +++ b/make/gluegen-cpptasks.xml @@ -79,14 +79,7 @@ <os name="Linux" /> </condition> <condition property="isSolaris"> - <and> - <os name="SunOS" /> - <or> - <os arch="i386" /> - <os arch="x86" /> - <os arch="sparc" /> - </or> - </and> + <os name="SunOS" /> </condition> <condition property="isWindows"> <os family="windows" /> @@ -124,15 +117,25 @@ <condition property="isIA64"> <os arch="IA64" /> </condition> + <condition property="isSolaris32Bit"> + <and> + <istrue value="${isSolaris}" /> + <or> + <os arch="i386" /> + <os arch="x86" /> + <os arch="sparc" /> + </or> + </and> + </condition> <condition property="isSolarisSparcv9"> <and> - <os name="SunOS" /> + <istrue value="${isSolaris}" /> <os arch="sparcv9" /> </and> </condition> <condition property="isSolarisAMD64"> <and> - <os name="SunOS" /> + <istrue value="${isSolaris}" /> <os arch="AMD64" /> </and> </condition> @@ -214,7 +217,7 @@ <isfalse value="${isMingW}" /> </and> </condition> - <fail message="Must specify either win32.c.compiler in jogl.properties or use e.g. win32.vc6 build target" if="WindowsFailure" /> + <fail message="Must specify either win32.c.compiler in e.g. jogl.properties or use e.g. win32.vc6 build target" if="WindowsFailure" /> <echo message="VC6=${isVC6}" /> <echo message="VC7=${isVC7}" /> <echo message="VC8=${isVC8}" /> |