about summary refs log tree commit diff
path: root/pkgs/development/libraries/freetype
diff options
context:
space:
mode:
authorcmfwyp <cmfwyp@riseup.net>2016-08-16 02:36:40 -0400
committerNikolay Amiantov <ab@fmap.me>2016-08-20 03:21:05 +0300
commit574bba7f065f16a588e3ba21cb31df967e72a252 (patch)
tree4b1bac386ee8265a1bbe632ab5a19e4aa8eb70a3 /pkgs/development/libraries/freetype
parenteb6f576ffd4a7ac1d8807dcca2229bff49dcd21d (diff)
downloadnixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar.gz
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar.bz2
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar.lz
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar.xz
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.tar.zst
nixlib-574bba7f065f16a588e3ba21cb31df967e72a252.zip
freetype: remove -fno-strict-aliasing
The strict aliasing violations this was meant to fix were already
fixed in FreeType.
Diffstat (limited to 'pkgs/development/libraries/freetype')
-rw-r--r--pkgs/development/libraries/freetype/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix
index 0548d1433b75..39a71aea3194 100644
--- a/pkgs/development/libraries/freetype/default.nix
+++ b/pkgs/development/libraries/freetype/default.nix
@@ -46,8 +46,6 @@ stdenv.mkDerivation rec {
 
   configureFlags = "--disable-static --bindir=$(dev)/bin";
 
-  # from Gentoo, see https://bugzilla.redhat.com/show_bug.cgi?id=506840
-  NIX_CFLAGS_COMPILE = "-fno-strict-aliasing";
   # The asm for armel is written with the 'asm' keyword.
   CFLAGS = optionalString stdenv.isArm "-std=gnu99";