From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18801 invoked from network); 3 May 1997 22:21:52 -0000 Received: from euclid.skiles.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 3 May 1997 22:21:52 -0000 Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id SAA21123; Sat, 3 May 1997 18:16:11 -0400 (EDT) Resent-Date: Sat, 3 May 1997 18:16:11 -0400 (EDT) Date: Sat, 3 May 1997 23:19:34 +0100 (BST) From: Zefram Message-Id: <9152.199705032219@stone.dcs.warwick.ac.uk> Subject: rlim_t Resent-Message-ID: <"nqQ8B.0.-95.gaxQp"@euclid> To: zsh-workers@math.gatech.edu Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/3095 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Zoltan's rlim_t patch contains: +AC_CACHE_CHECK(for rlim_t, zsh_cv_type_rlim_t, +[AC_TRY_COMPILE([ +#include +#ifdef HAVE_SYS_TIME_H +#include +#endif +#include ], +[rlim_t l;], +zsh_cv_type_rlim_t=yes, +zsh_cv_type_rlim_t=no)]) +if test $zsh_cv_type_rlim_t = no; then + AC_DEFINE_UNQUOTED(rlim_t, $DEFAULT_RLIM_T) fi Shouldn't that be AC_CHECK_TYPE(rlim_t, $DEFAULT_RLIM_T) ? There are other similar type checks that should probably use AC_CHECK_TYPE too. -zefram