[PATCH evemu v3 1/1] configure.ac: add '--disable-python-bindings' option

Peter Seiderer ps.report at gmx.net
Tue Aug 12 12:29:50 PDT 2014


Needed for target systems without python support.

Signed-off-by: Peter Seiderer <ps.report at gmx.net>

---
Changes v2 -> v3:
  - use yes/no instead of true/false
  - additional disable python test runner code

Changes v1 -> v2:
  - use BUILD_PYTHON_BINDINGS conditional (as suggested by Peter Hutterer)
---
 configure.ac             | 10 ++++++++++
 python/Makefile.am       |  2 ++
 python/evemu/Makefile.am |  3 +++
 3 files changed, 15 insertions(+)

diff --git a/configure.ac b/configure.ac
index 19e1828..cf38ecb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -45,6 +45,16 @@ if test "x$XMLTO" = "x" || test "x$ASCIIDOC" = "x"; then
 	AC_MSG_WARN([xmlto or asciidoc not found - cannot create man pages without it])
 fi
 
+AC_ARG_ENABLE([python-bindings],
+	AS_HELP_STRING([--disable-python-bindings], [disable generation of python bindings]),
+	[case "${enableval}" in
+	  yes) python_bindings=yes ;;
+	  no)  python_bindings=no ;;
+	  *) AC_MSG_ERROR([bad value ${enableval} for --disable-python-bindings]) ;;
+	esac],[python_bindings=yes])
+
+AM_CONDITIONAL(BUILD_PYTHON_BINDINGS, [test "x$python_bindings" = "xyes"])
+
 AC_ARG_ENABLE([tests],
 	AS_HELP_STRING([--disable-tests], [disable building of tests]),
 	[case "${enableval}" in
diff --git a/python/Makefile.am b/python/Makefile.am
index a31ee98..8857619 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -18,6 +18,7 @@
 
 SUBDIRS = evemu
 
+if BUILD_PYTHON_BINDINGS
 nobase_python_PYTHON = \
 	$(wildcard evemu/*.py)
 
@@ -37,6 +38,7 @@ evemu-test-runner: evemu-test-runner.in Makefile
 
 BUILT_SOURCES = evemu-test-runner
 endif
+endif
 
 EXTRA_DIST =  evemu-test-runner.in $(wildcard evemu/test*)
 CLEANFILES = $(BUILT_SOURCES)
diff --git a/python/evemu/Makefile.am b/python/evemu/Makefile.am
index 17b1462..e252635 100644
--- a/python/evemu/Makefile.am
+++ b/python/evemu/Makefile.am
@@ -1,6 +1,9 @@
+if BUILD_PYTHON_BINDINGS
 event_names.py: Makefile make-event-names.py
 	$(PYTHON) $(srcdir)/make-event-names.py > $@
 
 BUILT_SOURCES = event_names.py
+endif
+
 CLEANFILES = event_names.py event_names.pyc
 EXTRA_DIST = make-event-names.py
-- 
1.8.1.4



More information about the Input-tools mailing list