aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/100_use-cppflags.patch
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-24 14:36:40 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-24 14:37:05 +0000
commit8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch)
treecd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/100_use-cppflags.patch
parentUpdate Vcs-Browser (diff)
downloadw3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz
w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to 'debian/patches/100_use-cppflags.patch')
-rw-r--r--debian/patches/100_use-cppflags.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/100_use-cppflags.patch b/debian/patches/100_use-cppflags.patch
deleted file mode 100644
index 0b76fb2..0000000
--- a/debian/patches/100_use-cppflags.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Use $(CPPFLAGS) with $(CPP)
- Use CPPFLAGS from environment (dpkg-buildflags).
- Necessary for hardening flags.
-Author: Simon Ruderich <simon@ruderich.org>
-Bug-Debian: http://bugs.debian.org/665491
-
---- w3m-0.5.3.orig/Makefile.in
-+++ w3m-0.5.3/Makefile.in
-@@ -150,7 +150,7 @@ parsetagx.o: html.c
-
- funcname.tab: $(DEFUNS)
- (echo '#define DEFUN(x,y,z) x y';\
-- sed -ne '/^DEFUN/{p;n;/^[ ]/p;}' $(DEFUNS)) | $(CPP) - | \
-+ sed -ne '/^DEFUN/{p;n;/^[ ]/p;}' $(DEFUNS)) | $(CPP) $(CPPFLAGS) - | \
- awk '$$1 ~ /^[_A-Za-z]/ { \
- for (i=2;i<=NF;i++) { print $$i, $$1} \
- }' > $@.tmp