summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-12-06 21:52:01 +0000
committerIan Lynagh <igloo@earth.li>2010-12-06 21:52:01 +0000
commitc0eb9d997653da4357873829990cc338475bca39 (patch)
treedc70c3099f705fef83c01eeeb4c18e1335f0ee5b /aclocal.m4
parentfe83e0acaf0038927b5c1969efb6d4ed9a49bc80 (diff)
downloadhaskell-c0eb9d997653da4357873829990cc338475bca39.tar.gz
Add a configure message
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m42
1 files changed, 2 insertions, 0 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 3e673f92b8..4701bc9354 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -9,6 +9,7 @@
# Set the C and LD flags for a given platform
AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS],
[
+ AC_MSG_CHECKING([Setting up $2 and $3])
case $$1 in
i386-apple-darwin)
# By default, gcc on OS X will generate SSE
@@ -40,6 +41,7 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS],
$2="$$2 -fno-stack-protector"
fi
rm -f conftest.c conftest.o
+ AC_MSG_RESULT([done])
])