1
0
forked from pool/libt3window

4 Commits

7 changed files with 43 additions and 12 deletions

View File

@@ -0,0 +1,37 @@
From 1b808e79311e016f8af3d25ecc64f3de26279f1a Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de>
Date: Sat, 2 Nov 2024 22:48:57 +0100
Subject: [PATCH] build: fix configure failure in gcc-14
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
References: https://github.com/gphalkes/t3window/pull/2
```
$ ./configure
[ 5s] Checking for curses header file... no
[ 5s] !! Can not find curses/tinfo library. The curses/tinfo library is required to compile libt3key.
$ cat config.log
.config.c:8:13: error: implicit declaration of function "setupterm";
did you mean set_term? [-Wimplicit-function-declaration]
```
---
dist/config.pkg | 1 +
1 file changed, 1 insertion(+)
diff --git a/dist/config.pkg b/dist/config.pkg
index be5415e..c397384 100644
--- a/dist/config.pkg
+++ b/dist/config.pkg
@@ -121,6 +121,7 @@ EOF
#include <stdio.h>
#include <stdlib.h>
#include <curses.h>
+#include <term.h>
int main(int argc, char *argv[]) {
int args[9], error, fd;
--
2.47.0

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c14d3f4f946637fd6c3fa23ef7511fa505880946e151406d5e16f645d24e792
size 96736

Binary file not shown.

BIN
libt3window-0.4.2.tar.bz2 (Stored with Git LFS)

Binary file not shown.

Binary file not shown.

View File

@@ -1,10 +1,3 @@
-------------------------------------------------------------------
Sun Mar 30 11:05:28 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.4.2
* GCC 14 support
- Delete 0001-build-fix-configure-failure-in-gcc-14.patch (merged)
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Nov 2 21:51:13 UTC 2024 - Jan Engelhardt <jengelh@inai.de> Sat Nov 2 21:51:13 UTC 2024 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package libt3window # spec file for package libt3window
# #
# Copyright (c) 2025 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
Name: libt3window Name: libt3window
%define lname libt3window0 %define lname libt3window0
Version: 0.4.2 Version: 0.4.1
Release: 0 Release: 0
Summary: The Tilde Toolkit's window-based terminal program library Summary: The Tilde Toolkit's window-based terminal program library
License: GPL-3.0-only License: GPL-3.0-only
@@ -27,6 +27,7 @@ URL: https://os.ghalkes.nl/t3/libt3window.html
#Git-Clone: https://github.com/gphalkes/t3widget #Git-Clone: https://github.com/gphalkes/t3widget
Source: https://os.ghalkes.nl/dist/%name-%version.tar.bz2 Source: https://os.ghalkes.nl/dist/%name-%version.tar.bz2
Source2: https://os.ghalkes.nl/dist/%name-%version.tar.bz2.sig Source2: https://os.ghalkes.nl/dist/%name-%version.tar.bz2.sig
Patch1: 0001-build-fix-configure-failure-in-gcc-14.patch
Source3: %name.keyring Source3: %name.keyring
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: gettext-tools BuildRequires: gettext-tools