diff options
author | NIIBE Yutaka <[email protected]> | 2021-05-27 04:31:12 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2021-05-27 04:32:08 +0000 |
commit | be81941e1aca75d9e1d0dd2e2b234ae6df53c05a (patch) | |
tree | b6eb2dc3dc0b5768044da874b1229b987cee9eb9 | |
parent | gpg: Partial fix for Unicode problem in output files. (diff) | |
download | gnupg-be81941e1aca75d9e1d0dd2e2b234ae6df53c05a.tar.gz gnupg-be81941e1aca75d9e1d0dd2e2b234ae6df53c05a.zip |
build: _DARWIN_C_SOURCE should be 1.
* configure.ac (*-apple-darwin*): Set _DARWIN_C_SOURCE 1.
--
GnuPG-bug-id: 5440
Reported-by: Jay Freeman
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a3207dc9f..6d128837e 100644 --- a/configure.ac +++ b/configure.ac @@ -773,7 +773,7 @@ case "${host}" in build_wks_tools=no ;; *-apple-darwin*) - AC_DEFINE(_DARWIN_C_SOURCE, 900000L, + AC_DEFINE(_DARWIN_C_SOURCE, 1, Expose all libc features (__DARWIN_C_FULL).) ;; *-*-netbsd*) |