From 9d57ba20f5619e3d30a0dcf12253bc8cdc13aade Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sun, 13 Jan 2013 19:38:15 +0200 Subject: [PATCH 1/4] projects/*/options: add option to build without UPnP support --- packages/mediacenter/xbmc/build | 7 +++++++ projects/ATV/options | 3 +++ projects/Fusion/options | 3 +++ projects/Generic/options | 3 +++ projects/Generic_OSS/options | 3 +++ projects/ION/options | 3 +++ projects/Intel/options | 3 +++ projects/RPi/options | 3 +++ projects/Ultra/options | 3 +++ projects/Virtual/options | 3 +++ 10 files changed, 34 insertions(+) diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index 3ff2f9d1fa..dd3236119a 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -146,6 +146,12 @@ else XBMC_AVAHI="--disable-avahi" fi +if [ "$UPNP_SUPPORT" = yes ]; then + XBMC_UPNP="--enable-upnp" +else + XBMC_UPNP="--disable-upnp" +fi + if [ "$NFS_SUPPORT" = yes ]; then XBMC_NFS="--enable-nfs" else @@ -281,6 +287,7 @@ cd $PKG_BUILD --disable-mid \ --disable-hal \ $XBMC_AVAHI \ + $XBMC_UPNP \ $XBMC_AIRPLAY \ $XBMC_AIRTUNES \ $XBMC_NONFREE \ diff --git a/projects/ATV/options b/projects/ATV/options index 9b0944247d..c501595d13 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -175,6 +175,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Fusion/options b/projects/Fusion/options index 975efb748d..82e16508ef 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 829f09a4fe..0feffc3320 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index 194b9c466a..463f487591 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/ION/options b/projects/ION/options index f7c21849d0..48b563bba6 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Intel/options b/projects/Intel/options index a2754dbe04..2b76884fc6 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/RPi/options b/projects/RPi/options index cc9e2a08fe..1ffaf28924 100755 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Ultra/options b/projects/Ultra/options index a954c61d04..cb6fe2db50 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -174,6 +174,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Virtual/options b/projects/Virtual/options index c52937d55a..745dccbfec 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -169,6 +169,9 @@ # build and install Avahi (Zeroconf) daemon (yes / no) AVAHI_DAEMON="yes" +# build with UPnP support (yes / no) + UPNP_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" From 8d56286013f3a6fb6ecaa86b58e2b7bb24b8f9ed Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sun, 13 Jan 2013 19:42:33 +0200 Subject: [PATCH 2/4] projects/*/options: add option to build without MySQL support --- packages/mediacenter/xbmc-pvr-addons/meta | 9 +++++++-- packages/mediacenter/xbmc/build | 8 ++++++++ packages/mediacenter/xbmc/meta | 7 ++++++- projects/ATV/options | 3 +++ projects/Fusion/options | 3 +++ projects/Generic/options | 3 +++ projects/Generic_OSS/options | 3 +++ projects/ION/options | 3 +++ projects/Intel/options | 3 +++ projects/RPi/options | 3 +++ projects/Ultra/options | 3 +++ projects/Virtual/options | 3 +++ 12 files changed, 48 insertions(+), 3 deletions(-) diff --git a/packages/mediacenter/xbmc-pvr-addons/meta b/packages/mediacenter/xbmc-pvr-addons/meta index 2f9c901f4e..70179b23e2 100644 --- a/packages/mediacenter/xbmc-pvr-addons/meta +++ b/packages/mediacenter/xbmc-pvr-addons/meta @@ -25,11 +25,16 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="https://github.com/opdenkamp/xbmc-pvr-addons" PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="mysql curl" -PKG_BUILD_DEPENDS="toolchain mysql curl" +PKG_DEPENDS="curl" +PKG_BUILD_DEPENDS="toolchain curl" PKG_PRIORITY="optional" PKG_SECTION="mediacenter" PKG_SHORTDESC="Various PVR addons for XBMC" PKG_LONGDESC="This addons allows XBMC PVR to connect to various TV/PVR backends and tuners." PKG_IS_ADDON="no" PKG_AUTORECONF="yes" + +if [ "$MYSQL_SUPPORT" = yes ]; then + PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS mysql" + PKG_DEPENDS="$PKG_DEPENDS mysql" +fi diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index dd3236119a..77e3b12bae 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -152,6 +152,13 @@ else XBMC_UPNP="--disable-upnp" fi +if [ "$MYSQL_SUPPORT" = yes ]; then + XBMC_MYSQL="--enable-mysql" +else + XBMC_MYSQL="--disable-mysql" + +fi + if [ "$NFS_SUPPORT" = yes ]; then XBMC_NFS="--enable-nfs" else @@ -288,6 +295,7 @@ cd $PKG_BUILD --disable-hal \ $XBMC_AVAHI \ $XBMC_UPNP \ + $XBMC_MYSQL \ $XBMC_AIRPLAY \ $XBMC_AIRTUNES \ $XBMC_NONFREE \ diff --git a/packages/mediacenter/xbmc/meta b/packages/mediacenter/xbmc/meta index e9c833cadd..3e0dca1c55 100644 --- a/packages/mediacenter/xbmc/meta +++ b/packages/mediacenter/xbmc/meta @@ -26,7 +26,7 @@ PKG_LICENSE="GPL" PKG_SITE="http://www.xbmc.org" PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" PKG_DEPENDS="boost Python zlib bzip2 systemd pcre ffmpeg libass curl libssh rtmpdump fontconfig tinyxml freetype libmad libogg libmodplug faad2 flac libmpeg2 taglib yajl sqlite bc xbmc-addon-settings" -PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 systemd lzo pcre swig ffmpeg libass enca curl libssh rtmpdump fontconfig fribidi tinyxml libjpeg-turbo libpng tiff freetype jasper libmad libsamplerate libogg libcdio libmodplug faad2 flac libmpeg2 taglib yajl sqlite mysql" +PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 systemd lzo pcre swig ffmpeg libass enca curl libssh rtmpdump fontconfig fribidi tinyxml libjpeg-turbo libpng tiff freetype jasper libmad libsamplerate libogg libcdio libmodplug faad2 flac libmpeg2 taglib yajl sqlite" PKG_PRIORITY="optional" PKG_SECTION="mediacenter" PKG_SHORTDESC="xbmc: XBMC Mediacenter" @@ -130,6 +130,11 @@ if [ "$AVAHI_DAEMON" = yes ]; then PKG_DEPENDS="$PKG_DEPENDS avahi" fi +if [ "$MYSQL_SUPPORT" = yes ]; then + PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS mysql" + PKG_DEPENDS="$PKG_DEPENDS mysql" +fi + if [ "$AIRPLAY_SUPPORT" = yes ]; then PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libplist" PKG_DEPENDS="$PKG_DEPENDS libplist" diff --git a/projects/ATV/options b/projects/ATV/options index c501595d13..c2808dd626 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -178,6 +178,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Fusion/options b/projects/Fusion/options index 82e16508ef..18a10c783a 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 0feffc3320..aa23c4ca6a 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index 463f487591..73cc89cb88 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/ION/options b/projects/ION/options index 48b563bba6..e24e7224fb 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Intel/options b/projects/Intel/options index 2b76884fc6..ad0e3c5294 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/RPi/options b/projects/RPi/options index 1ffaf28924..ed68646f98 100755 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Ultra/options b/projects/Ultra/options index cb6fe2db50..90f668628b 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -177,6 +177,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Virtual/options b/projects/Virtual/options index 745dccbfec..de06d3ba27 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -172,6 +172,9 @@ # build with UPnP support (yes / no) UPNP_SUPPORT="yes" +# build with MySQL support (yes / no) + MYSQL_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" From 1e353f2cff3a0dda3962904e4d3f1114d7c950e3 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sun, 13 Jan 2013 19:44:24 +0200 Subject: [PATCH 3/4] projects/*/options: add option to build without sshlib support --- packages/mediacenter/xbmc/build | 6 ++++++ projects/ATV/options | 3 +++ projects/Fusion/options | 3 +++ projects/Generic/options | 3 +++ projects/Generic_OSS/options | 3 +++ projects/ION/options | 3 +++ projects/Intel/options | 3 +++ projects/RPi/options | 3 +++ projects/Ultra/options | 3 +++ projects/Virtual/options | 3 +++ 10 files changed, 33 insertions(+) diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index 77e3b12bae..a31108cdb3 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -158,6 +158,11 @@ else XBMC_MYSQL="--disable-mysql" fi +if [ "$SSHLIB_SUPPORT" = yes ]; then + XBMC_SSH="--enable-ssh" +else + XBMC_SSH="--disable-ssh" +fi if [ "$NFS_SUPPORT" = yes ]; then XBMC_NFS="--enable-nfs" @@ -296,6 +301,7 @@ cd $PKG_BUILD $XBMC_AVAHI \ $XBMC_UPNP \ $XBMC_MYSQL \ + $XBMC_SSH \ $XBMC_AIRPLAY \ $XBMC_AIRTUNES \ $XBMC_NONFREE \ diff --git a/projects/ATV/options b/projects/ATV/options index c2808dd626..9fcd1dc8d1 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -181,6 +181,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Fusion/options b/projects/Fusion/options index 18a10c783a..1b36b56e83 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic/options b/projects/Generic/options index aa23c4ca6a..50793bc525 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index 73cc89cb88..3c346b3e49 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/ION/options b/projects/ION/options index e24e7224fb..af52f36042 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Intel/options b/projects/Intel/options index ad0e3c5294..42d89a2b4a 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/RPi/options b/projects/RPi/options index ed68646f98..2dad9e55b4 100755 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Ultra/options b/projects/Ultra/options index 90f668628b..93624c8e6a 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -180,6 +180,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Virtual/options b/projects/Virtual/options index de06d3ba27..b3c0713cbe 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -175,6 +175,9 @@ # build with MySQL support (yes / no) MYSQL_SUPPORT="yes" +# build xbmc with sshlib support (yes / no) + SSHLIB_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" From 4c6b3c85f7b2806fd4cc3eee47575a6331f7bc3a Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sun, 13 Jan 2013 19:45:01 +0200 Subject: [PATCH 4/4] projects/*/options: add option to build without optical drive support --- packages/mediacenter/xbmc/build | 8 +++++++- projects/ATV/options | 3 +++ projects/Fusion/options | 3 +++ projects/Generic/options | 3 +++ projects/Generic_OSS/options | 3 +++ projects/ION/options | 3 +++ projects/Intel/options | 3 +++ projects/RPi/options | 3 +++ projects/Ultra/options | 3 +++ projects/Virtual/options | 3 +++ 10 files changed, 34 insertions(+), 1 deletion(-) diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index a31108cdb3..14f200da22 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -164,6 +164,12 @@ else XBMC_SSH="--disable-ssh" fi +if [ "$OPTICAL_DRIVE_SUPPORT" = yes ]; then + XBMC_OPTICAL="--enable-optical-drive" +else + XBMC_OPTICAL="--disable-optical-drive" +fi + if [ "$NFS_SUPPORT" = yes ]; then XBMC_NFS="--enable-nfs" else @@ -307,7 +313,7 @@ cd $PKG_BUILD $XBMC_NONFREE \ --disable-asap-codec \ $XBMC_WEBSERVER \ - --enable-optical-drive \ + $XBMC_OPTICAL \ $XBMC_BLURAY \ --enable-texturepacker --with-texturepacker-root="$ROOT/$TOOLCHAIN" \ --disable-external-libraries \ diff --git a/projects/ATV/options b/projects/ATV/options index 9fcd1dc8d1..b544ea619d 100755 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -184,6 +184,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Fusion/options b/projects/Fusion/options index 1b36b56e83..00a188d25b 100755 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 50793bc525..71a0d6e8a9 100755 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index 3c346b3e49..d6fb78b838 100755 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/ION/options b/projects/ION/options index af52f36042..ec08935ee8 100755 --- a/projects/ION/options +++ b/projects/ION/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Intel/options b/projects/Intel/options index 42d89a2b4a..c7bbb49e8c 100755 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/RPi/options b/projects/RPi/options index 2dad9e55b4..570a89d588 100755 --- a/projects/RPi/options +++ b/projects/RPi/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Ultra/options b/projects/Ultra/options index 93624c8e6a..1b3d95f45c 100755 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -183,6 +183,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes" diff --git a/projects/Virtual/options b/projects/Virtual/options index b3c0713cbe..0e1bbe6937 100755 --- a/projects/Virtual/options +++ b/projects/Virtual/options @@ -178,6 +178,9 @@ # build xbmc with sshlib support (yes / no) SSHLIB_SUPPORT="yes" +# build xbmc with optical drive support (yes / no) + OPTICAL_DRIVE_SUPPORT="yes" + # build with AirPlay support (stream videos from iDevices to XBMC) (yes / no) AIRPLAY_SUPPORT="yes"