From 3052da707dd4ec169eae9c6a3d190690656fe18e Mon Sep 17 00:00:00 2001 From: James Henstridge Date: Mon, 11 Mar 2002 07:40:16 +0000 Subject: [PATCH] set CCAS and CCASFLAGS to get automake 1.6 compatibility without breaking 2002-03-11 James Henstridge * configure.in: set CCAS and CCASFLAGS to get automake 1.6 compatibility without breaking things for people using 1.4. --- configure.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index ff49a9c17..93ce83d65 100644 --- a/configure.in +++ b/configure.in @@ -104,11 +104,16 @@ AM_DISABLE_STATIC AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL -dnl Set AS and ASFLAGS so that automake 1.5 will be happy +dnl XXXX Hack: Set AS and ASFLAGS so that automake 1.5 will be happy AS="\${CC}" ASFLAGS="\${CFLAGS}" AC_SUBST(AS) AC_SUBST(ASFLAGS) +dnl XXXX Hack: Set CCAS and CCASFLAGS so that automake 1.6 will be happy +CCAS="\${CC}" +CCASFLAGS="\${CFLAGS}" +AC_SUBST(CCAS) +AC_SUBST(CCASFLAGS) dnl Initialize maintainer mode AM_MAINTAINER_MODE