We are installing apache 2.4.X , tried installing
- 2.4.16
- 2.4.25
- 2.4.29
in AIX 7.1 (7100-05-01-1731).
We are facing below issue while we are executing make install for httpd-apache.
We have successfully installed
- apr (apr-1.5.2)
- apr util (apr-util-1.5.4)
- pcre (pcre-8.33).
Flags that were used are :
export OBJECT_MODE=64
export CC="xlc_r -q64"
export lt_cv_path_NM="/usr/bin/nm -B -X64"
export AR="ar -X64"
Error Stacktrace: we are facing issue that says that mod_authn_file.so cannot be created due to some error.
rm -f /home/u980868/apache/kiran/httpd-kiran/modules/mod_authn_file.so
/home/u980868/apache/kiran/httpd-2.4.25/srclib/apr/libtool --silent --mode=install install mod_authn_file.la /home/u980868/apache/kiran/httpd-kiran/modules/
find: bad status-- /home/u980868/apache/kiran/httpd-kiran/modules/mod_authn_file.so
install: File mod_authn_file.so was not found.
make: 1254-004 The error code from the last command is 2.
apr-1.6.3
andapr-util-1.6.1
beforehttpd-2.4.29
? These three have to use the same layout. – Lorinczy Zsigmondmake install
. Hopefully you saved the logs ofmake all
which creates filesmodules/aaa/mod_authn_file.la
andmodules/aaa/.libs/mod_authn_file.so
. If you don't have these files, you might have had problems inmake all
too. PS: Hopefully you used linker-flag-brtl
at every step. ( cf web.axelero.hu/lzsiga/aix-linking.html#Q0020 ) – Lorinczy Zsigmond