Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-plugins/nspluginwrapper/files: nspluginwrapper-1.4.4-compile-on-hardened.patch
Date: Mon, 04 Jul 2011 15:29:52
Message-Id: 20110704152908.750052004B@flycatcher.gentoo.org
1 chutzpah 11/07/04 15:29:08
2
3 Added: nspluginwrapper-1.4.4-compile-on-hardened.patch
4 Log:
5 Version bump, includes fix for bug #373971. Also add patch to compile on hardened (Bug #368777). Clean out some older versions.
6
7 (Portage version: 2.1.10.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 www-plugins/nspluginwrapper/files/nspluginwrapper-1.4.4-compile-on-hardened.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/nspluginwrapper/files/nspluginwrapper-1.4.4-compile-on-hardened.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/nspluginwrapper/files/nspluginwrapper-1.4.4-compile-on-hardened.patch?rev=1.1&content-type=text/plain
14
15 Index: nspluginwrapper-1.4.4-compile-on-hardened.patch
16 ===================================================================
17 --- b/Makefile 2011-06-29 02:10:27.000000000 +0200
18 +++ a/Makefile 2011-06-29 02:09:06.000000000 +0200
19 @@ -333,7 +333,7 @@
20 @[ -d $(LSB_OBJ_DIR) ] || mkdir $(LSB_OBJ_DIR) > /dev/null 2>&1
21
22 $(LSB_OBJ_DIR)/%.o: $(LSB_SRC_DIR)/%.c
23 - $(CC) $(CFLAGS_32) -nostdinc -fno-builtin -I. -I$(LSB_INC_DIR) -c $< -o $@
24 + $(CC) $(CFLAGS_32) -nostdinc -fno-builtin -I. -I$(LSB_INC_DIR) -c -fno-stack-protector $< -o $@
25
26 $(LSB_OBJ_DIR)/%.a: $(LSB_OBJ_DIR)/%.o
27 $(AR) rc $@ $<