summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2014-02-05 17:54:26 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2014-02-05 17:54:26 -0500
commitdf09893c4bf74966554e6ee4ee5ff115a48850fd (patch)
tree62e72d5c7d837e7a81e99d4b1bbe181f10107372
parent90698d8d0ed087a468df62e181066795a0d77feb (diff)
downloadgupnp-igd-df09893c4bf74966554e6ee4ee5ff115a48850fd.tar.gz
Make pygtk 2 python bindings disabled by default
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3f0cd84..4709b59 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,13 +36,13 @@ if test "x$found_introspection" = "xyes"; then
fi
AC_ARG_ENABLE([python],
- AC_HELP_STRING([--disable-python], [Disable Python bindings]),
+ AC_HELP_STRING([--enable-python], [Enable pre-introspection Python bindings]),
[case "${enableval}" in
yes) WANT_PYTHON=yes ;;
no) WANT_PYTHON=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-python) ;;
esac],
- WANT_PYTHON=yes)
+ WANT_PYTHON=no)
if test "x$WANT_PYTHON" = "xyes"; then
AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])