summary refs log tree commit diff
path: root/pkgs/development/libraries/aws-sdk-cpp
diff options
context:
space:
mode:
authorobadz <obadz-git@obadz.com>2016-07-31 15:02:56 +0100
committerobadz <obadz-git@obadz.com>2016-07-31 15:03:50 +0100
commit0d259f841b560acc1c5a2c9cbbd38614019bdba8 (patch)
treef2cf52b12252e9300d6a8ccbdfad62de2cadf786 /pkgs/development/libraries/aws-sdk-cpp
parentd6452987fb1af2aece6367c9d8d98ce1993ecc79 (diff)
downloadnixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar.gz
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar.bz2
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar.lz
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar.xz
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.tar.zst
nixpkgs-0d259f841b560acc1c5a2c9cbbd38614019bdba8.zip
aws-sdk-cpp: add compile flag -fpermissive due to libcurl upgrade
curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and
therefore requires the followin flag until this package gets updated
Diffstat (limited to 'pkgs/development/libraries/aws-sdk-cpp')
-rw-r--r--pkgs/development/libraries/aws-sdk-cpp/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 1848bd064f1..948cbacf876 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -23,6 +23,10 @@ stdenv.mkDerivation rec {
     ++ lib.optional (apis != ["*"])
       "-DBUILD_ONLY=${lib.concatMapStringsSep ";" (api: "aws-cpp-sdk-" + api) apis}";
 
+  # curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and
+  # therefore requires the followin flag until this package gets updated
+  NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
+
   enableParallelBuilding = true;
 
   preBuild =