3
0
Fork 0
forked from mirrors/nixpkgs

Merge #34373: add comment to the first-parent commit

The PR was done in parallel.
This commit is contained in:
Vladimír Čunát 2018-01-29 06:52:24 +01:00
commit a073e7f163
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -75,6 +75,7 @@ stdenv.mkDerivation rec {
# internal pcre would only add <200kB, but it's relatively common
configureFlags = [ "--with-pcre=system" ]
++ optional stdenv.isDarwin "--disable-compile-warnings"
# glibc inclues GNU libiconv, but Darwin's iconv function is good enonugh.
++ optional (stdenv.hostPlatform.libc != "glibc" && !stdenv.hostPlatform.isDarwin)
"--with-libiconv=gnu"
++ optional stdenv.isSunOS "--disable-dtrace"