Patch for <a href="http://configure.in">configure.in</a> (tested with syslog ng 1.6.9 source).<br>---<configure.in.patch>---<br>341a342<br>> oscheck=`uname`<br>349a351,354<br>> elif echo $oscheck | egrep "AIX" > /dev/null; then
<br>> LD_START_STATIC="-Wl,-bstatic"<br>> LD_END_STATIC="-Wl,-bdynamic"<br>> AC_MSG_RESULT(AIX)<br>---<configure.in.patch>---<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> > 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>