Subject: Re: gnucash issues
To: Martin J. Laubach <mjl@emsi.priv.at>
From: Nick Hudson <skrll@netbsd.org>
List: tech-pkg
Date: 02/09/2004 07:47:52
On Sunday 08 February 2004 08:31, Martin J. Laubach wrote:
> > ++#if !defined(__FreeBSD__) && !defined(__NetBSD__)
> 
>    This probably should read ... __NetBSD__ < 0106nnnnnnnn
> with the nnnn indicating when the RTLD_DEFAULT appeared?
> Otherwise gnucash won't even compile on pre-current.

Surely the correct way to do this is 

	AC_CHECK_HEADERS(dlfcn.h)
	AC_CHECK_DEFINE(RTLD_DEFAULT, dlfcn.h)

or something similar

Nick