diff options
Diffstat (limited to 'package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch')
-rw-r--r-- | package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch b/package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch index 76a553b505..78bb5d9b55 100644 --- a/package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch +++ b/package/python3/0005-Add-infrastructure-to-disable-the-build-of-certain-e.patch @@ -1,4 +1,4 @@ -From 3a9f4aa255909ed152883eee787313efd20dbc58 Mon Sep 17 00:00:00 2001 +From cbf8556ad057a402629a5be93dc77c906f3a86ab Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Wed, 23 Dec 2015 11:31:08 +0100 Subject: [PATCH] Add infrastructure to disable the build of certain extensions @@ -42,7 +42,7 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in -index 272f312..9420860 100644 +index 6a7d974..d70375a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -182,6 +182,8 @@ FILEMODE= 644 @@ -54,7 +54,7 @@ index 272f312..9420860 100644 # Subdirectories with code SRCDIRS= @SRCDIRS@ -@@ -600,6 +602,7 @@ sharedmods: $(BUILDPYTHON) pybuilddir.txt +@@ -607,6 +609,7 @@ sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o esac; \ $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ _TCLTK_INCLUDES='$(TCLTK_INCLUDES)' _TCLTK_LIBS='$(TCLTK_LIBS)' \ @@ -62,7 +62,7 @@ index 272f312..9420860 100644 $(PYTHON_FOR_BUILD) $(srcdir)/setup.py $$quiet build # Build static library -@@ -1425,7 +1428,8 @@ libainstall: all python-config +@@ -1451,7 +1454,8 @@ libainstall: all python-config # Install the dynamically loadable modules # This goes into $(exec_prefix) sharedinstall: sharedmods @@ -73,10 +73,10 @@ index 272f312..9420860 100644 --install-scripts=$(BINDIR) \ --install-platlib=$(DESTSHARED) \ diff --git a/configure.ac b/configure.ac -index c492594..bfb599e 100644 +index f57f2eb..c43ff9f 100644 --- a/configure.ac +++ b/configure.ac -@@ -2588,6 +2588,8 @@ LIBS="$withval $LIBS" +@@ -2670,6 +2670,8 @@ LIBS="$withval $LIBS" PKG_PROG_PKG_CONFIG @@ -86,7 +86,7 @@ index c492594..bfb599e 100644 AC_MSG_CHECKING(for --with-system-expat) AC_ARG_WITH(system_expat, diff --git a/setup.py b/setup.py -index dbd2a3c..1ebfa50 100644 +index b67d913..149911c 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,10 @@ host_platform = get_platform() @@ -102,5 +102,5 @@ index dbd2a3c..1ebfa50 100644 def add_dir_to_list(dirlist, dir): """Add the directory 'dir' to the list 'dirlist' (after any relative -- -2.6.4 +2.7.4 |