diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-09-18 17:36:26 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-09-18 17:36:26 +1000 |
commit | d6ba25ac18986d71311e854b42793e5b6037c180 (patch) | |
tree | 27c87bcfe39bafa542559602077f5cb26d1d206d /build_posix/configure.ac.in | |
parent | b92ffb004539f0143ce107651e15c4243db94cc3 (diff) | |
download | mongo-d6ba25ac18986d71311e854b42793e5b6037c180.tar.gz |
Add a comment to the configure check for Python support in SWIG.
Diffstat (limited to 'build_posix/configure.ac.in')
-rw-r--r-- | build_posix/configure.ac.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build_posix/configure.ac.in b/build_posix/configure.ac.in index 8443bd54fc7..77d90e00241 100644 --- a/build_posix/configure.ac.in +++ b/build_posix/configure.ac.in @@ -55,6 +55,8 @@ if test "$wt_cv_enable_python" = "yes"; then AM_PATH_PYTHON([2.6]) AX_PKG_SWIG(2.0.4, [], [ AC_MSG_ERROR([SWIG is required to build Python support.]) ]) + + # Check that SWIG supports Python. touch swigtest.i $SWIG -python -module swigtest swigtest.i > /dev/null 2>&1 || \ AC_MSG_ERROR([$SWIG does not include Python support.]) |