ruby-changes:21865
From: nobu <ko1@a...>
Date: Thu, 1 Dec 2011 10:32:18 +0900 (JST)
Subject: [ruby-changes:21865] nobu:r33914 (trunk): * configure.in (LDFLAGS): -fstack-protector is always needed to
nobu 2011-12-01 10:32:02 +0900 (Thu, 01 Dec 2011) New Revision: 33914 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33914 Log: * configure.in (LDFLAGS): -fstack-protector is always needed to link static library created with it. [ruby-core:41387] [Bug#5686] Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 33913) +++ configure.in (revision 33914) @@ -510,6 +510,7 @@ if test "x$stack_protector" = xyes; then RUBY_APPEND_OPTION(XCFLAGS, -fstack-protector) RUBY_APPEND_OPTION(XLDFLAGS, -fstack-protector) + RUBY_APPEND_OPTION(LDFLAGS, -fstack-protector) fi # suppress annoying -Wstrict-overflow warnings Index: ChangeLog =================================================================== --- ChangeLog (revision 33913) +++ ChangeLog (revision 33914) @@ -1,3 +1,9 @@ +Thu Dec 1 10:31:55 2011 Nobuyoshi Nakada <nobu@r...> + + * configure.in (LDFLAGS): -fstack-protector is always needed to + link static library created with it. [ruby-core:41387] + [Bug#5686] + Thu Dec 1 07:03:51 2011 KOSAKI Motohiro <kosaki.motohiro@g...> * configure.in: add sys/prctl.h test. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/