Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Feb 2004 20:45:22 +0000
From:      Matthew Seaman <m.seaman@infracaninophile.co.uk>
To:        Marty Landman <MLandman@face2interface.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: newbie problem building fetchmail from ports
Message-ID:  <20040216204522.GB95204@happy-idiot-talk.infracaninophile.co.uk>
In-Reply-To: <6.0.0.22.0.20040216140652.08b2a4d0@pop.face2interface.com>
References:  <6.0.0.22.0.20040216140652.08b2a4d0@pop.face2interface.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--mojUlQ0s9EVzWg2t
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Mon, Feb 16, 2004 at 02:10:11PM -0500, Marty Landman wrote:
> Any advice on what to do here?

> =3D=3D=3D>  Configuring for gettext-0.11.5_1

That's an ancient version of gettext -- are you using a copy of the
ports tree you got from the installation CDs?  At a guess, you're
running FreeBSD 4.7...

Current version of gettext in ports is gettext-0.13.1 which provides
libintl.so.6 Come to think of it, fetchmail is now at version 6.2.5 in
ports so you must be using an old ports tree.  However so long as all
the sources are still available for download, you should be able to
install.

The problem appears to be due to this target in the devel/gettext port
Makefile:

    pre-configure:
    	${RM} ${WRKSRC}/doc/gettext.info*

which was removed with version 1.42 of the port Makefile -- you, I
suspect have version 1.38.  You could try just editing the Makefile to
change those lines to:

    pre-configure:
    	-${RM} ${WRKSRC}/doc/gettext.info*

(ie. insert a '-' before the ${RM}) -- that will cause make to ignore
any error code produced by trying to remove some files that weren't
actually there in the first place.

	Cheers,

	Matthew

PS. If you're tempted to update your whole ports tree to the latest,
you should be aware that there have been some incompatible changes in
the pkg_foo tools which will cause you grief on a 4.7 system.  There's
a sysutils/pkg_install port you can install to help things out.  Most
things should work OK, but you'ld have to upgrade the system to a
supported version to be sure (ie. 4.9 or 5.2).

--=20
Dr Matthew J Seaman MA, D.Phil.                       26 The Paddocks
                                                      Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey         Marlow
Tel: +44 1628 476614                                  Bucks., SL7 1TH UK

--mojUlQ0s9EVzWg2t
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (FreeBSD)

iD8DBQFAMSvidtESqEQa7a0RAtlBAKCKUd1u06hC2jvKOvGbACWwPLE44QCfRNTF
Ma3hxP5ND8jN4L5ZCRZblTo=
=VKyJ
-----END PGP SIGNATURE-----

--mojUlQ0s9EVzWg2t--



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