Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Sep 2020 08:20:33 +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: r547341 - head/x11/dmenu-wayland/files
Message-ID:  <202009020820.0828KXWT035095@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Sep  2 08:20:32 2020
New Revision: 547341
URL: https://svnweb.freebsd.org/changeset/ports/547341

Log:
  Fix build with -fno-common

Added:
  head/x11/dmenu-wayland/files/
  head/x11/dmenu-wayland/files/patch-dmenu.c   (contents, props changed)
  head/x11/dmenu-wayland/files/patch-draw.h   (contents, props changed)

Added: head/x11/dmenu-wayland/files/patch-dmenu.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/dmenu-wayland/files/patch-dmenu.c	Wed Sep  2 08:20:32 2020	(r547341)
@@ -0,0 +1,10 @@
+--- dmenu.c.orig	2019-06-25 12:55:46 UTC
++++ dmenu.c
+@@ -40,6 +40,7 @@ struct {
+ 	int32_t scroll_right;
+ } window_config;
+ 
++const char *progname;
+ 
+ static uint32_t color_bg = 0x222222ff;
+ static uint32_t color_fg = 0xbbbbbbff;

Added: head/x11/dmenu-wayland/files/patch-draw.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/dmenu-wayland/files/patch-draw.h	Wed Sep  2 08:20:32 2020	(r547341)
@@ -0,0 +1,8 @@
+--- draw.h.orig	2019-06-25 12:55:46 UTC
++++ draw.h
+@@ -96,4 +96,4 @@ void eprintf(const char *fmt, ...);
+ void weprintf(const char *fmt, ...);
+ int32_t round_to_int(double val);
+ 
+-const char *progname;
++extern const char *progname;



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