From c173a50869924102ad1e7a9c9dde32bc45d72e66 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 14 Aug 2003 17:59:10 +0000 Subject: [PATCH] * Activate libxml (xmllint). svn path=/nixpkgs/trunk/; revision=291 --- pkgs/system/system-template-everything.fix | 1 + pkgs/system/system.fix | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/system/system-template-everything.fix b/pkgs/system/system-template-everything.fix index c01da7f357b..7879fdbcd00 100644 --- a/pkgs/system/system-template-everything.fix +++ b/pkgs/system/system-template-everything.fix @@ -5,6 +5,7 @@ Call(IncludeFix("system/system.fix"), , ("mplayer", True) , ("sylpheed", True) , ("libxslt", True) + , ("libxml", True) , ("docbook", True) , ("httpd", True) , ("firebird", True) diff --git a/pkgs/system/system.fix b/pkgs/system/system.fix index b280f78e53c..876d7117580 100644 --- a/pkgs/system/system.fix +++ b/pkgs/system/system.fix @@ -1,4 +1,7 @@ -Function(["subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "docbook", "httpd", "firebird"], +Function( + [ "subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "libxml" + , "docbook", "httpd", "firebird" + ], Package( [ ("name", "system") , ("build", Relative("system/populate-linkdirs.pl")) @@ -19,6 +22,7 @@ Function(["subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", " , ("actMPlayer", If(Var("mplayer"), IncludeFix("MPlayer/MPlayer.fix"), "")) , ("actSylpheed", If(Var("sylpheed"), IncludeFix("sylpheed/sylpheed.fix"), "")) , ("actLibXslt", If(Var("libxslt"), IncludeFix("libxslt/libxslt.fix"), "")) + , ("actLibXml", If(Var("libxml"), IncludeFix("libxml2/libxml2.fix"), "")) , ("actDocbookXml", If(Var("docbook"), IncludeFix("docbook-xml/docbook-xml.fix"), "")) , ("actDocbookXsl", If(Var("docbook"), IncludeFix("docbook-xsl/docbook-xsl.fix"), "")) , ("actHttpd", If(Var("httpd"), IncludeFix("httpd/httpd.fix"), ""))