diff --git a/pkgs/system/system-template-everything.fix b/pkgs/system/system-template-everything.fix index 8b983630c99..93118e4581d 100644 --- a/pkgs/system/system-template-everything.fix +++ b/pkgs/system/system-template-everything.fix @@ -6,4 +6,5 @@ Call(IncludeFix("system/system.fix"), , ("sylpheed", True) , ("libxslt", True) , ("docbook", True) + , ("httpd", True) ]) diff --git a/pkgs/system/system-template-server.fix b/pkgs/system/system-template-server.fix index f96d5f6d73c..2de4a28cbc6 100644 --- a/pkgs/system/system-template-server.fix +++ b/pkgs/system/system-template-server.fix @@ -6,4 +6,5 @@ Call(IncludeFix("system/system.fix"), , ("sylpheed", False) , ("libxslt", False) , ("docbook", False) + , ("httpd", True) ]) diff --git a/pkgs/system/system.fix b/pkgs/system/system.fix index 4ad1d7b3f75..0f9060affff 100644 --- a/pkgs/system/system.fix +++ b/pkgs/system/system.fix @@ -1,4 +1,4 @@ -Function(["subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "docbook"], +Function(["subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "docbook", "httpd"], Package( [ ("name", "system") , ("build", Relative("system/populate-linkdirs.pl")) @@ -21,6 +21,7 @@ Function(["subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", " , ("actLibXslt", If(Var("libxslt"), IncludeFix("libxslt/libxslt.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"), "")) ] ) -) \ No newline at end of file +)