diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-09-26 14:04:46 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-09-26 14:04:46 +0000 |
commit | 077daccd0124ad36aa0ca1706345ca0841f55597 (patch) | |
tree | 45d543928b48e9db974c2c141d3331ef1fbb1513 | |
parent | 160a6e6b95b653e0d643c2aeb90c4c859b6ac59c (diff) | |
download | xine-lib-077daccd0124ad36aa0ca1706345ca0841f55597.tar.gz xine-lib-077daccd0124ad36aa0ca1706345ca0841f55597.tar.bz2 |
Updated as.m4 for automake warnings "Assembler source seen but 'CCAS' not defined in
configure.ac". The same for CCASFLAGS.
CVS patchset: 2750
CVS date: 2002/09/26 14:04:46
-rw-r--r-- | m4/as.m4 | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -7,15 +7,15 @@ dnl Daniel Caujolle-Bert <segfault@club-internet.fr> AC_DEFUN([AM_PROG_AS_MOD], [# By default we simply use the C compiler to build assembly code. AC_REQUIRE([AC_PROG_CC]) -: ${AS='$CC'} -# Set ASFLAGS if not already set. -: ${ASFLAGS='$(CFLAGS)'} +: ${CCAS='$CC'} +# Set CCASFLAGS if not already set. +: ${CCASFLAGS='$(CFLAGS)'} # Set ASCOMPILE if not already set. -if test $AS = '$'CC; then -: ${ASCOMPILE='$(AS) $(AM_ASFLAGS) $(ASFLAGS) -c'} +if test $CCAS = '$'CC; then +: ${CCASCOMPILE='$(CCAS) $(AM_ASFLAGS) $(CCASFLAGS) -c'} else -: ${ASCOMPILE='$(AS) $(AM_ASFLAGS) $(ASFLAGS)'} +: ${CCASCOMPILE='$(CCAS) $(AM_ASFLAGS) $(CCASFLAGS)'} fi -AC_SUBST(AS) -AC_SUBST(ASFLAGS) -AC_SUBST(ASCOMPILE)]) +AC_SUBST(CCAS) +AC_SUBST(CCASFLAGS) +AC_SUBST(CCASCOMPILE)]) |