Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Jan 2002 15:39:02 -0600
From:      "Jacques A. Vidrine" <n@nectar.cc>
To:        Jeremy Lea <reg@FreeBSD.org>
Cc:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   Re: cvs commit: ports/net/gnomeicu/files patch-src::icu_db.c
Message-ID:  <20020106213902.GA88137@madman.nectar.cc>
In-Reply-To: <200201062053.g06KrMC19409@freefall.freebsd.org>
References:  <200201062053.g06KrMC19409@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, Jan 06, 2002 at 12:53:22PM -0800, Jeremy Lea wrote:
> reg         2002/01/06 12:53:22 PST
> 
>   Added files:
>     net/gnomeicu/files   patch-src::icu_db.c 
>   Log:
>   Fix for building on -CURRENT without <malloc.h>

#ifdef HAVE_STDLIB_H !?   What language is this written in?
Please just s/malloc.h/stdlib.h/.  Or if you must use a conditional, it
should look like

#include <stdlib.h>
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif

I think.
-- 
Jacques A. Vidrine <n@nectar.cc>                 http://www.nectar.cc/
NTT/Verio SME          .     FreeBSD UNIX     .       Heimdal Kerberos
jvidrine@verio.net     .  nectar@FreeBSD.org  .          nectar@kth.se

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020106213902.GA88137>