Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh-3.0-pre3 and AIX 4.X
- X-seq: zsh-workers 1716
- From: Zoltan Hidvegi <hzoli@xxxxxxxxxx>
- To: wfp5p@xxxxxxxxxxxxxxxxxxxxxxx (Bill Pemberton)
- Subject: Re: zsh-3.0-pre3 and AIX 4.X
- Date: Fri, 19 Jul 1996 17:49:04 +0200 (MET DST)
- Cc: zsh-workers@xxxxxxxxxxxxxxx
- In-reply-to: <199607191418.KAA04628@xxxxxxxxxxxxxxxxxxxxxxx> from Bill Pemberton at "Jul 19, 96 10:18:27 am"
- Organization: Dept. of Comp. Sci., Eotvos University, Budapest, Hungary
- Phone: (36 1)2669833 ext: 2667, home phone: (36 1) 2752368
Bill Pemberton wrote:
> However, I ran into a bit of a problem building it on AIX 4.2. In the
> compile for builtin.c I get the message:
>
> "builtin.c", line 3596.5: 1506-205 (S) there are some unknown limits. Fix me!
Bill sent me his /usr/include/sys/resources.h so the patch below should fix
that problem. Please try it.
Zoltan
*** Src/builtin.c 1996/07/14 18:47:08 2.60
--- Src/builtin.c 1996/07/19 15:44:36
***************
*** 3592,3597 ****
--- 3592,3602 ----
# define NEXT_RLIM (RLIMIT_AS + 1)
"addressspace",
# endif /* RLIMIT_AS */
+ # if defined RLIMIT_NOFILE && RLIMIT_NOFILE == NEXT_RLIM
+ # undef NEXT_RLIM
+ # define NEXT_RLIM (RLIMIT_NOFILE + 1)
+ "descriptors",
+ # endif /* RLIMIT_NOFILE */
# if NEXT_RLIM != RLIM_NLIMITS
#error there are some unknown limits. Fix me!
# endif
Messages sorted by:
Reverse Date,
Date,
Thread,
Author