projects/*/options: add config option to enable installation of Apple mount support (via ifuse), enable ifuse build by default

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-01-06 21:16:07 +01:00
parent 2bd95e1c13
commit 1965d4009f
5 changed files with 15 additions and 0 deletions

View File

@ -126,6 +126,9 @@
# build and install NTFS-3G fuse support (yes / no) # build and install NTFS-3G fuse support (yes / no)
NTFS3G="yes" NTFS3G="yes"
# build and install Apple device mount support (via ifuse) (yes / no)
APPLEMOUNT="yes"
# Displayserver to use (xorg-server / no) # Displayserver to use (xorg-server / no)
DISPLAYSERVER="xorg-server" DISPLAYSERVER="xorg-server"

View File

@ -125,6 +125,9 @@
# build and install NTFS-3G fuse support (yes / no) # build and install NTFS-3G fuse support (yes / no)
NTFS3G="yes" NTFS3G="yes"
# build and install Apple device mount support (via ifuse) (yes / no)
APPLEMOUNT="yes"
# Displayserver to use (xorg-server / no) # Displayserver to use (xorg-server / no)
DISPLAYSERVER="xorg-server" DISPLAYSERVER="xorg-server"

View File

@ -125,6 +125,9 @@
# build and install NTFS-3G fuse support (yes / no) # build and install NTFS-3G fuse support (yes / no)
NTFS3G="yes" NTFS3G="yes"
# build and install Apple device mount support (via ifuse) (yes / no)
APPLEMOUNT="yes"
# Displayserver to use (xorg-server / no) # Displayserver to use (xorg-server / no)
DISPLAYSERVER="xorg-server" DISPLAYSERVER="xorg-server"

View File

@ -125,6 +125,9 @@
# build and install NTFS-3G fuse support (yes / no) # build and install NTFS-3G fuse support (yes / no)
NTFS3G="yes" NTFS3G="yes"
# build and install Apple device mount support (via ifuse) (yes / no)
APPLEMOUNT="yes"
# Displayserver to use (xorg-server / no) # Displayserver to use (xorg-server / no)
DISPLAYSERVER="xorg-server" DISPLAYSERVER="xorg-server"

View File

@ -88,6 +88,9 @@ mkdir -p $INSTALL
# NTFS 3G support # NTFS 3G support
[ "$NTFS3G" = "yes" ] && $SCRIPTS/install ntfs-3g [ "$NTFS3G" = "yes" ] && $SCRIPTS/install ntfs-3g
# Apple mount (ifuse) support
[ "$APPLEMOUNT" = "yes" ] && $SCRIPTS/install ifuse
# Remote support # Remote support
[ "$REMOTE_SUPPORT" = "yes" ] && $SCRIPTS/install remote [ "$REMOTE_SUPPORT" = "yes" ] && $SCRIPTS/install remote