* Only build MySQL if mysqlSupport is enabled. Reported by Armijn.

svn path=/nixpkgs/trunk/; revision=4182
This commit is contained in:
Eelco Dolstra 2005-11-01 11:58:06 +00:00
parent e542ee6e4f
commit f47cef6607

View File

@ -27,6 +27,7 @@ stdenv.mkDerivation {
patches = [./strip.patch];
inherit threadSupport xftSupport libXft xrenderSupport libXrender;
inherit mysqlSupport mysql;
inherit mysqlSupport;
mysql = if mysqlSupport then mysql else null;
inherit (libXft) freetype fontconfig;
}