Codebase list mozc / ddc76b5
Add support hardening options Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org> Nobuhiro Iwamatsu 11 years ago
3 changed file(s) with 14 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 mozc (1.5.1053.102-4) unstable; urgency=low
11
22 * Add fcitx to Recommends of fcitx-mozc. (Closes: #673249)
3 * Enable hardening options.
4 * Update debian/control.
5 Add hardening-includes to Build-Depends.
6 * Update debian/rules.
7 Add hardening options.
38
49 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 31 May 2012 10:59:14 +0900
510
66 libcurl4-openssl-dev, pkg-config,
77 python-dev, gyp (>= 0.1~svn824), protobuf-compiler, libgtest-dev,
88 libprotobuf-dev, libqt4-dev, libscim-dev, libuim-dev,
9 libzinnia-dev, fcitx-libs-dev, gettext
9 libzinnia-dev, fcitx-libs-dev, gettext, hardening-includes
1010 Standards-Version: 3.9.3
1111 Homepage: http://code.google.com/p/mozc/
1212
00 #!/usr/bin/make -f
11 # -*- makefile -*-
22 #
3 #
4 include /usr/share/hardening-includes/hardening.make
5
6 CFLAGS=$(shell dpkg-buildflags --get CFLAGS)
7 LDFLAGS=$(shell dpkg-buildflags --get LDFLAGS)
8 CFLAGS+=$(HARDENING_CFLAGS)
9 LDFLAGS+=$(HARDENING_LDFLAGS)
10
311 DEB_BUILD_ARCH_OS := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)
412 DEB_BUILD_MULTIARCH :=$(shell dpkg-architecture -qDEB_BUILD_MULTIARCH)
513 ifeq ($(DEB_BUILD_ARCH_OS),linux)