mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-04 00:47:43 +00:00
evemu: build python2 binding only if target python2 is enabled
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
32dd4f4db1
commit
6c189442f1
@ -0,0 +1,46 @@
|
|||||||
|
From 3169736eab530cdbd5d123e7df10f51c44090e0b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Seiderer <ps.report@gmx.net>
|
||||||
|
Date: Sun, 27 Apr 2014 13:23:41 +0200
|
||||||
|
Subject: [PATCH] configure.ac: add '--disable-python-bindings' option
|
||||||
|
|
||||||
|
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||||
|
---
|
||||||
|
Makefile.am | 2 +-
|
||||||
|
configure.ac | 11 +++++++++++
|
||||||
|
2 files changed, 12 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index a83b35f..fb87c76 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-SUBDIRS = src tools python $(SUBDIR_TESTS)
|
||||||
|
+SUBDIRS = src tools $(SUBDIR_PYTHON_BINDINGS) $(SUBDIR_TESTS)
|
||||||
|
|
||||||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
pkgconfig_DATA = evemu.pc
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 4e0c3b8..ab1b553 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -52,6 +52,17 @@ AS_IF([test "x$enable_tests" != "xno"], [
|
||||||
|
|
||||||
|
AC_SUBST([SUBDIR_TESTS])
|
||||||
|
|
||||||
|
+AC_ARG_ENABLE([python-bindings],
|
||||||
|
+ AS_HELP_STRING([--disable-python-bindings],
|
||||||
|
+ [Disable generation of python bindings]))
|
||||||
|
+
|
||||||
|
+AS_IF([test "x$enable_python_bindings" != "xno"], [
|
||||||
|
+ SUBDIR_PYTHON_BINDINGS=python
|
||||||
|
+])
|
||||||
|
+
|
||||||
|
+AC_SUBST([SUBDIR_PYTHON_BINDINGS])
|
||||||
|
+
|
||||||
|
+
|
||||||
|
AC_SUBST(AM_CFLAGS,
|
||||||
|
"-Wall -Wextra -pedantic")
|
||||||
|
|
||||||
|
--
|
||||||
|
1.8.1.4
|
||||||
|
|
@ -27,6 +27,15 @@ EVEMU_DEPENDENCIES = host-pkgconf libevdev
|
|||||||
# Needs Python for header file generation
|
# Needs Python for header file generation
|
||||||
EVEMU_DEPENDENCIES += $(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python)
|
EVEMU_DEPENDENCIES += $(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python)
|
||||||
|
|
||||||
|
# Check for target python (python3 bindings disabled because
|
||||||
|
# of build/byte-compile problems)
|
||||||
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
||||||
|
EVEMU_CONF_OPT += --enable-python-bindings
|
||||||
|
EVEMU_DEPENDENCIES += python
|
||||||
|
else
|
||||||
|
EVEMU_CONF_OPT += --disable-python-bindings
|
||||||
|
endif
|
||||||
|
|
||||||
# package source code coming from git, so it doesn't have generated
|
# package source code coming from git, so it doesn't have generated
|
||||||
# configure and Makefile.in
|
# configure and Makefile.in
|
||||||
EVEMU_AUTORECONF = YES
|
EVEMU_AUTORECONF = YES
|
||||||
|
Loading…
x
Reference in New Issue
Block a user