From owner-freebsd-questions@FreeBSD.ORG Wed Dec 1 18:27:33 2010 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EA951065674 for ; Wed, 1 Dec 2010 18:27:33 +0000 (UTC) (envelope-from jamesbrandongooch@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id A1E648FC25 for ; Wed, 1 Dec 2010 18:27:32 +0000 (UTC) Received: by ewy24 with SMTP id 24so3868326ewy.13 for ; Wed, 01 Dec 2010 10:27:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=WfFtJaJGZGXMiuWDlb6ORrXPWXYP+7z4jYyq/6cvaVA=; b=Ubr4S4TqL7vg+FnesNsc+BPfIq3rlgtSuq7JVhj/9OhsUptl2wMIBRU/YLKzxqsVMq TZp0VracvjIqVbY9DCQMM2BpCV9TVLNQ3CMNEBdSfAVMX0XgNp+uyu99RWkAAUlfC7GL G/nOJBTkmfmGtgMso3V/IHLsFmU8Bp8w3QX8s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=lZFjDWOE/45uYwosFuGEyExsh7dwBxTb7KSOIivfofNM2ZS1ICKxK1utgoqHD5a5RP 6Yk5I54Qd7kqd3N6vczA6J7GAXaVlkPle3JziPgnXYb3HNbj88SrihALiJfE15UymRrb 285Oa92UcBTTQ0iaTMVjv4+9DCPInUA+nzAzU= MIME-Version: 1.0 Received: by 10.216.93.9 with SMTP id k9mr7966474wef.89.1291226489777; Wed, 01 Dec 2010 10:01:29 -0800 (PST) Received: by 10.216.12.80 with HTTP; Wed, 1 Dec 2010 10:01:29 -0800 (PST) In-Reply-To: References: Date: Wed, 1 Dec 2010 12:01:29 -0600 Message-ID: From: Brandon Gooch To: Kurt Buff Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Questions Subject: Re: Problem building netdisco 1.0 from ports on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 18:27:33 -0000 On Wed, Dec 1, 2010 at 11:09 AM, Kurt Buff wrote: > Working on 7.1 Release. Ports tree up to date, and a portupgrade -a > done yesterday was successful. > > I did the following: > > # cd =A0/usr/ports/net-mgmt/netdisco > # make install > > It bombs out with the below errors - I think it's an error in libXaw, > but can't quite be sure. Any thoughts? > > Kurt > > =3D=3D=3D> =A0 =A0Verifying install for /usr/local/libdata/pkgconfig/xaw7= .pc in > /usr/ports/x11-toolkits/libXaw > =3D=3D=3D> =A0Building for libXaw-1.0.7,1 > make =A0all-recursive > Making all in include > Making all in src > =A0CC =A0 =A0 libXaw6_la-Actions.lo > Actions.c:38:28: error: X11/IntrinsicP.h: No such file or directory > Actions.c:39:28: error: X11/StringDefs.h: No such file or directory > Actions.c:40:23: error: X11/CoreP.h: No such file or directory > Actions.c:41:28: error: X11/Constraint.h: No such file or directory > Actions.c:42:29: error: X11/Xmu/CharSet.h: No such file or directory > Actions.c:43:29: error: X11/Xmu/SysUtil.h: No such file or directory > In file included from Actions.c:45: > Private.h:149: error: expected ')' before '*' token [SNIP] It seems that the header files can't be found. Have you checked /usr/local/include/X11 to verify their existence? If not, perhaps you should (re)install libX11 (I thinks that's where the header files above are found). -Brandon -Brandon