diff options
author | James Henstridge <james@daa.com.au> | 2001-10-11 02:44:17 +0000 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2001-10-11 02:44:17 +0000 |
commit | 7eb131fdf17c161520f3eea3ab9d4ac6801f4cd1 (patch) | |
tree | 75d4b7f51d634d95d5e5482b3c2a2883f1aa46ea /configure.in | |
parent | ca9158fa031bf1f498b8eaa9fecd4a04ea368ea6 (diff) | |
download | gtk+-7eb131fdf17c161520f3eea3ab9d4ac6801f4cd1.tar.gz |
add AS=CC and ASFLAGS=CFLAGS substitutions so that gtk+ can be built with
2001-10-11 James Henstridge <james@daa.com.au>
* configure.in: add AS=CC and ASFLAGS=CFLAGS substitutions so
that gtk+ can be built with automake 1.5 while not breaking
things for automake 1.4.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 91fd26cc9c..78bea98e2b 100644 --- a/configure.in +++ b/configure.in @@ -102,6 +102,12 @@ AM_CONFIG_HEADER(config.h) dnl Initialize libtool AM_PROG_LIBTOOL +dnl Set AS and ASFLAGS so that automake 1.5 will be happy +AS="\${CC}" +ASFLAGS="\${CFLAGS}" +AC_SUBST(AS) +AC_SUBST(ASFLAGS) + dnl Initialize maintainer mode AM_MAINTAINER_MODE |