FYI:
When compiling 2.0.45 on AIX 4.3.3 I am getting
loads of "Informational" messages like (but not limited to):
1506-304 (I) No function prototype given for "_Errno"
1506-304 (I) No function prototype given for "strcasecmp"
1506-304 (I) No function prototype given for "strncasecmp"
1506-304 (I) No function prototype given for "yy_flex_alloc"
1506-304 (I) No function prototype given for "yy_fatal_error"
1506-304 (I) No function prototype given for "yy_flex_alloc"
1506-304 (I) No function prototype given for
"ssl_expr_yy_init_buffer"
1506-304 (I) No function prototype given for "ldap_unbind_s"
1506-304 (I) No function prototype given for "ldap_init"
It does successfully compile, and all modules seem to work fine.
In case it matters, here is my config.nice:
CC="cc_r"; export CC
CPPFLAGS="-qcpluscmt"; export CPPFLAGS
"./configure" \
"--with-mpm=worker" \
"--prefix=/usr/local/apache" \
"--enable-dav=static" \
"--enable-dav_fs=static" \
"--enable-ssl=static" \
"--with-ldap=yes" \
"--with-ldap-include=/usr/local/include" \
"--with-ldap-lib=/usr/local/lib" \
"--enable-ldap=static" \
"--enable-auth_ldap=static" \
"$@"
-tony