diff mbox series

[libgpiod,1/2] build: drop unused python-related bits from configure.ac

Message ID 20230116151646.338282-1-brgl@bgdev.pl
State New
Headers show
Series [libgpiod,1/2] build: drop unused python-related bits from configure.ac | expand

Commit Message

Bartosz Golaszewski Jan. 16, 2023, 3:16 p.m. UTC
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

We no longer use autotools to build python bindings. We should still
check the interpreter but let's not set any automake variables.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
 configure.ac | 15 ---------------
 1 file changed, 15 deletions(-)
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 599c598..d305506 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,11 +40,6 @@  m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 m4_pattern_forbid([^AX_],
 	[Unexpanded AX_ macro found. Please install GNU autoconf-archive.])
 
-AC_ARG_VAR([PYTHON_CPPFLAGS],
-	[Compiler flags to find Python headers [default: auto-detect]])
-AC_ARG_VAR([PYTHON_LIBS],
-	[Libraries to link into Python extensions [default: auto-detect]])
-
 AC_CONFIG_SRCDIR([lib])
 AC_CONFIG_HEADERS([config.h])
 
@@ -229,16 +224,6 @@  then
 	then
 		AC_MSG_ERROR([python3-config not found - needed for python bindings])
 	fi
-
-	if test -z "$PYTHON_CPPFLAGS"
-	then
-		AC_SUBST(PYTHON_CPPFLAGS, [`$PYTHON-config --includes`])
-	fi
-
-	if test -z "$PYTHON_LIBS"
-	then
-		AC_SUBST(PYTHON_LIBS, [`$PYTHON-config --libs`])
-	fi
 fi
 
 AC_ARG_ENABLE([bindings-rust],