aix needs to link against libodm and libcfg to use ODM
This commit is contained in:
parent
3575b1319f
commit
408fae9b1a
|
@ -99,6 +99,7 @@
|
||||||
<path location="${build}/src"/>
|
<path location="${build}/src"/>
|
||||||
</path>
|
</path>
|
||||||
|
|
||||||
|
<!-- extra solaris libs -->
|
||||||
<condition property="jni.libset.dir" value="/usr/lib">
|
<condition property="jni.libset.dir" value="/usr/lib">
|
||||||
<isset property="solaris"/>
|
<isset property="solaris"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
@ -106,6 +107,15 @@
|
||||||
<condition property="jni.libset.libs" value="kstat">
|
<condition property="jni.libset.libs" value="kstat">
|
||||||
<isset property="solaris"/>
|
<isset property="solaris"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
|
<!-- extra aix libs -->
|
||||||
|
<condition property="jni.libset.dir" value="/usr/lib">
|
||||||
|
<isset property="aix"/>
|
||||||
|
</condition>
|
||||||
|
|
||||||
|
<condition property="jni.libset.libs" value="odm,cfg">
|
||||||
|
<isset property="aix"/>
|
||||||
|
</condition>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="copy-includes">
|
<target name="copy-includes">
|
||||||
|
|
Loading…
Reference in New Issue