summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2007-01-06 17:31:55 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2007-01-06 17:31:55 +0000
commit8ffd2c737b116f21998061d5c5da1149f1540b18 (patch)
tree889a85a2c4c93d2f87bd6592b9acf877b07560b9 /m4
parentd3ef731119e486081d9581670c7e34c94b94879d (diff)
downloadxine-lib-8ffd2c737b116f21998061d5c5da1149f1540b18.tar.gz
xine-lib-8ffd2c737b116f21998061d5c5da1149f1540b18.tar.bz2
Use AM_PROG_AS instead of our AM_PROG_AS_MOD.
CVS patchset: 8489 CVS date: 2007/01/06 17:31:55
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)])