Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Dec 2019 18:40:37 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520283 - head/devel/libnotify/files
Message-ID:  <201912161840.xBGIebrB091198@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon Dec 16 18:40:37 2019
New Revision: 520283
URL: https://svnweb.freebsd.org/changeset/ports/520283

Log:
  Fix build with old binutils.
  
  Somehow linker scripts should not hide __progname and environ from symbols.
  
  Reported by:	kib

Added:
  head/devel/libnotify/files/
  head/devel/libnotify/files/patch-libnotify_libnotify.map   (contents, props changed)

Added: head/devel/libnotify/files/patch-libnotify_libnotify.map
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libnotify/files/patch-libnotify_libnotify.map	Mon Dec 16 18:40:37 2019	(r520283)
@@ -0,0 +1,11 @@
+--- libnotify/libnotify.map.orig	2019-04-05 19:06:19 UTC
++++ libnotify/libnotify.map
+@@ -1,6 +1,8 @@
+ {
+ global:
+     notify_*;
++    __progname;
++    environ;
+ local:
+     *;
+ };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912161840.xBGIebrB091198>