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>
|
||||
|
||||
<!-- extra solaris libs -->
|
||||
<condition property="jni.libset.dir" value="/usr/lib">
|
||||
<isset property="solaris"/>
|
||||
</condition>
|
||||
|
@ -106,6 +107,15 @@
|
|||
<condition property="jni.libset.libs" value="kstat">
|
||||
<isset property="solaris"/>
|
||||
</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 name="copy-includes">
|
||||
|
|
Loading…
Reference in New Issue