mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 03:41:44 +00:00
5d8d4fbbcb
The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
From 40eb9ce75518817762a0eac4a93016ab817add89 Mon Sep 17 00:00:00 2001
|
|
From: Lee Duncan <lduncan@suse.com>
|
|
Date: Sat, 1 Feb 2020 10:23:04 -0800
|
|
Subject: [PATCH] Fix 586 compile issue and remove -Werror
|
|
|
|
Using -Werror causes any issue to break the build, whereas
|
|
I'd rather let the build continue and address the issue.
|
|
|
|
Also, fixed one signed-vs-unsigned compare for time_t, which
|
|
shows up only on 586 (32-bit).
|
|
---
|
|
configure.ac | 2 +-
|
|
isnsdd.c | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -17,7 +17,7 @@ AC_PATH_PROG(SH, sh)
|
|
dnl C Compiler features
|
|
AC_C_INLINE
|
|
if test "$GCC" = "yes"; then
|
|
- CFLAGS="-Wall -Werror -Wextra $CFLAGS"
|
|
+ CFLAGS="-Wall -Wextra $CFLAGS"
|
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
|
fi
|
|
|
|
--- a/isnsdd.c
|
|
+++ b/isnsdd.c
|
|
@@ -401,7 +401,7 @@ check_portal_registration(__attribute__(
|
|
continue;
|
|
|
|
last_modified = isns_object_last_modified(obj);
|
|
- if (last_modified + 2 * interval > now) {
|
|
+ if ((time_t)(last_modified + 2 * interval) > now) {
|
|
good_portals++;
|
|
continue;
|
|
}
|