libstdc++: Define _GNU_SOURCE for secure_getenv on Cygwin [PR104217]
authorJonathan Wakely <jwakely@redhat.com>
Tue, 25 Jan 2022 10:11:36 +0000 (10:11 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 25 Jan 2022 21:05:16 +0000 (21:05 +0000)
For GNU/Linux G++ defines _GNU_SOURCE automatically, but not for Cygwin.
This means secure_getenv is not declared by Cygwin's <stdlib.h>, even
though autoconf detected it is present in the library. Define it in the
source files that want to use secure_getenv.

libstdc++-v3/ChangeLog:

PR libstdc++/104217
* src/c++17/fs_ops.cc (_GNU_SOURCE): Define.
* src/filesystem/dir.cc (_GNU_SOURCE): Define.
* src/filesystem/ops.cc (_GNU_SOURCE): Define.

libstdc++-v3/src/c++17/fs_ops.cc
libstdc++-v3/src/filesystem/dir.cc
libstdc++-v3/src/filesystem/ops.cc

index 1d3693a..321944d 100644 (file)
 # define NEED_DO_COPY_FILE
 # define NEED_DO_SPACE
 #endif
+#ifndef _GNU_SOURCE
+// Cygwin needs this for secure_getenv
+# define _GNU_SOURCE 1
+#endif
 
 #include <bits/largefile-config.h>
 #include <filesystem>
index f1bf96a..d5b11f2 100644 (file)
 #ifndef _GLIBCXX_USE_CXX11_ABI
 # define _GLIBCXX_USE_CXX11_ABI 1
 #endif
+#ifndef _GNU_SOURCE
+// Cygwin needs this for secure_getenv
+# define _GNU_SOURCE 1
+#endif
 
 #include <bits/largefile-config.h>
 #include <experimental/filesystem>
index 324c6af..cd98caf 100644 (file)
 # define NEED_DO_COPY_FILE
 # define NEED_DO_SPACE
 #endif
+#ifndef _GNU_SOURCE
+// Cygwin needs this for secure_getenv
+# define _GNU_SOURCE 1
+#endif
 
 #include <bits/largefile-config.h>
 #include <experimental/filesystem>