From owner-svn-ports-all@freebsd.org Wed Aug 29 09:57:32 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66D7F1083EDE; Wed, 29 Aug 2018 09:57:32 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C762850AB; Wed, 29 Aug 2018 09:57:32 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EEFD11B9BA; Wed, 29 Aug 2018 09:57:31 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7T9vVML081309; Wed, 29 Aug 2018 09:57:31 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7T9vV9e081308; Wed, 29 Aug 2018 09:57:31 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201808290957.w7T9vV9e081308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Wed, 29 Aug 2018 09:57:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478347 - in head/graphics/gexiv2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: in head/graphics/gexiv2: . files X-SVN-Commit-Revision: 478347 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Aug 2018 09:57:32 -0000 Author: cmt Date: Wed Aug 29 09:57:31 2018 New Revision: 478347 URL: https://svnweb.freebsd.org/changeset/ports/478347 Log: graphics/gexiv2: avoid crash in gnome-photos if gexiv2 is build using "--version-script", gnome-photos crashes in libexiv2. without "--version-script", everything seems to be fine. PR: 230505 Submitted by: cpm Reported by: cpm Added: head/graphics/gexiv2/files/ head/graphics/gexiv2/files/patch-Makefile.in (contents, props changed) Modified: head/graphics/gexiv2/Makefile Modified: head/graphics/gexiv2/Makefile ============================================================================== --- head/graphics/gexiv2/Makefile Wed Aug 29 09:38:11 2018 (r478346) +++ head/graphics/gexiv2/Makefile Wed Aug 29 09:57:31 2018 (r478347) @@ -3,6 +3,7 @@ PORTNAME= gexiv2 PORTVERSION= 0.10.8 +PORTREVISION= 1 CATEGORIES= graphics # MASTER_SITES= GNOME/sources/gexiv2/${PORTVERSION:R} MASTER_SITES= GNOME Added: head/graphics/gexiv2/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gexiv2/files/patch-Makefile.in Wed Aug 29 09:57:31 2018 (r478347) @@ -0,0 +1,10 @@ +--- Makefile.in.orig 2018-08-28 23:17:41 UTC ++++ Makefile.in +@@ -805,6 +805,7 @@ lib@PACKAGE_NAME@_la_LIBADD = $(EXIV2_LIBS) $(GLIB_LIB + lib@PACKAGE_NAME@_la_CPPFLAGS = $(EXIV2_CFLAGS) $(GLIB_CFLAGS) + @PLATFORM_DARWIN_FALSE@VERSION_SCRIPT_LDFLAGS = "-Wl,--version-script=$(srcdir)/gexiv2/gexiv2.map" + @PLATFORM_DARWIN_TRUE@VERSION_SCRIPT_LDFLAGS = ++VERSION_SCRIPT_LDFLAGS = + lib@PACKAGE_NAME@_la_LDFLAGS = \ + $(no_undefined) -export-dynamic -version-info $(GEXIV2_VERSION_INFO) \ + $(VERSION_SCRIPT_LDFLAGS) \