From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: zsh-workers-request@euclid.skiles.gatech.edu Received: from euclid.skiles.gatech.edu (list@euclid.skiles.gatech.edu [130.207.146.50]) by coral.primenet.com.au (8.7.5/8.7.3) with ESMTP id JAA17952 for ; Wed, 9 Oct 1996 09:32:27 +1000 (EST) Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id TAA06154; Tue, 8 Oct 1996 19:25:23 -0400 (EDT) Resent-Date: Tue, 8 Oct 1996 19:25:23 -0400 (EDT) From: Zoltan Hidvegi Message-Id: <199610082229.AAA00393@hzoli.ppp.cs.elte.hu> Subject: Re: Re[2]: Problem compiling on HPUX 10.20 To: jmm@herakles.jpl.nasa.gov (Jan Martin) Date: Wed, 9 Oct 1996 00:29:26 +0200 (MET DST) Cc: zsh-workers@math.gatech.edu (Zsh hacking and development) In-Reply-To: <199610081852.LAA04129@herakles.jpl.nasa.gov> from Jan Martin at "Oct 8, 96 11:52:16 am" X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Resent-Message-ID: <"k3rh82.0.0W1.YBkMo"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/2204 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu > > Jan Martin wrote: > > > Hi experts: > > > > > > I'm having a bit of trouble compiling zsh-3.0.0 on HPUX 10.20 with the > > > HP cc - when trying to compile builtin.c, I get > > > > > > cc -c -I.. -I. -I. -DHAVE_CONFIG_H -Ae builtin.c > > > cpp: "builtin.c", line 3639: error 4062: there are some unknown limits. Fix me! I'm sorry, somehow an extra error check crept in the code (I prehaps pressed META-W instead of CTRL-W in emacs which did a copy instead of a cut). The patch below should be applied on 3.0.1-test3. Zoltan *** Src/builtin.c 1996/10/07 01:44:03 2.92 --- Src/builtin.c 1996/10/08 22:22:49 *************** *** 3662,3670 **** # define NEXT_RLIM (RLIMIT_NOFILE + 1) "descriptors", # endif /* RLIMIT_NOFILE */ - # if NEXT_RLIM != RLIM_NLIMITS - #error there are some unknown limits. Fix me! - # endif # if defined RLIMIT_TCACHE && RLIMIT_TCACHE == NEXT_RLIM # undef NEXT_RLIM # define NEXT_RLIM (RLIMIT_TCACHE + 1) --- 3662,3667 ----