summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorXavier de Gaye <xdegaye@users.sourceforge.net>2016-12-21 12:46:36 +0100
committerXavier de Gaye <xdegaye@users.sourceforge.net>2016-12-21 12:46:36 +0100
commitfa2e23427743f2738a8fdac44b235dd26f61286b (patch)
treeca0e11ed4f9e2c7a12c8f97d4fe636ee3606a141 /Misc
parent97e79d67f59a41ac88e8555f8186f0bffe829f8a (diff)
downloadcpython-fa2e23427743f2738a8fdac44b235dd26f61286b.tar.gz
Issue #28538: Fix the compilation error that occurs because if_nameindex() is
available on Android API level 24, but the if_nameindex structure is not defined.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f3d3fd19ec..0f7b9f7a41 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -82,6 +82,10 @@ Tests
Build
-----
+- Issue #28538: Fix the compilation error that occurs because if_nameindex() is
+ available on Android API level 24, but the if_nameindex structure is not
+ defined.
+
- Issue #20211: Do not add the directory for installing C header files and the
directory for installing object code libraries to the cross compilation
search paths. Original patch by Thomas Petazzoni.