On an up-to-date version of Linux, I get this error following a successful config:
$ make Making all in src make[1]: Entering directory `/g/vs-build/stunnel-4.05/src' Makefile:404: warning: overriding commands for target `stunnel.exe' Makefile:265: warning: ignoring old commands for target `stunnel.exe' cd .. && automake --gnu --include-deps src/Makefile configure.ac:5: your implementation of AM_INIT_AUTOMAKE comes from an configure.ac:5: old Automake version. You should recreate aclocal.m4 configure.ac:5: with aclocal and run automake again. src/Makefile.am: required file `auto/depcomp' not found /usr/share/automake-1.9/am/depend2.am: am__fastdepCC does not appear in AM_CONDITIONAL /usr/share/automake-1.9/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL make[1]: *** [Makefile.in] Error 63 make[1]: Leaving directory `/g/vs-build/stunnel-4.05/src' make: *** [all-recursive] Error 1
After running aclocal (completes with no errors), I re-run configure and try to make again:
$ make Making all in src make[1]: Entering directory `/g/vs-build/stunnel-4.05/src' Makefile:404: warning: overriding commands for target `stunnel' Makefile:265: warning: ignoring old commands for target `stunnel' cd .. && automake-1.9 --gnu --include-deps src/Makefile src/Makefile.am: required file `auto/depcomp' not found make[1]: *** [Makefile.in] Error 1 make[1]: Leaving directory `/g/vs-build/stunnel-4.05/src' make: *** [all-recursive] Error 1
Ideas? Suggestions? Did I screw something up?
Ed Vazquez
To speak ill of others is a dishonest way of praising ourselves. . . let us be above such transparent egotism. - Will Durant
On 2004-10-22, at 23:26, Ed Vazquez wrote:
cd .. && automake --gnu --include-deps src/Makefile
It looks like your Makefile.am is newer then Makefile. Did you modify it? If you did it - you need the same automake I had building stunnel with or you need to upgrade scripts in stunnel source.
Best regards, Mike