From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:52:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEF4A16A47F for ; Tue, 3 Jul 2007 19:52:48 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.freebsd.org (Postfix) with ESMTP id 87CAB13C4C2 for ; Tue, 3 Jul 2007 19:52:47 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.1/8.13.8) id l63JqMCC095427; Tue, 3 Jul 2007 14:52:22 -0500 (CDT) (envelope-from dan) Date: Tue, 3 Jul 2007 14:52:22 -0500 From: Dan Nelson To: epf1@cec.wustl.edu Message-ID: <20070703195222.GB1289@dan.emsphone.com> References: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> X-OS: FreeBSD 7.0-CURRENT User-Agent: Mutt/1.5.15 (2007-04-06) Cc: freebsd-questions@freebsd.org Subject: Re: can't build /graphics/poppler-qt after recent cvsup 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: Tue, 03 Jul 2007 19:52:49 -0000 In the last episode (Jul 03), epf1@cec.wustl.edu said: > > Hi all, > > I'm having an odd proble getting poppler-qt to build after my latest cvsup. > > I use portmanager to update my ports and when I ran it today I got the > following failure as the poppler-qt port was doing it's configure: > > ---Snip------ > checking for Qt headers... /usr/local/include > checking for Qt libraries... /usr/local/lib > test: xyes: unexpected operator > configure: error: Qt development libraries not found It looks like QT's autoconf test is buggy. work/poppler-0.5.4/configure script, line 25757: if test "x$have_qt4" == "xyes"; then "==" is not a valid comparison operator for the test command. It must be "=". -- Dan Nelson dnelson@allantgroup.com