treewide: Make explicit that 'dev' output of libidn is used

This commit is contained in:
Tuomas Tynkkynen 2016-04-16 20:36:27 +03:00 committed by Vladimír Čunát
parent 5898f3bad8
commit 62479404ea
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
( if idnSupport then "--with-libidn=${libidn}" else "--without-libidn" )
( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
]
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";