From: msweet Date: Wed, 5 Mar 2014 20:00:54 +0000 (+0000) Subject: Update Linux "relro" support (STR #4349) X-Git-Tag: v2.2b1~716 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ee955fecb80fe0e47a6d1785aa0bdb7d5beb515;p=thirdparty%2Fcups.git Update Linux "relro" support (STR #4349) git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11683 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-1.7.txt b/CHANGES-1.7.txt index b6e6e67af4..61d434d97c 100644 --- a/CHANGES-1.7.txt +++ b/CHANGES-1.7.txt @@ -8,6 +8,7 @@ CHANGES IN CUPS V1.7.2 - Documentation fixes (STR #3259, STR #4346) - Fixed the Japanese localization (STR #4385) - Added a German localization (STR #4363) + - Updated Linux "relro" support (STR #4349) - cupsDoIORequest could miss the server status, causing failed lpadmin and other administrative commands (STR #4386) - cupsEnumDests didn't always call the callback function (STR #4380) diff --git a/config-scripts/cups-compiler.m4 b/config-scripts/cups-compiler.m4 index 33c1f47fe7..f5a39f4537 100644 --- a/config-scripts/cups-compiler.m4 +++ b/config-scripts/cups-compiler.m4 @@ -3,7 +3,7 @@ dnl "$Id$" dnl dnl Compiler stuff for CUPS. dnl -dnl Copyright 2007-2013 by Apple Inc. +dnl Copyright 2007-2014 by Apple Inc. dnl Copyright 1997-2007 by Easy Software Products, all rights reserved. dnl dnl These coded instructions, statements, and computer programs are the @@ -185,7 +185,7 @@ if test -n "$GCC"; then # The -z relro option is provided by the Linux linker command to # make relocatable data read-only. if test x$enable_relro = xyes; then - RELROFLAGS="-Wl,-z,relro" + RELROFLAGS="-Wl,-z,relro,-z,now" fi ;; esac