summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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