From automake manual:
"
This is an obsolescent macro that checks that the C compiler
supports the -c and -o options together. Note that, since
Automake 1.14, the AC_PROG_CC is rewritten to implement such
checks itself, and thus the explicit use of AM_PROG_CC_C_O
should no longer be required.
"
This also changes an implicit build requirement of automake 1.5
to an explicit 1.14 or later requirement.
contributions from numerous individuals and organizations.
Please see the COPYING and CONTRIBUTORS files for details.
])
-AM_INIT_AUTOMAKE([tar-ustar nostdinc subdir-objects dist-xz])
+AM_INIT_AUTOMAKE([1.14 tar-ustar nostdinc subdir-objects dist-xz])
AC_PREFIX_DEFAULT(/usr/local/squid)
AM_MAINTAINER_MODE
])
AC_PROG_CC
-AM_PROG_CC_C_O
AC_PROG_CXX
# AC_USE_SYSTEM_EXTENSIONS should be called before any macros that run the C compiler.