Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Sep 2020 07:51:59 +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: r547337 - head/x11/i3lock/files
Message-ID:  <202009020751.0827pxQ8021956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Sep  2 07:51:59 2020
New Revision: 547337
URL: https://svnweb.freebsd.org/changeset/ports/547337

Log:
  Fix build with -fno-common (default in gcc10 and clang11)

Added:
  head/x11/i3lock/files/
  head/x11/i3lock/files/patch-unlock__indicator.c   (contents, props changed)

Added: head/x11/i3lock/files/patch-unlock__indicator.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/i3lock/files/patch-unlock__indicator.c	Wed Sep  2 07:51:59 2020	(r547337)
@@ -0,0 +1,11 @@
+--- unlock_indicator.c.orig	2019-05-11 07:55:23 UTC
++++ unlock_indicator.c
+@@ -35,7 +35,7 @@ extern bool debug_mode;
+ 
+ /* The current position in the input buffer. Useful to determine if any
+  * characters of the password have already been entered or not. */
+-int input_position;
++extern int input_position;
+ 
+ /* The lock window. */
+ extern xcb_window_t win;



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