summaryrefslogtreecommitdiff
path: root/m4/arch.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/arch.m4')
-rw-r--r--m4/arch.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/m4/arch.m4 b/m4/arch.m4
deleted file mode 100644
index f17b4278e..000000000
--- a/m4/arch.m4
+++ /dev/null
@@ -1,13 +0,0 @@
-
-dnl SET_ARCH(ARCHNAME, PATTERN)
-dnl
-dnl Define ARCH_<archname> condition if the pattern match with the current
-dnl architecture
-dnl
-AC_DEFUN([SET_ARCH], [
- cpu_$1=false
- case "$host" in
- $2) cpu_$1=true ;;
- esac
- AM_CONDITIONAL(AS_TR_CPP(ARCH_$1), [test "x$cpu_$1" = xtrue])
-])