From owner-freebsd-questions Tue Sep 17 04:34:29 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA28536 for questions-outgoing; Tue, 17 Sep 1996 04:34:29 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id EAA28529 for ; Tue, 17 Sep 1996 04:34:26 -0700 (PDT) Received: from allegro.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0v2yMr-000QjyC; Tue, 17 Sep 96 13:31 MET DST From: grog@lemis.de (Greg Lehey) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Received: (grog@localhost) by allegro.lemis.de (8.6.9/8.6.9) id NAA08171; Tue, 17 Sep 1996 13:03:43 +0200 Message-Id: <199609171103.NAA08171@allegro.lemis.de> Subject: Re: fetch won't work To: cawimm0@service1.uky.edu (Charles A. Wimmer) Date: Tue, 17 Sep 1996 13:03:43 +0200 (MET DST) Cc: questions@FreeBSD.org In-Reply-To: <2.2.32.19960916183745.006d80dc@pop.uky.edu> from "Charles A. Wimmer" at Sep 16, 96 02:37:45 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Charles A. Wimmer writes: > > Greetings, > > I recently suped to 2.1.5-STABLE and rebuilt my kernel. Everything went > fine and everything (seemingly) works OK. I tried to install a port and it > couldn't find fetch. I went to manually make fetch and got this: > > ph162: {32} pwd > /usr/src/usr.bin/fetch > ph162: {33} make > cc -O -c /usr/src/usr.bin/fetch/main.c > /usr/src/usr.bin/fetch/main.c:47: ftpio.h: No such file or directory > *** Error code 1 > > Stop. > ph162: {34} locate ftpio.h > /usr/src/lib/libftpio/ftpio.h > ph162: {35} > > Everything looks normal to me. Any ideas? I manually got the distfile, but > I would like to get fetch working again. Doesn't look normal to me. Line 47 of main.c almost certainly looks like #include Since you didn't specify any search paths, it looks for ftpio.h in /usr/include, and doesn't find it. Add -I/usr/src/lib/libftpio to your CFLAGS. Greg