From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 16:16:26 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 6B6DA16A469; Thu, 5 Jul 2007 16:16:26 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 4B7A313C48C; Thu, 5 Jul 2007 16:16:26 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l65GGJpT057152; Thu, 5 Jul 2007 12:16:20 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 12:15:53 -0400 User-Agent: KMail/1.9.6 References: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> <20070703195222.GB1289@dan.emsphone.com> <200707031609.37422.lists@jnielsen.net> In-Reply-To: <200707031609.37422.lists@jnielsen.net> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707051215.54217.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: gnome@freebsd.org, epf1@cec.wustl.edu, Dan Nelson Subject: Re: can't build /graphics/poppler-qt after recent cvsup [FIXED] 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: Thu, 05 Jul 2007 16:16:26 -0000 On Tuesday 03 July 2007 04:09:37 pm John Nielsen wrote: > [cc-ing gnome@ as port maintainer] > > On Tuesday 03 July 2007 03:52:22 pm Dan Nelson wrote: > > In the last episode (Jul 03), epf1@cec.wustl.edu said: > > > 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 "=". > > I was having the same problem as the OP. After Dan's post I did a "make > patch", then modified the configure script replacing two instances of == > with = on these two lines: > > 25851:if test "x$have_qt" == "xyes"; then > 26033:if test "x$have_qt" == "xyes"; then > > After that I was able to make and install the port. > > gnome@ folks, should I submit a PR or will you guys just take this upstream > directly? Thanks ahze for commiting a fix for this. poppler-qt-0.5.9_2 now builds and installs without any modifications on my system. JN