summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-10-20 09:14:04 +1100
committerDamien Miller <djm@mindrot.org>2000-10-20 09:14:04 +1100
commit81fa28abaab971695cb4a855e9363bc766613d18 (patch)
tree3a42153693bf5d8d80e99a0cbf1a7fc47a1267c1
parentac0966548ed0d313c8b7c149272cd0badb303f70 (diff)
- (djm) Don't define _REENTRANT for SNI/Reliant Unix
-rw-r--r--ChangeLog3
-rw-r--r--defines.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 718a7fece..614f3d93d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120001020
2 - (djm) Don't define _REENTRANT for SNI/Reliant Unix
3
120001018 420001018
2 - (stevesk) Add initial support for setproctitle(). Current 5 - (stevesk) Add initial support for setproctitle(). Current
3 support is for the HP-UX pstat(PSTAT_SETCMD, ...) method. 6 support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
diff --git a/defines.h b/defines.h
index 79d98e2e0..3626bd90d 100644
--- a/defines.h
+++ b/defines.h
@@ -2,7 +2,7 @@
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* Some platforms need this for the _r() functions */ 4/* Some platforms need this for the _r() functions */
5#ifndef _REENTRANT 5#if !defined(_REENTRANT) && !defined(SNI)
6# define _REENTRANT 1 6# define _REENTRANT 1
7#endif 7#endif
8 8