The call to AM_PROG_CC_C_O was removed in
cbfb0d32ad1aa53d837971563f0aec0f485c4532, but it appears to be
required by older versions of Automake that we still support (versions
older than v1.14, which was released 2013-06-21).

Without it, Automake prints the following:

    mk/libcasn.mk:40: compiling `lib/casn/asn.c' in subdir requires 
`AM_PROG_CC_C_O' in `configure.ac'
    Makefile.am:80:   `mk/libcasn.mk' included from here

The above doesn't seem to be an error; autoreconf does not exit non-0,
and rpstir still seems to build OK and pass all tests.  But the
message makes me uncomfortable, and it doesn't hurt to add it back.
---
https://sourceforge.net/p/rpstir/tickets/26/

 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index 9cf78a9..ff7a70a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,6 +56,7 @@ AC_PROG_CC
 AC_PROG_CC_C99
 AS_IF([test "x${ac_cv_prog_cc_c99}" = xno],
       [AC_MSG_ERROR([C99 compiler is required])])
+AM_PROG_CC_C_O
 AC_PROG_RANLIB
 AC_PROG_SED
 AM_PATH_PYTHON([$MIN_PYTHON_VERSION])
-- 
2.4.5


------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
rpstir-devel mailing list
rpstir-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpstir-devel

Reply via email to