From e6d1af6fb69b736a67b379b89a0fddf80a26b016 Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Tue, 9 Oct 2001 19:31:26 +0000 Subject: [PATCH] You are required to set `AS' and `ASFLAGS' via `configure.in'. The autoconf macro `AM_PROG_AS' will do this for you. Unless they are already set, it simply sets `AS' to the C compiler and `ASFLAGS' to the C compiler flags. LIES! :) Actually it defaults to "as", not your compiler, and then it gives as the flags it should have given to the C compiler. Anyway, fixed now, and bug reported to the GNU guys :) SVN revision: 5456 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 125b717..6cbc336 100644 --- a/configure.ac +++ b/configure.ac @@ -65,9 +65,9 @@ fi AC_PROG_INSTALL AC_PROG_MAKE_SET -ASFLAGS="$ASFLAGS -I../" +ASFLAGS="-I../" +AS=$CC AM_PROG_AS -AC_SUBST(ASFLAGS) AC_MSG_CHECKING(whether fopen accepts "b" mode) AC_CACHE_VAL([ag_cv_func_fopen_binary],