summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-09-15 11:04:14 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-09-19 17:52:32 +0200
commit16cf4489336fcfddc3b335a499a958e0fd8277e7 (patch)
tree5c11275fc6c419f5266e6da8671bbf958c891e25 /pkgs/development/libraries/gettext
parent52d1f68005bcec196f4d7f7b419b119bdfdf7c03 (diff)
downloadnixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar.gz
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar.bz2
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar.lz
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar.xz
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.tar.zst
nixpkgs-16cf4489336fcfddc3b335a499a958e0fd8277e7.zip
gettext, gcc5: enable stackprotector now
This has been forgotten in #29349 ?
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index ee74836df81..a35d2380ede 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -12,8 +12,7 @@ stdenv.mkDerivation rec {
 
   outputs = [ "out" "man" "doc" "info" ];
 
-  # FIXME stackprotector needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "format" "stackprotector" ];
+  hardeningDisable = [ "format" ];
 
   LDFLAGS = if stdenv.isSunOS then "-lm -lmd -lmp -luutil -lnvpair -lnsl -lidmap -lavl -lsec" else "";