Package Details: wayneko-git r29.c1919dc-4

Git Clone URL: https://aur.archlinux.org/wayneko-git.git (read-only, click to copy)
Package Base: wayneko-git
Description: Display an animated neko cat on the bottom of a Wayland output.
Upstream URL: https://git.sr.ht/~leon_plickat/wayneko
Licenses: GPL-3.0-or-later
Conflicts: wayneko
Provides: wayneko
Submitter: revsuine
Maintainer: revsuine
Last Packager: revsuine
Votes: 4
Popularity: 0.75
First Submitted: 2024-03-28 22:57 (UTC)
Last Updated: 2025-06-25 15:50 (UTC)

Latest Comments

Zentino commented on 2025-06-25 16:58 (UTC)

@revsuine Glad to see the patch applied! BTW removing the -Werror flag will fix compile error with clang, while -std=gnu17 option is not mandatory to clang compilation.

revsuine commented on 2025-06-25 15:51 (UTC)

@Zentino Thank you! I've added your patch

Zentino commented on 2025-06-23 07:40 (UTC)

Latest code can't compile with gcc15 because gcc15 changed default c std from gnu17 to gnu23. The following patch fixes compilation with gcc15 and clang:

diff --git a/Makefile b/Makefile
index 71ac623..881c2d3 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ MANDIR=$(PREFIX)/share/man
 BASHCOMPDIR=$(PREFIX)/share/bash-completion/completions
 ZSHCOMPDIR=$(PREFIX)/share/zsh/vendor-completions

-CFLAGS=-Wall -Werror -Wextra -Wpedantic -Wno-unused-parameter -Wconversion $\
+CFLAGS=-std=gnu17 -Wall -Wextra -Wpedantic -Wno-unused-parameter -Wconversion $\
        -Wformat-security -Wformat -Wsign-conversion -Wfloat-conversion $\
        -Wunused-result $(shell pkg-config --cflags pixman-1)
 LIBS=-lwayland-client $(shell pkg-config --libs pixman-1) -lrt