From: Guillem Jover Date: Tue, 26 Feb 2019 04:26:21 +0000 (+0000) Subject: Fix FTBFS with newer gcc 4.6 X-Git-Tag: archive/raspbian/0.3.112-13+rpi1~1^2^2^2~23 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2f1e4e41b0c4fe348d41d3fc068a114e6171fb8c;p=libaio.git Fix FTBFS with newer gcc 4.6 Origin: vendor Forwarded: no Last-Update: 2014-10-09 Using -Werror on a released project is in general not a good idea, as changes in the toolchain and environment can trigger unexpected build failures. Gbp-Pq: Name 04_no_Werror.patch --- diff --git a/harness/Makefile b/harness/Makefile index f477737..efd255a 100644 --- a/harness/Makefile +++ b/harness/Makefile @@ -6,7 +6,7 @@ PROGS:=$(PARTPROGS) $(EXTRAPROGS) HARNESS_SRCS:=main.c # io_queue.c -CFLAGS+=-Wall -Werror -I../src -g -O2 -DPAGE_SIZE=$(shell getconf PAGESIZE) +CFLAGS+=-Wall -I../src -g -O2 -DPAGE_SIZE=$(shell getconf PAGESIZE) #-lpthread -lrt all: $(PROGS)