libunistring: Try to get the shared library on Cygwin.

svn path=/nixpkgs/trunk/; revision=20038
This commit is contained in:
Ludovic Courtès 2010-02-16 09:08:40 +00:00
parent 1033f5e6fa
commit 1afa19a68a

View File

@ -1,6 +1,6 @@
{ fetchurl, stdenv, libiconv }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "libunistring-0.9.2.1";
src = fetchurl {
@ -47,3 +47,12 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.all;
};
}
//
# On Cygwin Libtool is unable to find `libiconv.dll' if there's no explicit
# `-L/path/to/libiconv' argument on the linker's command line; and since it
# can't find the dll, it will only create a static library.
(if (stdenv ? glibc)
then {}
else { configureFlags = "--with-libiconv-prefix=${libiconv}"; }))