diff options
author | James Henstridge <james@daa.com.au> | 2002-03-11 07:40:16 +0000 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2002-03-11 07:40:16 +0000 |
commit | 3052da707dd4ec169eae9c6a3d190690656fe18e (patch) | |
tree | ee1c28505bb72335af1766543d4e6b7e10f6c7db /configure.in | |
parent | 1e1b214a18c4564e3a82c7d2f8a4b8f268c62b2b (diff) | |
download | gtk+-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.in | 7 |
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 |