-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[python3] add features for readline and extensions (#41183)
- Loading branch information
Showing
9 changed files
with
125 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index ef899b881d..9ed1836608 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -6712,7 +6712,7 @@ done | ||
|
||
# check if OpenSSL libraries work as expected | ||
WITH_SAVE_ENV([ | ||
- LIBS="$LIBS $OPENSSL_LIBS" | ||
+ LIBS="$OPENSSL_LIBS $LIBS" | ||
CFLAGS="$CFLAGS $OPENSSL_INCLUDES" | ||
LDFLAGS="$LDFLAGS $OPENSSL_LDFLAGS $OPENSSL_LDFLAGS_RPATH" | ||
|
||
@@ -6737,7 +6737,7 @@ WITH_SAVE_ENV([ | ||
]) | ||
|
||
WITH_SAVE_ENV([ | ||
- LIBS="$LIBS $LIBCRYPTO_LIBS" | ||
+ LIBS="$LIBCRYPTO_LIBS $LIBS" | ||
CFLAGS="$CFLAGS $OPENSSL_INCLUDES" | ||
LDFLAGS="$LDFLAGS $OPENSSL_LDFLAGS $OPENSSL_LDFLAGS_RPATH" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "vcpkg-get-python", | ||
"version-date": "2024-06-08", | ||
"version-date": "2024-06-22", | ||
"license": "MIT", | ||
"supports": "native" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters