diff options
author | Justus Winter <[email protected]> | 2016-05-18 11:17:59 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-05-18 13:37:38 +0000 |
commit | 2c3a5d93e78cfca22785e51c5a65184a47da4bff (patch) | |
tree | 168535e4e8a12622e38252e13d0be29665ee642b /configure.ac | |
parent | Fix typo in compatibility declaration (diff) | |
download | gpgme-2c3a5d93e78cfca22785e51c5a65184a47da4bff.tar.gz gpgme-2c3a5d93e78cfca22785e51c5a65184a47da4bff.zip |
python: Various fixes.
* configure.ac: Fix SWIG detection, bump required Python version.
* lang/python/Makefile.am: Portability fix.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 36f4f946..1472132a 100644 --- a/configure.ac +++ b/configure.ac @@ -345,16 +345,15 @@ if test "$found" = "1"; then AX_PKG_SWIG if test -z "$SWIG"; then if test "$explicit_languages" = "1"; then - die=yes - AC_MSG_NOTICE([[ + AC_MSG_ERROR([[ *** *** You need SWIG to build the Python bindings. ***]]) else - enabled_languages=$(echo $enabled_languages | sed 's/qt//') + enabled_languages=$(echo $enabled_languages | sed 's/python//') fi else - AM_PATH_PYTHON([3.2]) + AM_PATH_PYTHON([3.3]) AX_SWIG_PYTHON fi fi |