svn commit: r520283 - head/devel/libnotify/files

Baptiste Daroussin bapt at FreeBSD.org
Mon Dec 16 18:40:38 UTC 2019


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:
+     *;
+ };


More information about the svn-ports-head mailing list