From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 5 02:30:11 2007 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFE1F16A46B for ; Thu, 5 Jul 2007 02:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BFE8513C469 for ; Thu, 5 Jul 2007 02:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l652UBBF022515 for ; Thu, 5 Jul 2007 02:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l652UBBa022514; Thu, 5 Jul 2007 02:30:11 GMT (envelope-from gnats) Date: Thu, 5 Jul 2007 02:30:11 GMT Message-Id: <200707050230.l652UBBa022514@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stephen Hurd Cc: Subject: Re: ports/114053: Port graphics/gnash is out of date X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stephen Hurd List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 02:30:11 -0000 The following reply was made to PR ports/114053; it has been noted by GNATS. From: Stephen Hurd To: bug-followup@FreeBSD.org, ml.freebsd-ports@ledisez.net Cc: Subject: Re: ports/114053: Port graphics/gnash is out of date Date: Wed, 04 Jul 2007 19:26:28 -0700 This is a multi-part message in MIME format. --Boundary_(ID_B5Js3BYTEZa/O90aczdZPg) Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT Here is the simplest method to make the configure work... BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash Then add this patch to the files dir... --Boundary_(ID_B5Js3BYTEZa/O90aczdZPg) Content-type: text/plain; name=patch-configure Content-transfer-encoding: 7BIT Content-disposition: inline; filename=patch-configure --- configure.bak Wed Jul 4 18:26:30 2007 +++ configure Wed Jul 4 18:42:57 2007 @@ -1,4 +1,4 @@ -#! /bin/sh +#! /usr/local/bin/bash # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for gnash 0.8.0. # @@ -48321,10 +48321,10 @@ if test -f $i/libpthread.a -o -f $i/libpthread.${shlibext} -o -f $i/libpthread.dylib; then pthreads=yes if test x"$i" != x"/usr/lib"; then - PTHREAD_LIBS="-L$i -lpthread" + PTHREAD_LIBS="-L$i -pthread" break else - PTHREAD_LIBS="-lpthread" + PTHREAD_LIBS="-pthread" break fi echo "$as_me:$LINENO: result: yes" >&5 --Boundary_(ID_B5Js3BYTEZa/O90aczdZPg)--