diff --git a/debian/changelog b/debian/changelog index e5ecb250..1978f78c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,11 @@ shadow (1:4.1.0-1) UNRELEASED; urgency=low algorithm. It is tagged as deprecated and ENCRYPT_METHOD is recommended instead. New algorithms are also available. Closes: #447747 + * Debian packaging fixes: + - debian/rules: compile with -W -Wall + - debian/rules: large files are now supported by configure. Remove + -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 from + CFLAGS. -- Nicolas FRANCOIS (Nekral) Sat, 17 Nov 2007 18:33:26 +0100 diff --git a/debian/rules b/debian/rules index a6f91218..c51d9682 100755 --- a/debian/rules +++ b/debian/rules @@ -31,7 +31,7 @@ endif # Automatically controls patching at build time: include /usr/share/cdbs/1/rules/patchsys-quilt.mk -CFLAGS = -g -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +CFLAGS = -g -W -Wall ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else