summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorDan Amelang <dan@amelang.net>2006-12-30 21:14:14 -0800
committerDan Amelang <dan@amelang.net>2006-12-30 21:14:14 -0800
commit26b06516a77fbbe88f2eb081e2763c1434959137 (patch)
tree0b272a304f7db74297c6b24346e929cd503f17d2 /acinclude.m4
parenteafd6e454a85c807f2addf7768046fea58aea3f9 (diff)
downloadcairo-26b06516a77fbbe88f2eb081e2763c1434959137.tar.gz
Use the "-" option (instead of "-a") when calling "strings"
This is needed to fix the AX_C_FLOAT_WORDS_BIGENDIAN macro on Mac OS X 10.2, which was brought up here: https://bugs.freedesktop.org/show_bug.cgi?id=9124
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index a8c4743b8..3cfe41093 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -84,10 +84,10 @@ double d = 909042349670368103374704789055050114762116927356156320147971208440534
]])], [
-if strings -a conftest.$ac_objext | grep noonsees >/dev/null ; then
+if strings - conftest.$ac_objext | grep noonsees >/dev/null ; then
ax_cv_c_float_words_bigendian=yes
fi
-if strings -a conftest.$ac_objext | grep seesnoon >/dev/null ; then
+if strings - conftest.$ac_objext | grep seesnoon >/dev/null ; then
if test "$ax_cv_c_float_words_bigendian" = unknown; then
ax_cv_c_float_words_bigendian=no
else