diff options
author | Rob Austein <sra@hactrn.net> | 2011-05-19 03:57:11 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-05-19 03:57:11 +0000 |
commit | c1c0cbe434232f31c36c6c90f3704b931b7c7185 (patch) | |
tree | 8d455c79ed2d6e3085d82807d1db77c1744a4580 | |
parent | 4fed8aad3862d0d64066fe9a0dbee96c1d03f098 (diff) |
Allow pywrap to be disabled, since -Bsymbolic may render it
unnecessary.
svn path=/configure; revision=3821
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -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 |