Subject: Re: Problem compiling PHP 4.0.5
To: Wouter Vijvers <woutje@chello.nl>
From: Jason Beegan <jtb@netbsd.org>
List: netbsd-help
Date: 05/16/2001 01:45:36
The problem here is that the package you want to compile uses an old
version of libtool which doesn't know how to properly build libraries
for your system.
The workaround is to install the devel/libtool package from pkgsrc and
replace the `ltconfig' file in the package you're trying to build with
the following script.
#! /bin/sh
rm -r libtool; ln -s /usr/pkg/bin/libtool libtool
Don't forget to make it executable.
chmod +x ltconfig
You should do this with a freshly extracted package or `gmake
distclean' and reconfigure.
-- Jason Beegan