-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ Update alpine Docker tag to v3.21 (#303)
* ⬆️ Update alpine Docker tag to v3.21 * Update Builder Packages for Alpine 3.21 * Add Argtable2 patches --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Figus <[email protected]>
- Loading branch information
1 parent
873a4cd
commit e341732
Showing
4 changed files
with
68 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
tvheadend/argtable2_config/fix-implicit-function-declaration.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
From febb2928d1e72c7adc914b2ef8e0611e1a5ea3fd Mon Sep 17 00:00:00 2001 | ||
From: Sam James <[email protected]> | ||
Date: Thu, 6 Oct 2022 18:10:52 +0100 | ||
Subject: [PATCH] Fix implicit function declaration | ||
|
||
Bug: https://bugs.gentoo.org/871231 | ||
--- a/src/arg_int.c | ||
+++ b/src/arg_int.c | ||
@@ -29,6 +29,7 @@ USA. | ||
/* #endif */ | ||
|
||
#include "argtable2.h" | ||
+#include <ctype.h> | ||
#include <limits.h> | ||
|
||
/* local error codes */ |
27 changes: 27 additions & 0 deletions
27
tvheadend/argtable2_config/fix-undeclared-library-function.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 519609d844f1e5bbf37407de8e43fa2d2be03262 Mon Sep 17 00:00:00 2001 | ||
From: Brahmajit Das <[email protected]> | ||
Date: Sun, 7 May 2023 00:03:40 +0530 | ||
Subject: [PATCH] Fix undeclared library function strcmp | ||
|
||
Bug: https://bugs.gentoo.org/885609 | ||
--- a/tests/fntests.c | ||
+++ b/tests/fntests.c | ||
@@ -1,5 +1,6 @@ | ||
#include "../src/argtable2.h" | ||
#include <assert.h> | ||
+#include <string.h> | ||
|
||
/* for memory leak debugging */ | ||
#ifdef DMALLOC | ||
--- a/tests/test_file.c | ||
+++ b/tests/test_file.c | ||
@@ -21,6 +21,7 @@ USA. | ||
|
||
#include "../src/argtable2.h" | ||
#include <stdlib.h> | ||
+#include <string.h> | ||
|
||
/* for memory leak debugging */ | ||
#ifdef DMALLOC | ||
-- | ||
2.40.1 |