From owner-freebsd-current Sat Jan 10 10:34:10 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA27926 for current-outgoing; Sat, 10 Jan 1998 10:34:10 -0800 (PST) (envelope-from owner-freebsd-current) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA27914 for ; Sat, 10 Jan 1998 10:33:58 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from bonsai.hiwaay.net (tnt2-38.HiWAAY.net [208.147.148.38]) by fly.HiWAAY.net (8.8.8/8.8.6) with SMTP id MAA06003; Sat, 10 Jan 1998 12:31:49 -0600 (CST) Message-ID: <34B7BED4.31D2DE92@hiwaay.net> Date: Sat, 10 Jan 1998 12:32:52 -0600 From: Steve Price X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Hostas Red CC: Gianmarco Giovannelli , current@FreeBSD.ORG Subject: Re: make world: problem still exists... References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hostas Red wrote: > > Yes, it was, thanks to him. :) But libalias problem still affects 'make > world' as follows: > > ======= 8< ======= > /usr/src/usr.sbin/ppp/loadalias.c: In function `loadAliasHandlers': > /usr/src/usr.sbin/ppp/loadalias.c:79: parse error before > `__libalias_version' > /usr/src/usr.sbin/ppp/loadalias.c:75: warning: `path' might be used > uninitialized in this function > *** Error code 1 > > Stop. > ======= >8 ======= Apply the attached patch to /usr/src/lib/libalias/alias.h and the problem should be fixed. Steve > Adios, > /KONG Index: alias.h =================================================================== RCS file: /u/FreeBSD/cvs/src/lib/libalias/alias.h,v retrieving revision 1.4 diff -u -r1.4 alias.h --- alias.h 1998/01/09 21:13:34 1.4 +++ alias.h 1998/01/10 18:30:20 @@ -157,5 +157,8 @@ #define PKT_ALIAS_UNRESOLVED_FRAGMENT 3 #define PKT_ALIAS_FOUND_HEADER_FRAGMENT 4 +#undef __libalias_version +#define __libalias_version "2.5" + #endif /*lint -restore */