Displaying 2 results from an estimated 2 matches for "no_getrlimit".
1997 Jul 16
0
SCO compilation of 1.9.16p10 and higher
...void (*)(int))
#define USE_WAITPID
#define USE_GETCWD
#define USE_SETSID
#ifdef SCO3_2_2
! #define NO_EID
#else
#ifndef EVEREST
#define USE_IFREQ
#endif
#endif
#define STATFS4
#define NO_FSYNC
- #ifndef EVEREST
- #define NO_INITGROUPS
- #endif
#define HAVE_PATHCONF
#define NO_GETRLIMIT
#endif
--- 668,689 ----
#include <prot.h>
#define crypt bigcrypt
#endif
#define SIGNAL_CAST (void (*)(int))
#define USE_WAITPID
#define USE_GETCWD
#define USE_SETSID
#ifdef SCO3_2_2
! #define setuid(u) setreuid(u,-1)
! #define seteuid(u) setreuid(-1,u)
#else
#ifndef EVER...
1998 May 11
0
Tried Compiling 1.9.18p6 yet
...***********
*** 769,771 ****
#define ftruncate(f,l) syscall(0x0a28,f,l)
! #define USE_IFREQ
#define NO_INITGROUPS
--- 769,771 ----
#define ftruncate(f,l) syscall(0x0a28,f,l)
! /* #define USE_IFREQ */ /* tjp */
#define NO_INITGROUPS
***************
*** 777,778 ****
--- 777,779 ----
#define NO_GETRLIMIT
+ extern int strcasecmp(char *,char *); /* tjp */
#endif /* SCO */
*** slprintf.c.orig Mon May 11 03:02:04 1998
--- slprintf.c Mon May 11 17:47:47 1998
***************
*** 25,26 ****
--- 25,43 ----
+ #ifdef SCO /* tjp */
+ int getpagesize(void)
+ {
+ return(4096);
+ }
+
+ void *memalign(int...