diff options
author | kbr <[email protected]> | 2006-01-30 02:48:49 +0000 |
---|---|---|
committer | kbr <[email protected]> | 2006-01-30 02:48:49 +0000 |
commit | 21a56caf04150b264e5c95f526c382ef6fe951f3 (patch) | |
tree | e2521030e37fb7b6ea3f270eb329eba93a93bd97 /make | |
parent | 6960076cf6a0f893966021a016d1b2319a5739cb (diff) |
Fixed build on Mac OS X
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@105 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'make')
-rwxr-xr-x | make/build.xml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/make/build.xml b/make/build.xml index 9a63977..5b06019 100755 --- a/make/build.xml +++ b/make/build.xml @@ -499,11 +499,7 @@ <linkerarg value="-arch" if="macosxfat"/> <linkerarg value="i386" if="macosxfat"/> <linkerarg value="-framework" /> - <linkerarg value="Cocoa" /> - <linkerarg value="-framework" /> - <linkerarg value="OpenGL" /> - <linkerarg value="-framework" if="c.compiler.use-cglib" /> - <linkerarg value="Cg" if="c.compiler.use-cglib" /> + <linkerarg value="OpenAL" /> </linker> <patternset id="c.src.files.joal"> @@ -560,13 +556,13 @@ <target name="c.rename.joal.lib.mingw" if="isMingw"> <!-- FIXME: this is a hack; the cpptask should have an option to change the suffix or at least understand the override from .so to .dll --> - <move file="${obj}/libjoal.so" tofile="${obj}/joal.dll" failonerror="false" /> + <move file="${obj}/libjoal_native.so" tofile="${obj}/joal_native.dll" failonerror="false" /> </target> <target name="c.rename.joal.lib.macosx" if="isOSX"> <!-- FIXME: this is a hack; the cpptask should have an option to change the suffix or at least understand the override from dylib to jnilib --> - <move file="${obj}/libjoal.dylib" tofile="${obj}/libjoal.jnilib" /> + <move file="${obj}/libjoal_native.dylib" tofile="${obj}/libjoal_native.jnilib" /> </target> <target name="c.build.joal"> |