From owner-freebsd-current Mon Jun 1 08:42:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28429 for freebsd-current-outgoing; Mon, 1 Jun 1998 08:42:18 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA28360 for ; Mon, 1 Jun 1998 08:42:09 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id IAA21347; Mon, 1 Jun 1998 08:41:46 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: "Brian Feldman" cc: freebsd-current@FreeBSD.ORG Subject: Re: Undefined symbols referenced In-reply-to: Your message of "01 Jun 1998 14:03:25 -0000." <19980601140325.19702.qmail@m2.findmail.com> Date: Mon, 01 Jun 1998 08:41:46 -0700 Message-ID: <21343.896715706@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > For all you GIMP users: > export CVSROOT=':pserver:anonymous@cvs.gimp.org:/debian/home/gnomecvs' > mkdir CVSROOT;cd CVSROOT > cvs login && cvs -z9 co gtk+ gimp > for dir in gtk+ gimp; do cd $dir; ./autogen.sh; gmake all install clean; cd . .; done > Is that really too hard, rather than using the goddamned port?! Not hard, just not a functional substitute: [do anoncvs stuff to get gtk+ and gimp, which works fine] jkh@time-> cd .. jkh@time-> for dir in gtk+ gimp; do cd $dir; ./autogen.sh; gmake all install clean; cd ..; > done You must have libtool installed to compile GTK+. Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz (or a newer version if it is available) You must have automake installed to compile GTK+. Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz (or a newer version if it is available) gmake: *** No rule to make target `all'. Stop. You must have libtool installed to compile GIMP. Get ftp://ftp.gnu.org/pub/gnu/libtool-1.2.tar.gz (or a newer version if it is available) ... The DEPENDENCIES like this are specifically what the ports collection is good at dealing with so that things work consistently for most users and not just they folks who've already installed libtook and/or automake and simply forgotten that fact. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message