summary refs log tree commit diff
path: root/pkgs/development/libraries/pixman
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-02-29 19:14:41 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-02-29 19:14:41 +0100
commitb1801168e3eb819d20b301409135e7e7f6a45b7e (patch)
tree30491b6ba0abbe0e4a0e74b75d84929c91cc9060 /pkgs/development/libraries/pixman
parent9af50a2e7d735b4a024cb91e2bf720341675031f (diff)
downloadnixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar.gz
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar.bz2
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar.lz
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar.xz
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.tar.zst
nixpkgs-b1801168e3eb819d20b301409135e7e7f6a45b7e.zip
pixman: remove legacy patches
Diffstat (limited to 'pkgs/development/libraries/pixman')
-rw-r--r--pkgs/development/libraries/pixman/default.nix2
-rw-r--r--pkgs/development/libraries/pixman/fix-clang36.patch11
2 files changed, 1 insertions, 12 deletions
diff --git a/pkgs/development/libraries/pixman/default.nix b/pkgs/development/libraries/pixman/default.nix
index 681e54a781b..dc378711d36 100644
--- a/pkgs/development/libraries/pixman/default.nix
+++ b/pkgs/development/libraries/pixman/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "184lazwdpv67zrlxxswpxrdap85wminh1gmq1i5lcz6iycw39fir";
   };
 
-  patches = stdenv.lib.optional stdenv.isDarwin ./fix-clang36.patch;
+  patches = [];
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = stdenv.lib.optional doCheck libpng;
diff --git a/pkgs/development/libraries/pixman/fix-clang36.patch b/pkgs/development/libraries/pixman/fix-clang36.patch
deleted file mode 100644
index 7db3c7ecaba..00000000000
--- a/pkgs/development/libraries/pixman/fix-clang36.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/pixman/pixman-mmx.c	2014-04-24 08:34:14.000000000 +0400
-+++ b/pixman/pixman-mmx.c	2015-01-30 20:19:28.000000000 +0300
-@@ -89,7 +89,7 @@
-     return __A;
- }
- 
--#  ifdef __OPTIMIZE__
-+#  if defined(__OPTIMIZE__) && !(defined (__clang__) && defined(__clang_major__) && defined(__clang_minor__) && __clang_major__ == 3 && __clang_minor__ >= 6)
- extern __inline __m64 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
- _mm_shuffle_pi16 (__m64 __A, int8_t const __N)
- {