From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 24 01:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80EBAEBB for ; Sat, 24 May 2014 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B2F128D7 for ; Sat, 24 May 2014 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4O1K04V010878 for ; Sat, 24 May 2014 01:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4O1K0rV010877; Sat, 24 May 2014 01:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 24 May 2014 01:20:00 GMT Resent-Message-Id: <201405240120.s4O1K0rV010877@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Norikatsu Shigemura Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03DBDEA8 for ; Sat, 24 May 2014 01:17:27 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5AE628CE for ; Sat, 24 May 2014 01:17:26 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s4O1HQjJ028452 for ; Sat, 24 May 2014 01:17:26 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s4O1HQ2H028449; Sat, 24 May 2014 01:17:26 GMT (envelope-from nobody) Message-Id: <201405240117.s4O1HQ2H028449@cgiserv.freebsd.org> Date: Sat, 24 May 2014 01:17:26 GMT From: Norikatsu Shigemura To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/190157: [ports/devel/glib20] Fix build error when installed ports/lang/gcc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 01:20:00 -0000 >Number: 190157 >Category: ports >Synopsis: [ports/devel/glib20] Fix build error when installed ports/lang/gcc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 24 01:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Norikatsu Shigemura >Release: FreeBSD/amd64 11.0-CURRENT >Organization: Personal >Environment: FreeBSD pelsia.ninth-nine.com 11.0-CURRENT FreeBSD 11.0-CURRENT #11 r266591M: Sat May 24 07:35:50 JST 2014 nork@pelsia.ninth-nine.com:/usr/obj/usr/src/sys/PELSIA amd64 >Description: ports/lang/gcc installed libffi.so. And if ports/lang/gcc install before ports/devel/libffi, so ports/devel/glib20 found ports/lang/gcc's libffi instead of ports/devel/libffi's one. As the result, ports/devel/glib20 doesn't compile by not found libffi.so. >How-To-Repeat: $ ldconfig -r | grep ffi 275:-lffi.6 => /usr/local/lib/libffi.so.6 712:-lffi.4 => /usr/local/lib/gcc47/libffi.so.4 >Fix: Please apply following patch. Patch attached with submission follows: Index: ports/devel/glib20/Makefile =================================================================== --- ports/devel/glib20/Makefile (revision 354968) +++ ports/devel/glib20/Makefile (working copy) @@ -20,7 +20,7 @@ .if !defined(REFERENCE_PORT) LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \ - libffi.so:${PORTSDIR}/devel/libffi + libffi.so.6:${PORTSDIR}/devel/libffi USE_AUTOTOOLS= libtool USE_LDCONFIG= yes >Release-Note: >Audit-Trail: >Unformatted: