summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2002-03-11 07:40:16 +0000
committerJames Henstridge <jamesh@src.gnome.org>2002-03-11 07:40:16 +0000
commit3052da707dd4ec169eae9c6a3d190690656fe18e (patch)
treeee1c28505bb72335af1766543d4e6b7e10f6c7db /configure.in
parent1e1b214a18c4564e3a82c7d2f8a4b8f268c62b2b (diff)
downloadgtk+-3052da707dd4ec169eae9c6a3d190690656fe18e.tar.gz
set CCAS and CCASFLAGS to get automake 1.6 compatibility without breaking
2002-03-11 James Henstridge <james@daa.com.au> * configure.in: set CCAS and CCASFLAGS to get automake 1.6 compatibility without breaking things for people using 1.4.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ff49a9c178..93ce83d657 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