diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2013-11-15 17:17:37 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2013-11-19 15:15:41 +0100 |
commit | 93df06ddccf9d2be8de2efb2c06815b088762bca (patch) | |
tree | 923018244aeed7a24714b267d8a0cd54744d7d22 | |
parent | 774000911a9759e958bd6d1e6d4186dfb5351fff (diff) |
build-sys: Re-enable building of python bindings by default
Commit daa4ece tried to disable building of python bindings on Windows by
default, but in doing so, it also disabled building of python bindings by
default when we are building neither for Windows nor for gtk3.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 26c1eb9..8e59400 100644 --- a/configure.ac +++ b/configure.ac @@ -580,7 +580,7 @@ AC_ARG_WITH([python], *) AC_MSG_ERROR([bad value $withval for python option]) ;; esac], [AS_IF([test "$with_gtk" = "3.0" || test "x$os_win32" = "xyes"], - [with_python=no])] + [with_python=no],[with_python=yes])] ) if test "x$with_python" = "xyes"; then |