From: Ian Jackson Date: Wed, 6 Jun 2012 00:50:21 +0000 (+0100) Subject: -Wno-pointer-sign X-Git-Tag: debian/4.1.31~17 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-utils.git;a=commitdiff_plain;h=863dbde3a412c0a38ac8a9b561d0367e651f0e82 -Wno-pointer-sign --- diff --git a/debian/changelog b/debian/changelog index 5c5ee0f..f59d47f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,7 @@ chiark-utils (4.1.31~~iwj) unstable; urgency=low - In the code, rename pix_... variables to be named after the meaning rather than the default colour. + * Add -Wno-pointer-sign to gcc warning options. * Fix the build-depends to refer to nettle-dev not libnettle-dev. * Add ${misc:Depends} to Depends: lines. Causes no change to the .debs. * Switch to git. Move .cvsignores to .gitignore, etc. diff --git a/settings.make b/settings.make index d008a35..5471dbd 100644 --- a/settings.make +++ b/settings.make @@ -27,7 +27,7 @@ CFLAGS= $(WARNINGS) $(OPTIMISE) $(DEBUG) CPPFLAGS= $(CONFIG_CPPFLAGS) WARNINGS= -Wall -Wwrite-strings -Wmissing-prototypes \ - -Wstrict-prototypes -Wpointer-arith + -Wstrict-prototypes -Wpointer-arith -Wno-pointer-sign OPTIMISE= -O2 DEBUG= -g