summaryrefslogtreecommitdiff
path: root/security/gpgme/files/patch-configure
blob: c459227ace77fce3298fc68a44e6488479ad28e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
The configure script automatically detects all versions of Python and builds
the bindings for each found version. This is a problem when building outside
of a clean environment since the ports system can only build a package for one
Python flavor at a time. The found versions of Python are overridden by
environment variables set in the port Makefile.

--- configure.orig	2023-08-21 07:46:33 UTC
+++ configure
@@ -31342,6 +31342,10 @@ printf "%s\n" "$as_me: WARNING:
 
 	fi
 
+	# Override the automatically found Pythons with the selected version from ports.
+	PYTHONS=$BSD_PYTHON
+	PYTHON_VERSIONS=$BSD_PYTHON_VERSION
+	
 	# Recover some values lost in the second attempt to find Python.
 	PYTHON="$(echo $PYTHONS | cut -d ' ' -f 1)"
 	PYTHON_VERSION="$(echo $PYTHON_VERSIONS | cut -d ' ' -f 1)"