summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-23 17:31:43 +0100
committerIan Lynagh <igloo@earth.li>2011-04-23 17:31:43 +0100
commit4c452d125983172e55075c457b745289afd72d0e (patch)
tree26211ba0cf0db2ca741a7e5c694c69efc18e4ecc /aclocal.m4
parent19e6c56f76a4069f8b4fe86d2b631dceb7b5e6c5 (diff)
downloadhaskell-4c452d125983172e55075c457b745289afd72d0e.tar.gz
Remove unused ArSupportsInput makefile var
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m426
1 files changed, 0 insertions, 26 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 4b73109942..c7002b171f 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -646,32 +646,6 @@ fi
])# FP_PROG_AR_NEEDS_RANLIB
-# FP_PROG_AR_SUPPORTS_INPUT
-# -------------------------
-# Sets the output variable ArSupportsInput to "-input" or "", depending on
-# whether ar supports -input flag is supported or not.
-AC_DEFUN([FP_PROG_AR_SUPPORTS_INPUT],
-[AC_REQUIRE([FP_PROG_AR_IS_GNU])
-AC_REQUIRE([FP_PROG_AR_ARGS])
-AC_CACHE_CHECK([whether $fp_prog_ar_raw supports -input], [fp_cv_prog_ar_supports_input],
-[fp_cv_prog_ar_supports_input=no
-if test $fp_prog_ar_is_gnu = no; then
- rm -f conftest*
- touch conftest.lst
- if FP_EVAL_STDERR(["$fp_prog_ar_raw" $fp_prog_ar_args conftest.a -input conftest.lst]) >/dev/null; then
- test -s conftest.err || fp_cv_prog_ar_supports_input=yes
- fi
- rm -f conftest*
-fi])
-if test $fp_cv_prog_ar_supports_input = yes; then
- ArSupportsInput="-input"
-else
- ArSupportsInput=""
-fi
-AC_SUBST([ArSupportsInput])
-])# FP_PROG_AR_SUPPORTS_INPUT
-
-
dnl
dnl AC_SHEBANG_PERL - can we she-bang perl?
dnl