Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xbbs fixes #429

Merged
merged 25 commits into from
Jan 5, 2025
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4757f6c
tcl: Update to version 8.6.15
Dennisbonke Jan 5, 2025
807552d
mesa-demos: Update to version 9.0.0
Dennisbonke Jan 5, 2025
6149bb0
dsda-doom: Temporarily disable
Dennisbonke Jan 5, 2025
46fb26f
zip: Fix build failures with gcc 14
Dennisbonke Jan 5, 2025
6fa19d6
unzip: Fix build failures with gcc 14
Dennisbonke Jan 5, 2025
24aba3d
ace: Fix compilation issues on gcc 14
Dennisbonke Jan 5, 2025
22f077a
hwdata: Update to version 0.391
Dennisbonke Jan 5, 2025
d6832f4
usbutils: Update to version 018
Dennisbonke Jan 5, 2025
db5431c
havoc: Update to version 0.6.0
Dennisbonke Jan 5, 2025
398e5b2
tyr-quake: Disable temporarily due to gcc 14 breakage
Dennisbonke Jan 5, 2025
dfce5f5
cmatrix: Add missing include
Dennisbonke Jan 5, 2025
2098ed2
alsa-lib: Update to version 1.2.13
Dennisbonke Jan 5, 2025
29fd18a
gdbm: Add missing include
Dennisbonke Jan 5, 2025
8e74ff5
cpio: Update to version 2.15
Dennisbonke Jan 5, 2025
78d7b75
p11-kit: Update to version 0.25.5
Dennisbonke Jan 5, 2025
d368e91
c-ares: Update to version 1.34.4
Dennisbonke Jan 5, 2025
fdae5e9
argp-standalone: Add missing include
Dennisbonke Jan 5, 2025
5a86d2d
libjpeg-turbo: Update to version 3.1.0
Dennisbonke Jan 5, 2025
91ec24f
openssl: Add missing includes
Dennisbonke Jan 5, 2025
4b5ae00
json-c: Update to version 0.18
Dennisbonke Jan 5, 2025
76d9131
pciutils: Update to version 3.13.0
Dennisbonke Jan 5, 2025
92d6328
linux-headers: Update to version 6.12.8
Dennisbonke Jan 5, 2025
4e32ef2
iproute2: Update to version 6.12.0
Dennisbonke Jan 5, 2025
ff8b69d
libgee: Fix build failures with gcc 14
Dennisbonke Jan 5, 2025
a3905d3
perl: Disable after gcc 14 build failures
Dennisbonke Jan 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
havoc: Update to version 0.6.0
  • Loading branch information
Dennisbonke committed Jan 5, 2025
commit db5431c0e5b125f641fb61d956734156dfcc733c
6 changes: 3 additions & 3 deletions bootstrap.d/gui-apps.y4.yml
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@ packages:
source:
subdir: 'ports'
git: 'https://github.com/ii8/havoc.git'
tag: '0.4.0'
version: '0.4.0'
tag: '0.6.0'
version: '0.6.0'
tools_required:
- system-gcc
- host-pkg-config
@@ -24,7 +24,7 @@ packages:
- wayland
- wayland-protocols
- libxkbcommon
revision: 4
revision: 1
configure:
- args: ['cp', '-r', '@THIS_SOURCE_DIR@/.', '@THIS_BUILD_DIR@']
build:
25 changes: 25 additions & 0 deletions patches/havoc/0001-Add-missing-include.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From 547a37aa778404e180821c483e235d26342e1095 Mon Sep 17 00:00:00 2001
From: Dennis Bonke <admin@dennisbonke.com>
Date: Sun, 5 Jan 2025 14:19:07 +0100
Subject: [PATCH] Add missing include

Signed-off-by: Dennis Bonke <admin@dennisbonke.com>
---
main.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/main.c b/main.c
index d83b829..d1ed051 100644
--- a/main.c
+++ b/main.c
@@ -14,6 +14,7 @@
#include <fcntl.h>
#include <unistd.h>
#include <pty.h>
+#include <sys/ioctl.h>

#include <xkbcommon/xkbcommon-compose.h>
#include <wayland-client-core.h>
--
2.45.2