aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-05-19 03:57:11 +0000
committerRob Austein <sra@hactrn.net>2011-05-19 03:57:11 +0000
commitc1c0cbe434232f31c36c6c90f3704b931b7c7185 (patch)
tree8d455c79ed2d6e3085d82807d1db77c1744a4580
parent4fed8aad3862d0d64066fe9a0dbee96c1d03f098 (diff)
Allow pywrap to be disabled, since -Bsymbolic may render it
unnecessary. svn path=/configure; revision=3821
-rwxr-xr-xconfigure3
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 27f74dba..cd384297 100755
--- a/configure
+++ b/configure
@@ -4246,7 +4246,8 @@ $as_echo "$as_me: WARNING: pywrap not needed (but I'll try to build it anyway)"
no) build_pywrap=no
if test $need_pywrap = yes
then
- as_fn_error $? "This platform appears to require pywrap" "$LINENO" 5
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: This platform appears to require pywrap (but I'll try to build without it anyway)" >&5
+$as_echo "$as_me: WARNING: This platform appears to require pywrap (but I'll try to build without it anyway)" >&2;}
fi
;;
auto) build_pywrap=$need_pywrap
diff --git a/configure.ac b/configure.ac
index 2158c102..6f9463ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -287,7 +287,7 @@ case $enable_pywrap in
no) build_pywrap=no
if test $need_pywrap = yes
then
- AC_MSG_ERROR([This platform appears to require pywrap])
+ AC_MSG_WARN([This platform appears to require pywrap (but I'll try to build without it anyway)])
fi
;;
auto) build_pywrap=$need_pywrap