diff options
author | daywalker <daywalker@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2002-04-15 00:31:58 +0000 |
---|---|---|
committer | daywalker <daywalker@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2002-04-15 00:31:58 +0000 |
commit | 48ccca5c93e0d81637dcf61ac03a73e25309c7a2 (patch) | |
tree | 6c13ec40b230147cb23a97bfaa19e4cc06bcea78 /configure.in | |
parent | b0a955e03b18ea11f571b9097001a5f613eb2380 (diff) |
some workarounds for newer automake
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@70 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1c77f23f..68e53113 100644 --- a/configure.in +++ b/configure.in @@ -18,12 +18,15 @@ if test "${GCC}" != "yes" ; then AC_MSG_ERROR([Valgrind relies on GCC to be compiled]) fi +# some older automake's don't have it so try something on our own +ifdef([AM_PROG_AS],[AM_PROG_AS], +[ AS="${CC}" AC_SUBST(AS) ASFLAGS="" AC_SUBST(ASFLAGS) - +]) # This variable will collect the individual suppression files # depending on the results of autoconf |