From 1c41731c33b3d4165774e8b3f7553614a2614111 Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Sat, 11 Apr 2015 11:31:07 -0700 Subject: [PATCH] remove -Werror=sign-compare for now since it's not supported on some older compilers --- src/Makefile.am | 1 - test/Makefile.am | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 140b2e63..12545ef6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -64,7 +64,6 @@ AM_LDFLAGS = \ AM_CPPFLAGS = \ -DSYSCONFDIR='"$(sysconfdir)"' \ -Wall \ - -Werror=sign-compare \ $(READLINE_CFLAGS) \ $(SQLITE3_CFLAGS) diff --git a/test/Makefile.am b/test/Makefile.am index 1a5c8953..1774468a 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -16,7 +16,6 @@ simple-db.db: simple-db.sql AM_CPPFLAGS = \ -Wall \ - -Werror=sign-compare \ -I$(top_srcdir)/src \ $(READLINE_CFLAGS) \ $(SQLITE3_CFLAGS)