diff options
author | Kenneth Russel <[email protected]> | 2008-06-30 20:33:17 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2008-06-30 20:33:17 +0000 |
commit | a934ec2a19cd0abc9c6fe3d7d68bfbba705c3f92 (patch) | |
tree | fc48763f9748406235fa70fdf8a6ad94a7298b69 | |
parent | b32ecc50859b3d6fb211ba035991fed2031626e1 (diff) |
Fixed accidental breakage due to removal of macosxfat property from
gluegen.properties
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/branches/JOGL_2_SANDBOX@88 a78bb65f-1512-4460-ba86-f6dc96a7bf27
-rwxr-xr-x | make/gluegen-cpptasks.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/make/gluegen-cpptasks.xml b/make/gluegen-cpptasks.xml index e316df0..fe75c37 100755 --- a/make/gluegen-cpptasks.xml +++ b/make/gluegen-cpptasks.xml @@ -498,10 +498,10 @@ </compiler> <compiler id="compiler.cfg.macosx" name="gcc"> - <compilerarg value="-arch" if="macosxfat"/> - <compilerarg value="ppc" if="macosxfat"/> - <compilerarg value="-arch" if="macosxfat"/> - <compilerarg value="i386" if="macosxfat"/> + <compilerarg value="-arch" /> + <compilerarg value="ppc" /> + <compilerarg value="-arch" /> + <compilerarg value="i386" /> <compilerarg value="-arch" if="macosx64"/> <compilerarg value="x86_64" if="macosx64"/> <!-- Note: Apple doesn't seem to provide ppc64 binaries on Leopard --> @@ -569,10 +569,10 @@ </linker> <linker id="linker.cfg.macosx" name="gcc"> - <linkerarg value="-arch" if="macosxfat"/> - <linkerarg value="ppc" if="macosxfat"/> - <linkerarg value="-arch" if="macosxfat"/> - <linkerarg value="i386" if="macosxfat"/> + <linkerarg value="-arch" /> + <linkerarg value="ppc" /> + <linkerarg value="-arch" /> + <linkerarg value="i386" /> <linkerarg value="-arch" if="macosx64"/> <linkerarg value="x86_64" if="macosx64"/> <!-- Note: Apple doesn't seem to provide ppc64 binaries on Leopard --> |