[lttng-dev] [PATCH lttng-tools 4/5] Fix: configure: forbid Python bindings if shared libraries are disabled

Mathieu Desnoyers mathieu.desnoyers at efficios.com
Thu May 12 20:08:46 UTC 2016


Fixes: #977

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers at efficios.com>
---
 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index 5f5f9e5..6a079bc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -415,6 +415,7 @@ AM_CONDITIONAL([PYTHON_BINDING], [test "x${enable_python_binding:-yes}" = xyes])
 
 if test "x${enable_python_binding:-yes}" = xyes; then
   AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
+  AS_IF([test x$enable_shared = xno], [ AC_MSG_ERROR([Python bindings require shared libraries.]) ])
   AM_PATH_PYTHON([3.0])
 
   AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
-- 
2.1.4



More information about the lttng-dev mailing list