From 574bba7f065f16a588e3ba21cb31df967e72a252 Mon Sep 17 00:00:00 2001 From: cmfwyp Date: Tue, 16 Aug 2016 02:36:40 -0400 Subject: [PATCH] freetype: remove -fno-strict-aliasing The strict aliasing violations this was meant to fix were already fixed in FreeType. --- pkgs/development/libraries/freetype/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index 0548d1433b7..39a71aea319 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";