mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
NetWare related changes
This commit is contained in:
parent
c4fd805ce4
commit
575e3682f5
6 changed files with 307 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue