|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
Index: deps/Makefile
|
|
|
|
|
--- deps/Makefile.orig 2024-10-18 21:33:44.096555000 +0200
|
|
|
|
|
+++ deps/Makefile 2024-10-18 21:34:02.438624000 +0200
|
|
|
|
|
@@ -79,7 +79,7 @@
|
|
|
|
|
--- deps/Makefile.orig 2025-10-21 18:05:42.000000000 +0200
|
|
|
|
|
+++ deps/Makefile 2025-11-22 10:01:22.992431000 +0100
|
|
|
|
|
@@ -85,7 +85,7 @@
|
|
|
|
|
LUA_CFLAGS= -D__C99FEATURES__=1
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,8 @@ Index: deps/Makefile
|
|
|
|
|
ifeq ($(LUA_DEBUG),yes)
|
|
|
|
|
LUA_CFLAGS+= -O0 -g -DLUA_USE_APICHECK
|
|
|
|
|
Index: deps/linenoise/Makefile
|
|
|
|
|
--- deps/linenoise/Makefile.orig 2024-10-02 23:09:21.000000000 +0200
|
|
|
|
|
+++ deps/linenoise/Makefile 2024-10-18 21:33:44.096673000 +0200
|
|
|
|
|
--- deps/linenoise/Makefile.orig 2025-10-21 18:05:42.000000000 +0200
|
|
|
|
|
+++ deps/linenoise/Makefile 2025-11-22 10:01:22.992516000 +0100
|
|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
|
STD=
|
|
|
|
|
-WARN= -Wall
|
|
|
|
|
@ -23,8 +23,8 @@ Index: deps/linenoise/Makefile
|
|
|
|
|
R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)
|
|
|
|
|
R_LDFLAGS= $(LDFLAGS)
|
|
|
|
|
Index: src/Makefile
|
|
|
|
|
--- src/Makefile.orig 2024-10-02 23:09:21.000000000 +0200
|
|
|
|
|
+++ src/Makefile 2024-10-18 21:34:14.776306000 +0200
|
|
|
|
|
--- src/Makefile.orig 2025-10-21 18:05:42.000000000 +0200
|
|
|
|
|
+++ src/Makefile 2025-11-22 10:01:47.311373000 +0100
|
|
|
|
|
@@ -35,7 +35,7 @@
|
|
|
|
|
NODEPS:=clean distclean
|
|
|
|
|
|
|
|
|
|
@ -38,14 +38,14 @@ Index: src/Makefile
|
|
|
|
|
STD+=-Wno-c11-extensions
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
-WARN=-Wall -W -Wno-missing-field-initializers -Werror=deprecated-declarations -Wstrict-prototypes
|
|
|
|
|
+WARN=-Wno-missing-field-initializers -Werror=deprecated-declarations -Wstrict-prototypes
|
|
|
|
|
-WARN=-Wall -W -Wno-missing-field-initializers -Werror=deprecated-declarations -Wstrict-prototypes -Werror=undef
|
|
|
|
|
+WARN=
|
|
|
|
|
OPT=$(OPTIMIZATION)
|
|
|
|
|
|
|
|
|
|
# Detect if the compiler supports C11 _Atomic.
|
|
|
|
|
Index: src/mkreleasehdr.sh
|
|
|
|
|
--- src/mkreleasehdr.sh.orig 2024-10-02 23:09:21.000000000 +0200
|
|
|
|
|
+++ src/mkreleasehdr.sh 2024-10-18 21:33:44.096905000 +0200
|
|
|
|
|
--- src/mkreleasehdr.sh.orig 2025-10-21 18:05:42.000000000 +0200
|
|
|
|
|
+++ src/mkreleasehdr.sh 2025-11-22 10:01:22.992753000 +0100
|
|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
|
#!/bin/sh
|
|
|
|
|
GIT_SHA1=`(git show-ref --head --hash=8 2> /dev/null || echo 00000000) | head -n1`
|
|
|
|
|
@ -55,8 +55,8 @@ Index: src/mkreleasehdr.sh
|
|
|
|
|
if [ -n "$SOURCE_DATE_EPOCH" ]; then
|
|
|
|
|
BUILD_ID=$(date -u -d "@$SOURCE_DATE_EPOCH" +%s 2>/dev/null || date -u -r "$SOURCE_DATE_EPOCH" +%s 2>/dev/null || date -u +%s)
|
|
|
|
|
Index: src/zmalloc.c
|
|
|
|
|
--- src/zmalloc.c.orig 2024-10-02 23:09:21.000000000 +0200
|
|
|
|
|
+++ src/zmalloc.c 2024-10-18 21:33:44.097038000 +0200
|
|
|
|
|
--- src/zmalloc.c.orig 2025-10-21 18:05:42.000000000 +0200
|
|
|
|
|
+++ src/zmalloc.c 2025-11-22 10:01:22.992879000 +0100
|
|
|
|
|
@@ -35,6 +35,9 @@
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|