Patch for <a href="http://configure.in">configure.in</a> (tested with syslog ng 1.6.9 source).<br>---&lt;configure.in.patch&gt;---<br>341a342<br>&gt; oscheck=`uname`<br>349a351,354<br>&gt; elif echo $oscheck | egrep &quot;AIX&quot; &gt; /dev/null; then
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LD_START_STATIC=&quot;-Wl,-bstatic&quot;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LD_END_STATIC=&quot;-Wl,-bdynamic&quot;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AC_MSG_RESULT(AIX)<br>---&lt;configure.in.patch&gt;---<br><br>patch -i configure.in.patch <a href="http://configure.in">
configure.in</a> <br>autoconf <a href="http://configure.in">configure.in</a> &gt; configure<br><br>will do the job.<br><br>The -bstatic and '-bdynamic' options of AIX's ld command are supported in AIX 4.3 and higher according to IBM documentation. I've check this on AIX 
4.3.3, 5.1 ML8 and 5.3 ML3.<br><br>If someone uses the gnu ld on AIX this should be already covered by the check for GNU in $ldversion.<br><br>AFAIK there is no other way to determine the ld version in a convenient fashion since IBM introduced the '-V' option lately but prior to AIX 
5.3 this option seems not be present nor does it gives any hint for AIX ld options:<br>$ ld -V<br>ld: LD 1.64 (08/19/2003)<br><br><br>--<br>Jochen<br><br><br>