diff options
author | gregorypierce <[email protected]> | 2003-11-23 15:23:13 +0000 |
---|---|---|
committer | gregorypierce <[email protected]> | 2003-11-23 15:23:13 +0000 |
commit | ce4b5be9480643d7378d934ba7dca2ddbecde2ee (patch) | |
tree | 1a00382ff0f52424034d5a64dda922fa81bc5f7f /src | |
parent | fd857a2990d43463646245198dc5332733615f5b (diff) |
Added not conditional for isUnix since OSX is part of the osFamily unix and this would result in the Unix/Linux version of OpenAL being built and throwing errors.
With this change, the OSX version builds and runs properly (though not without some warnings from the C compile).
Issue number:
Obtained from:
Submitted by: Gregory Pierce
Reviewed by:
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@74 03bf7f67-59de-4072-a415-9a990d468a3f
Diffstat (limited to 'src')
-rw-r--r-- | src/native/build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/native/build.xml b/src/native/build.xml index 61a93b3..0d26f42 100644 --- a/src/native/build.xml +++ b/src/native/build.xml @@ -47,7 +47,12 @@ </and> </condition> <condition property="isUnix"> - <os family="unix" /> + <and> + <os family="unix" /> + <not> + <os family="mac" /> + </not> + </and> </condition> <condition property="isWindows"> <os family="windows" /> |