Subject: Re: pkg/30573
To: None <darwin-pkg-people@netbsd.org, gnats-admin@netbsd.org,>
From: Frank van der Linden <fvdl@netbsd.org>
List: pkgsrc-bugs
Date: 06/24/2005 03:09:02
The following reply was made to PR pkg/30573; it has been noted by GNATS.
From: Frank van der Linden <fvdl@netbsd.org>
To: gnats-bugs@netbsd.org
Cc: lukem@netbsd.org
Subject: Re: pkg/30573
Date: Fri, 24 Jun 2005 05:08:41 +0200
The offending lines for tnftp choking on dirname(3) on the OS X pkgsrc
bootstrap, seem to be these in configure.in:
if test $have_fparseln != yes; then
AC_REPLACE_FUNCS(fparseln)
fi
if test $have_dirname != yes; then
AC_REPLACE_FUNCS(dirname)
fi
It seems that they were added for Irix, but they make configure on OS X
not find fparseln nor dirname. It should probably have an else clause
which just does AC_DEFINE(HAVE_FPARSELN, 1) and AC_DEFINE(HAVE_DIRNAME,
1), respectively, but I know little about autoconf.
- Frank