Your message dated Thu, 02 Oct 2014 11:35:19 +0000
with message-id <[email protected]>
and subject line Bug#763154: fixed in postfix-gld 1.7-6
has caused the Debian Bug report #763154,
regarding Hardening options incomplete: missings CPPFLAGS and LDFLAGS
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
763154: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=763154
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: postfix-gld
Version: 1.7-5
Severity: important
Tags: patch
User: [email protected]
Usertags: goal-hardening
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Hello,
As you previously enable CFLAGS, i've just refreshed your patch
debian/patches/01 to pass {CPP,LD}FLAGS to make in debian/rules and
updated upstream Makefile.in to use it.
I don't use postfix-gld so it maybe needs more intensive tests than i've
made.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCAAGBQJUJ9RMAAoJEJmGUYuaqqCli5MP/jYxSewDmzTb16KE1E8DMlaU
yr64sJbjBP8nJ2ub3Kj0f96n1rOQKu/5OvKQk6Fi62DrKypNDRzBObvq6iqyt+RA
xg8bcd62hWSeFwDkt5VHNWxqGyMXQ7ECfiR8X4XrlHWnqL+1iY18WfbpFce4ZPxP
jfZI62AsDaHQSYd0xZ/KuIwkgsBrtvhh7z4cEfINKSR1wT/0cAQjjvu1kLMZod2P
xRcbkiPhmkZjAWiX8lnLqqRk1cTRuQHIxZVdj15RXC5Wyml2W4kC9XgyIa6K/qfF
81/mABKeiISNV+xlY0VJe/ztv0HCiOepdfHhvrCZ/tOT/6hu2rPlKHf1MD1OM0yy
LtlkUOa0GEFNQJhtt225NVzPbARHBLCmgY2rT3ptY9yF0UbIlfxTujUwbmv0bmfD
loA4wHWmCG5GlURDdGQX6WLmyRngN26YgRdRYccRB7anpSYfxjyr0m/xyARO4KPU
0XJQbSbMvlhSJI0hFEJZ/RGYV5hMWcYs2WIwUbdytoiZZrJRu6obrbgc4gTfkEO/
Y9fPF2kqHqze+LO9sv14jjOeqSsQ7V8I4Toelln6czZ80oI8SIe+rz6y90B8hMZ8
ug4E5AEzQXrt1R4OyAnNaBYpt4o0OVwbSkMG9KuMlzTy/ZNnDqQKfVSzFaVENuIw
3ddbI+nFf1dlrAIq88Sa
=YEgw
-----END PGP SIGNATURE-----
diff -Nru postfix-gld-1.7/debian/changelog postfix-gld-1.7/debian/changelog
--- postfix-gld-1.7/debian/changelog 2014-03-16 16:53:11.000000000 +0100
+++ postfix-gld-1.7/debian/changelog 2014-09-28 11:13:08.000000000 +0200
@@ -1,3 +1,10 @@
+postfix-gld (1.7-5.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Refresh debian/patches/01 to pass CPPFLAGS and LDFLAGS to gcc calls
+
+ -- Guillaume Delacour <[email protected]> Sun, 28 Sep 2014 11:06:30 +0200
+
postfix-gld (1.7-5) unstable; urgency=medium
* Fixed typo in README.Debian.
diff -Nru postfix-gld-1.7/debian/patches/01 postfix-gld-1.7/debian/patches/01
--- postfix-gld-1.7/debian/patches/01 2010-04-19 00:09:12.000000000 +0200
+++ postfix-gld-1.7/debian/patches/01 2014-09-28 11:12:46.000000000 +0200
@@ -1,8 +1,11 @@
From: Santiago Vila <[email protected]>
Subject: Changed Makefile.in to support DEB_BUILD_OPTIONS
+Last-Update: 2014-09-28
---- a/Makefile.in
-+++ b/Makefile.in
+Index: postfix-gld-1.7/Makefile.in
+===================================================================
+--- postfix-gld-1.7.orig/Makefile.in
++++ postfix-gld-1.7/Makefile.in
@@ -1,23 +1,24 @@
all: gld
@@ -11,27 +14,27 @@
gld: cnf.o server.o sql.o sockets.o greylist.o gld.h
- @CC@ -O2 @DEFS@ -Wall server.o sql.o sockets.o cnf.o greylist.o @LIBS@ @SQL_LIBS@ -o gld
- strip gld
-+ @CC@ $(CFLAGS) @DEFS@ server.o sql.o sockets.o cnf.o greylist.o @LIBS@ @SQL_LIBS@ -o gld
++ @CC@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) @DEFS@ server.o sql.o sockets.o cnf.o greylist.o @LIBS@ @SQL_LIBS@ -o gld
sockets.o: sockets.c sockets.h
- @CC@ -O2 @DEFS@ -Wall -c sockets.c
-+ @CC@ $(CFLAGS) @DEFS@ -c sockets.c
++ @CC@ $(CFLAGS) $(CPPFLAGS) @DEFS@ -c sockets.c
cnf.o: cnf.c gld.h
- @CC@ -O2 @DEFS@ -Wall -c cnf.c
-+ @CC@ $(CFLAGS) @DEFS@ -c cnf.c
++ @CC@ $(CFLAGS) $(CPPFLAGS) @DEFS@ -c cnf.c
greylist.o: greylist.c gld.h
- @CC@ -O2 @DEFS@ -Wall -c greylist.c
-+ @CC@ $(CFLAGS) @DEFS@ -c greylist.c
++ @CC@ $(CFLAGS) $(CPPFLAGS) @DEFS@ -c greylist.c
server.o: server.c gld.h
- @CC@ -O2 @DEFS@ -Wall -c server.c
-+ @CC@ $(CFLAGS) @DEFS@ -c server.c
++ @CC@ $(CFLAGS) $(CPPFLAGS) @DEFS@ -c server.c
sql.o: sql.c
- @CC@ -O2 @DEFS@ @SQL_CFLAGS@ -Wall -c sql.c
-+ @CC@ $(CFLAGS) @DEFS@ @SQL_CFLAGS@ -c sql.c
++ @CC@ $(CFLAGS) $(CPPFLAGS) @DEFS@ @SQL_CFLAGS@ -c sql.c
clean:
rm -f gld *.o
diff -Nru postfix-gld-1.7/debian/rules postfix-gld-1.7/debian/rules
--- postfix-gld-1.7/debian/rules 2014-03-15 12:00:00.000000000 +0100
+++ postfix-gld-1.7/debian/rules 2014-09-28 11:15:49.000000000 +0200
@@ -16,7 +16,7 @@
build:
./configure --prefix=/usr --with-$(DATABASE)
- $(MAKE) CFLAGS="$(CFLAGS)"
+ $(MAKE) CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)"
touch build
clean:
--- End Message ---
--- Begin Message ---
Source: postfix-gld
Source-Version: 1.7-6
We believe that the bug you reported is fixed in the latest version of
postfix-gld, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Santiago Vila <[email protected]> (supplier of updated postfix-gld package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Thu, 02 Oct 2014 13:17:00 +0200
Source: postfix-gld
Binary: postfix-gld
Architecture: source amd64
Version: 1.7-6
Distribution: unstable
Urgency: medium
Maintainer: Santiago Vila <[email protected]>
Changed-By: Santiago Vila <[email protected]>
Description:
postfix-gld - greylisting daemon for postfix, written in C, uses MySQL
Closes: 763154
Changes:
postfix-gld (1.7-6) unstable; urgency=medium
.
* Pass hardening options in CPPFLAGS and LDFLAGS to gcc.
Thanks a lot to Guillaume Delacour for the patch. Closes: #763154.
Checksums-Sha1:
0f4290fb0fe410d753803ddd7ee9e3c65f05348b 1354 postfix-gld_1.7-6.dsc
b8a66c0d8c8138ac29054ccdd4f9e9e9db85f1cb 9240 postfix-gld_1.7-6.debian.tar.xz
d10416f0e49c81d716379e0af9dba083bd09b694 23984 postfix-gld_1.7-6_amd64.deb
Checksums-Sha256:
2b5a78f5338ab1640373c12b76c2ef6a7f5794b8f061774f3fba8df2520b0595 1354
postfix-gld_1.7-6.dsc
9260480e1c05f835dac921531a91788cc2b4b70124d799d043135eadf5cd4a9c 9240
postfix-gld_1.7-6.debian.tar.xz
e257b1a3ddec2e4ff5ee3c714e20423c436cd9d6783e4883a47f71071032fc05 23984
postfix-gld_1.7-6_amd64.deb
Files:
8339dd8702c20cbbea96119959ec5533 23984 mail optional
postfix-gld_1.7-6_amd64.deb
4e494255e1322639296f17c2fb5e2a62 1354 mail optional postfix-gld_1.7-6.dsc
093ee739f7d9617ffbe76835038225a8 9240 mail optional
postfix-gld_1.7-6.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQEcBAEBCAAGBQJULTVZAAoJEEHOfwufG4syuygH/2nnEhXreEVsPW+M7/dOgvfE
hyvBblVJIHUQR4V6BL+nKQJ22GMrfth8lxG1wRCdkUFiV77/ZByUC5dqJXkxmzey
XVo/tA3essv7+wqmhEF2NB/8JOURowmcK4aKY4lyuwZUPGymuzqQIXl+Flg3gNmW
aofZ61eQtlNBmeyZC6WZCoNZI6yilF+pIWU79s2L13PS168dKM/TtGVDEM3edjW5
0PWmjm6qxQfJoOdZQeblM25RihgCeKPrSIZXriHrDfdD3gxi6dO4t/LtEkIufi7/
0ahozecPxHiEzxm+acvQykv9jsmmN8FGTU3wqK7/h+uyezyiKSU4WHyl2d97dMc=
=VjQm
-----END PGP SIGNATURE-----
--- End Message ---