xbmc: enable webserver

This commit is contained in:
Domen Kožar 2013-09-29 21:17:26 +02:00
parent a68128ab8c
commit b7b79e7000

View File

@ -19,6 +19,7 @@
, udev, udevSupport ? true , udev, udevSupport ? true
, libusb ? null, usbSupport ? false , libusb ? null, usbSupport ? false
, samba ? null, sambaSupport ? true , samba ? null, sambaSupport ? true
, libmicrohttpd
# TODO: would be nice to have nfsSupport (needs libnfs library) # TODO: would be nice to have nfsSupport (needs libnfs library)
# TODO: librtmp # TODO: librtmp
, libvdpau ? null, vdpauSupport ? true , libvdpau ? null, vdpauSupport ? true
@ -43,7 +44,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
pkgconfig cmake gnumake yasm python pkgconfig cmake gnumake yasm python
boost boost libmicrohttpd
gettext pcre yajl fribidi gettext pcre yajl fribidi
openssl gperf tinyxml2 taglib libssh swig jre openssl gperf tinyxml2 taglib libssh swig jre
libX11 xproto inputproto libX11 xproto inputproto
@ -75,7 +76,6 @@ stdenv.mkDerivation rec {
configureFlags = [ configureFlags = [
"--enable-external-libraries" "--enable-external-libraries"
"--disable-webserver"
] ]
++ lib.optional (! sambaSupport) "--disable-samba" ++ lib.optional (! sambaSupport) "--disable-samba"
++ lib.optional vdpauSupport "--enable-vdpau" ++ lib.optional vdpauSupport "--enable-vdpau"