summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-08-21 07:41:08 +0200
committerGitHub <noreply@github.com>2019-08-21 07:41:08 +0200
commitea0c67bb9ccf7b22e086f33bdb89f5aa12fc5a4f (patch)
tree2afd4148deb5b0071776d62cd7c6be69169a04ab
parent95f7d48b61fdc441730b92b0938a6e8fb467fcd0 (diff)
parente7e38f991ff56b3c628c1cb0b891be8a4c125b1d (diff)
downloadATCD-ea0c67bb9ccf7b22e086f33bdb89f5aa12fc5a4f.tar.gz
Merge pull request #939 from saininav/master
config-linux-common.h: fix glibc build failure
-rw-r--r--ACE/ace/config-linux-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/config-linux-common.h b/ACE/ace/config-linux-common.h
index b9d112602ad..c0fb656c321 100644
--- a/ACE/ace/config-linux-common.h
+++ b/ACE/ace/config-linux-common.h
@@ -173,7 +173,7 @@
// Starting with FC9 rawhide this file is not available anymore but
// this define is set
-#if defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1
+#if !defined(_XOPEN_STREAMS) || (defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1)
# define ACE_LACKS_STROPTS_H
# define ACE_LACKS_STRRECVFD
#endif