mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
xbmc: add libnfs support
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
243c7c2024
commit
be11c233ba
@ -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 \
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user