You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2023. It is now read-only.
configure.ac:4: error: required file './config.guess' not found
configure.ac:4: 'automake --add-missing' can install 'config.guess'
configure.ac:4: error: required file './config.sub' not found
configure.ac:4: 'automake --add-missing' can install 'config.sub'
/usr/share/automake-1.14/am/ltlibrary.am: warning: 'mod_authnz_crowd.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.14/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
src/Makefile.am:3: while processing Libtool library 'mod_authnz_crowd.la'
src/Makefile.am:8: warning: 'CFLAGS' is a user variable, you should not override it;
src/Makefile.am:8: use 'AM_CFLAGS' instead
/usr/share/automake-1.14/am/ltlibrary.am: warning: 'mod_authz_svn_crowd.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.14/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
src/svn/Makefile.am:1: while processing Libtool library 'mod_authz_svn_crowd.la'
src/svn/Makefile.am:6: warning: 'CFLAGS' is a user variable, you should not override it;
src/svn/Makefile.am:6: use 'AM_CFLAGS' instead
autoreconf: automake failed with exit status: 1
If I edit configure.ac and add AM_PROG_AR then re-run automake and autoreconf, that phase completes. However, running ./configure gives me this error:
checking for apr_pool_pre_cleanup_register in -lapr-1... no
configure: error: apr_pool_pre_cleanup_register was not found in libapr-1
On a clean Ubuntu 14.04 machine:
sudo apt-get install git
git clone https://github.com/fgimian/cwdapache.git
cd cwdapache/
sudo apt-get install automake
aclocal
sudo apt-get install libtool
libtoolize
autoheader
automake --force-missing --add-missing
autoreconf
That last step fails with:
configure.ac:4: error: required file './config.guess' not found
configure.ac:4: 'automake --add-missing' can install 'config.guess'
configure.ac:4: error: required file './config.sub' not found
configure.ac:4: 'automake --add-missing' can install 'config.sub'
/usr/share/automake-1.14/am/ltlibrary.am: warning: 'mod_authnz_crowd.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.14/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
src/Makefile.am:3: while processing Libtool library 'mod_authnz_crowd.la'
src/Makefile.am:8: warning: 'CFLAGS' is a user variable, you should not override it;
src/Makefile.am:8: use 'AM_CFLAGS' instead
/usr/share/automake-1.14/am/ltlibrary.am: warning: 'mod_authz_svn_crowd.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.14/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
src/svn/Makefile.am:1: while processing Libtool library 'mod_authz_svn_crowd.la'
src/svn/Makefile.am:6: warning: 'CFLAGS' is a user variable, you should not override it;
src/svn/Makefile.am:6: use 'AM_CFLAGS' instead
autoreconf: automake failed with exit status: 1
If I edit configure.ac and add AM_PROG_AR then re-run automake and autoreconf, that phase completes. However, running ./configure gives me this error:
checking for apr_pool_pre_cleanup_register in -lapr-1... no
configure: error: apr_pool_pre_cleanup_register was not found in libapr-1
So I'm still stuck trying to get this to build.