Issue #11258: Speed up ctypes.util.find_library() under Linux by a factor
of 5 to 10. Initial patch by Jonas H.
diff --git a/Misc/ACKS b/Misc/ACKS
index 33d90ff..c3a227a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -338,6 +338,7 @@
Michael Guravage
Lars Gustäbel
Thomas Güttler
+Jonas H.
Barry Haddow
Paul ten Hagen
Rasmus Hahn
diff --git a/Misc/NEWS b/Misc/NEWS
index 37b48d1..8aac765 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,9 @@
Library
-------
+- Issue #11258: Speed up ctypes.util.find_library() under Linux by a factor
+ of 5 to 10. Initial patch by Jonas H.
+
- Issue #11382: Trivial system calls, such as dup() or pipe(), needn't
release the GIL. Patch by Charles-François Natali.