NetWare related changes

This commit is contained in:
Venkat Raghavan S 2002-05-31 04:49:45 +00:00
parent c4fd805ce4
commit 575e3682f5
6 changed files with 307 additions and 1 deletions

View file

@ -61,6 +61,12 @@
#define PHP_DIR_SEPARATOR '/'
#endif
#ifdef NETWARE
#define PHP_UNAME "NetWare" /* For php_get_uname() function */
#define PHP_OS PHP_UNAME /* This is obtained using 'uname' on Unix and assigned in the case of Windows;
we'll do it this way atleast for now */
#endif
#include "php_regex.h"
#if HAVE_ASSERT_H
@ -179,6 +185,9 @@ char *strerror(int);
# ifdef PHP_WIN32
#include "win32/pwd.h"
#include "win32/param.h"
#elif defined(NETWARE)
#include <sys/param.h>
#include "NetWare/pwd.h"
# else
#include <pwd.h>
#include <sys/param.h>