From owner-freebsd-gecko@FreeBSD.ORG Thu Mar 21 14:22:23 2013 Return-Path: Delivered-To: gecko@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BD0677D5 for ; Thu, 21 Mar 2013 14:22:23 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 7D86BDAB for ; Thu, 21 Mar 2013 14:22:23 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1UIgNj-00051n-1B; Thu, 21 Mar 2013 17:22:16 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=aiHPPl71x9m+F2xwCQ9bFRqbV7g32uh0EZpcpckt/2E=; b=mZGTcUQVn2ONB1DuppiJOudtFohgHM9u8I3/vneCtDC1AF4Yo4dFZVZVvAMLYa0egD1NCq2JBKPpF1V7fEB3aMlzUqGcC32+7k03OANSCp2aRoNpvvVX+vWqBGYMHbSYSxCcUh0MSRKjVHnFeBpnEFamami+QPNbFwrQsYAY3To=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1UIgKz-000MiQ-SU; Thu, 21 Mar 2013 14:19:27 +0000 From: Jan Beich To: Anton Shterenlikht Subject: Re: www/firefox on ia64 -current: configure: error: Cannot find header fontconfig/fcfreetype.h In-Reply-To: <201303211053.r2LArbbl026142@mech-cluster241.men.bris.ac.uk> (Anton Shterenlikht's message of "Thu, 21 Mar 2013 10:53:37 GMT") Date: Thu, 21 Mar 2013 19:20:17 +0500 References: <201303211053.r2LArbbl026142@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1UIgKz-000MiQ-SU@internal.tormail.org> Cc: gecko@FreeBSD.org X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 14:22:23 -0000 Anton Shterenlikht writes: > In file included from /usr/include/sys/stat.h:99:0, > from /usr/local/include/fontconfig/fontconfig.h:29, > from configure:25673: > /usr/include/sys/time.h:134:17: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h:141:1: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h: In function 'bttosbt': > /usr/include/sys/time.h:144:12: error: 'sbintime_t' undeclared (first use in this function) > /usr/include/sys/time.h:144:12: note: each undeclared identifier is reported only once for each function it appears in > /usr/include/sys/time.h:144:23: error: expected ')' before 'bt' > /usr/include/sys/time.h: At top level: > /usr/include/sys/time.h:148:9: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h:206:9: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h:216:1: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h: In function 'tstosbt': > /usr/include/sys/time.h:219:12: error: 'sbintime_t' undeclared (first use in this function) > /usr/include/sys/time.h:219:23: error: expected ')' before 'ts' > /usr/include/sys/time.h: At top level: > /usr/include/sys/time.h:224:9: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h:234:1: error: unknown type name 'sbintime_t' > /usr/include/sys/time.h: In function 'tvtosbt': > /usr/include/sys/time.h:237:12: error: 'sbintime_t' undeclared (first use in this function) > /usr/include/sys/time.h:237:23: error: expected ')' before 'tv' This is common error when headers modified by gcc are not in sync with those under /usr/include. For example, after http://svnweb.freebsd.org/changeset/base/247476 make sure you have sbintime_t in sys/types.h copy $ fgrep sbintime /usr/local/lib/gcc47/gcc/x86_64-portbld-freebsd10.0/4.7.3/include-fixed/sys/types.h typedef __int64_t sbintime_t; If you don't have then rebuild lang/gcc47.