summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/as.m421
1 files changed, 0 insertions, 21 deletions
diff --git a/m4/as.m4 b/m4/as.m4
deleted file mode 100644
index 96a44e239..000000000
--- a/m4/as.m4
+++ /dev/null
@@ -1,21 +0,0 @@
-dnl Extracted from automake-1.5 and sligtly modified for Xine usage.
-dnl Daniel Caujolle-Bert <segfault@club-internet.fr>
-
-# Figure out how to run the assembler.
-
-# AM_PROG_AS_MOD
-AC_DEFUN([AM_PROG_AS_MOD],
-[# By default we simply use the C compiler to build assembly code.
-AC_REQUIRE([AC_PROG_CC])
-: ${CCAS='$(CC)'}
-# Set CCASFLAGS if not already set.
-: ${CCASFLAGS='$(CFLAGS)'}
-# Set ASCOMPILE if not already set.
-if test $CCAS = '$'CC; then
-: ${CCASCOMPILE='$(LIBTOOL) --mode=compile $(CCAS) $(AM_ASFLAGS) $(CCASFLAGS) -c'}
-else
-: ${CCASCOMPILE='$(LIBTOOL) --mode=compile $(CCAS) $(AM_ASFLAGS) $(CCASFLAGS)'}
-fi
-AC_SUBST(CCAS)
-AC_SUBST(CCASFLAGS)
-AC_SUBST(CCASCOMPILE)])