DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29170>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29170 Configure fails "Error: decision on anonymous shared..." due to inclusion of -Wl,-brtl ------- Additional Comments From [EMAIL PROTECTED] 2004-05-24 20:41 ------- -Wl,-brtl is for aix >= 4.2 as far as I can tell... Martin, can you try this patch? You'll need to run apr buildconf to regenerate configure from the updated m4 file. Index: build/apr_hints.m4 =================================================================== RCS file: /home/cvs/apr/build/apr_hints.m4,v retrieving revision 1.53.2.6 diff -u -r1.53.2.6 apr_hints.m4 --- build/apr_hints.m4 19 May 2004 19:32:08 -0000 1.53.2.6 +++ build/apr_hints.m4 24 May 2004 20:36:07 -0000 @@ -63,7 +63,13 @@ fi APR_SETIFNULL(apr_sysvsem_is_global, [yes]) APR_SETIFNULL(apr_lock_method, [USE_SYSVSEM_SERIALIZE]) - APR_ADDTO(LDFLAGS, [-Wl,-brtl]) + case $host in + *-ibm-aix3* | *-ibm-aix4.1.*) + ;; + *) + APR_ADDTO(LDFLAGS, [-Wl,-brtl]) + ;; + esac ;; *-apollo-*) APR_ADDTO(CPPFLAGS, [-DAPOLLO]) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
