Use POSIX macros for linux
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#if defined(linux) || defined(CSRG_BASED) || defined(sun)
|
||||
#if defined(__linux__) || defined(CSRG_BASED) || defined(sun)
|
||||
#include <iostream>
|
||||
#else
|
||||
#include <iostream.h>
|
||||
@@ -50,7 +50,7 @@
|
||||
#endif
|
||||
#include <errno.h>
|
||||
|
||||
#if defined(sun) || defined(_AIX) || defined(linux) || defined(CSRG_BASED)
|
||||
#if defined(sun) || defined(_AIX) || defined(__linux__) || defined(CSRG_BASED)
|
||||
#define UID_NO_CHANGE ((uid_t) -1)
|
||||
#define GID_NO_CHANGE ((gid_t) -1)
|
||||
#endif
|
||||
@@ -73,7 +73,7 @@ UnixEnvironment::UnixEnvironment()
|
||||
manpath = "/usr/share/man:/usr/lpp/info";
|
||||
#elif defined(hpux)
|
||||
manpath = "/usr/man:/usr/contrib/man:/usr/local/man";
|
||||
#elif defined(linux)
|
||||
#elif defined(__linux__)
|
||||
manpath = "/usr/share/man/%L:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man";
|
||||
#elif defined(__OpenBSD__)
|
||||
manpath = "/usr/share/man:/usr/X11R6/man:/usr/local/man:/usr/ports/infrastructure/man";
|
||||
|
||||
Reference in New Issue
Block a user