NetWare LibC SDK has sys/param.h so removing the redundant NEW_LIBC checks.
ext/standard/flock_compat.c
Removing redundant NEW_LIBC checks
ext/standard/lcg.c
NetWare LibC SDK has sys/timeval.h so removing the redundant NEW_LIBC checks.
ext/standard/pack.c
NetWare LibC SDK has sys/param.h so removing the redundant NEW_LIBC checks.
--Kamesh
#include "win32/winutil.h"
#define GET_DL_ERROR() php_win_err()
#elif defined(NETWARE)
-#ifdef NEW_LIBC
#include <sys/param.h>
-#else
-#include "netware/param.h"
-#endif
#define GET_DL_ERROR() dlerror()
#else
#include <sys/param.h>
#endif
#ifdef NETWARE
-#ifdef NEW_LIBC
#include <netinet/in.h>
-#else
-#include <sys/socket.h>
-#endif
#endif
#ifndef HAVE_FLOCK
#ifdef PHP_WIN32
#include "win32/time.h"
#elif defined(NETWARE)
-#ifdef NEW_LIBC
#include <sys/timeval.h>
#else
-#include "netware/time_nw.h"
-#endif
-#else
#include <sys/time.h>
#endif
#include "win32/param.h"
#elif defined(NETWARE)
#ifdef USE_WINSOCK
-/*#include <ws2nlm.h>*/
#include <novsock2.h>
#else
#include <sys/socket.h>
#endif
-#ifdef NEW_LIBC
#include <sys/param.h>
#else
-#include "netware/param.h"
-#endif
-#else
#include <sys/param.h>
#endif
#include "ext/standard/head.h"