1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Date: Tue, 25 Oct 2022 21:38:20 -0400
Subject: disable-warnings-as-errors-for-libtest
---
libtest/GNUmakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: jffi/libtest/GNUmakefile
===================================================================
--- jffi.orig/libtest/GNUmakefile
+++ jffi/libtest/GNUmakefile
@@ -44,7 +44,7 @@ TEST_OBJS := $(patsubst $(SRC_DIR)/%.c,
# http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html
JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing
OFLAGS = -O2 $(JFLAGS)
-WFLAGS = -W -Werror -Wall -Wno-unused -Wno-unused-parameter -Wno-parentheses
+WFLAGS = -W -Wall -Wno-unused -Wno-unused-parameter -Wno-parentheses
PICFLAGS = -fPIC
SOFLAGS = -shared -Wl,-O1
LDFLAGS += $(SOFLAGS)
|