Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Aug 2020 11:25:52 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547050 - in head/graphics/telak: . files
Message-ID:  <202008301125.07UBPq4m067422@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Sun Aug 30 11:25:51 2020
New Revision: 547050
URL: https://svnweb.freebsd.org/changeset/ports/547050

Log:
  Fix build with clang11
  
  Notified by:	pkg-fallout

Added:
  head/graphics/telak/files/patch-toon.c   (contents, props changed)
  head/graphics/telak/files/patch-toon.h   (contents, props changed)
Modified:
  head/graphics/telak/Makefile
  head/graphics/telak/files/patch-Makefile

Modified: head/graphics/telak/Makefile
==============================================================================
--- head/graphics/telak/Makefile	Sun Aug 30 10:52:01 2020	(r547049)
+++ head/graphics/telak/Makefile	Sun Aug 30 11:25:51 2020	(r547050)
@@ -3,7 +3,7 @@
 
 PORTNAME=	telak
 PORTVERSION=	0.6
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	graphics
 MASTER_SITES=	http://julien.danjou.info/telak/ \
 		LOCAL/ehaupt

Modified: head/graphics/telak/files/patch-Makefile
==============================================================================
--- head/graphics/telak/files/patch-Makefile	Sun Aug 30 10:52:01 2020	(r547049)
+++ head/graphics/telak/files/patch-Makefile	Sun Aug 30 11:25:51 2020	(r547050)
@@ -1,5 +1,5 @@
---- ./Makefile.orig	2008-03-20 16:05:59.000000000 +0100
-+++ ./Makefile	2014-02-14 10:08:18.502223147 +0100
+--- Makefile.orig	2008-03-20 15:05:59 UTC
++++ Makefile
 @@ -1,8 +1,8 @@
  VERSION = $(shell grep '^Version' ChangeLog | head -n 1 | cut -d' ' -f2 | tr -d ' ')
  BIN = telak

Added: head/graphics/telak/files/patch-toon.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/telak/files/patch-toon.c	Sun Aug 30 11:25:51 2020	(r547050)
@@ -0,0 +1,11 @@
+--- toon.c.orig	2008-02-25 16:41:19 UTC
++++ toon.c
+@@ -95,6 +95,8 @@
+ #include <stdio.h>
+ #include <string.h>
+ 
++char toon_message[TOON_MESSAGE_LENGTH];
++
+ /* Time to throw up. Here is a kludgey function that recursively calls
+  * itself (up to a limit) to find the window ID of the KDE desktop to
+  * draw on. It works with KDE 2.0, but since KDE 2.0 is less stable

Added: head/graphics/telak/files/patch-toon.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/telak/files/patch-toon.h	Sun Aug 30 11:25:51 2020	(r547050)
@@ -0,0 +1,10 @@
+--- toon.h.orig	2008-02-25 16:41:19 UTC
++++ toon.h
+@@ -1,6 +1,6 @@
+ #include <X11/Xlib.h>
+ 
+ #define TOON_MESSAGE_LENGTH 128
+-char toon_message[TOON_MESSAGE_LENGTH];
++/* char toon_message[TOON_MESSAGE_LENGTH]; */
+ 
+ Window ToonGetRootWindow(Display *display, int screen, Window *clientparent);



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