* Allow enabling of httpd.

svn path=/nixpkgs/trunk/; revision=263
This commit is contained in:
Eelco Dolstra 2003-08-06 14:53:00 +00:00
parent 9f94d884b7
commit 391c26970d
3 changed files with 5 additions and 2 deletions

View file

@ -6,4 +6,5 @@ Call(IncludeFix("system/system.fix"),
, ("sylpheed", True)
, ("libxslt", True)
, ("docbook", True)
, ("httpd", True)
])

View file

@ -6,4 +6,5 @@ Call(IncludeFix("system/system.fix"),
, ("sylpheed", False)
, ("libxslt", False)
, ("docbook", False)
, ("httpd", True)
])

View file

@ -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"), ""))
]
)
)
)