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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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