summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authordrgler <daniel.kruegler@gmail.com>2020-10-01 21:20:33 +0200
committerDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2020-10-03 16:01:53 +0200
commit99501e817cbc4f11cc045dbaa7a81854d4349335 (patch)
tree29efc6ee0f47bc7620e160c28e1734db2d307442 /crypto
parent993c437dbd14579cbbd55a2742274f10fc7c6e21 (diff)
Ensure that _GNU_SOURCE is defined for NI_MAXHOST and NI_MAXSERV
Since glibc 2.8, these defines like `NI_MAXHOST` are exposed only if suitable feature test macros are defined, namely: _GNU_SOURCE, _DEFAULT_SOURCE (since glibc 2.19), or _BSD_SOURCE or _SVID_SOURCE (before glibc 2.19), see GETNAMEINFO(3). CLA: trivial Fixes #13049 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/13054)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bio/b_addr.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bio/b_addr.c b/crypto/bio/b_addr.c
index 4652003149..b7469bc720 100644
--- a/crypto/bio/b_addr.c
+++ b/crypto/bio/b_addr.c
@@ -7,6 +7,10 @@
* https://www.openssl.org/source/license.html
*/
+#ifndef _GNU_SOURCE
+# define _GNU_SOURCE
+#endif
+
#include <assert.h>
#include <string.h>