Make Unicode support optional

svn path=/nixpkgs/trunk/; revision=20261
This commit is contained in:
Michael Raskin 2010-02-26 07:02:18 +00:00
parent a777402b21
commit 98c282d12b

View File

@ -14,8 +14,10 @@ rec {
inherit buildInputs propagatedBuildInputs;
configureFlags = [
"--enable-threads"
"--enable-unicode"
];
]
++
(a.lib.optional (! a.noUnicode) "--enable-unicode")
;
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall" "fixEclConfig"];