xbmc: add libnfs support

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-06-12 01:32:00 +02:00
parent 243c7c2024
commit be11c233ba
7 changed files with 27 additions and 0 deletions

View File

@ -52,6 +52,12 @@ else
XBMC_AVAHI="--disable-avahi"
fi
if [ "$NFS_SUPPORT" = yes ]; then
XBMC_NFS="--enable-nfs"
else
XBMC_NFS="--disable-nfs"
fi
if [ "$WEBSERVER" = yes ]; then
XBMC_WEBSERVER="--enable-webserver"
else
@ -156,6 +162,7 @@ cd $PKG_BUILD
--disable-ccache \
$XBMC_PULSEAUDIO \
--enable-rtmp \
$XBMC_NFS \
--enable-ffmpeg-libvorbis \
--enable-lame \
$XBMC_DVDCSS \

View File

@ -45,6 +45,11 @@ if [ "$AVAHI_DAEMON" = yes ]; then
PKG_DEPENDS="$PKG_DEPENDS avahi"
fi
if [ "$NFS_SUPPORT" = yes ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libnfs"
PKG_DEPENDS="$PKG_DEPENDS libnfs"
fi
if [ "$WEBSERVER" = yes ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libmicrohttpd"
PKG_DEPENDS="$PKG_DEPENDS libmicrohttpd"

View File

@ -128,6 +128,9 @@
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build with libnfs support (mounting nfs shares with XBMC) (yes / no)
NFS_SUPPORT="yes"
# build and install with XBMC webfrontend (yes / no)
WEBSERVER="yes"

View File

@ -128,6 +128,9 @@
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build with libnfs support (mounting nfs shares with XBMC) (yes / no)
NFS_SUPPORT="yes"
# build and install with XBMC webfrontend (yes / no)
WEBSERVER="yes"

View File

@ -128,6 +128,9 @@
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build with libnfs support (mounting nfs shares with XBMC) (yes / no)
NFS_SUPPORT="yes"
# build and install with XBMC webfrontend (yes / no)
WEBSERVER="yes"

View File

@ -128,6 +128,9 @@
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build with libnfs support (mounting nfs shares with XBMC) (yes / no)
NFS_SUPPORT="yes"
# build and install with XBMC webfrontend (yes / no)
WEBSERVER="yes"

View File

@ -128,6 +128,9 @@
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build with libnfs support (mounting nfs shares with XBMC) (yes / no)
NFS_SUPPORT="yes"
# build and install with XBMC webfrontend (yes / no)
WEBSERVER="yes"