diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-06 16:15:30 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | c51a32d16e43ca3bda9e22a8c184fedd46f2e0b4 (patch) | |
tree | 31966efde77a21aa47d265f940fdcd770248ab74 | |
parent | 9b66ebe14eeb5da6606ae5534a24ef37603b9522 (diff) |
system/virtualbox: Enabled vpx and pulseaudio
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/virtualbox/README | 3 | ||||
-rw-r--r-- | system/virtualbox/virtualbox.SlackBuild | 19 |
2 files changed, 1 insertions, 21 deletions
diff --git a/system/virtualbox/README b/system/virtualbox/README index 6a9da63a9be2..283c5faba6f7 100644 --- a/system/virtualbox/README +++ b/system/virtualbox/README @@ -19,9 +19,6 @@ This will require jdk as optional dependency. If you want to attach VirtualBox to a VDE network you will need vde2. -If you want to be able to capture the video output of your virtual -hosts you will need libvpx, then pass to the script VPX=yes. - See README.SLACKWARE for some setup notes. NOTE: This will not build on a stock x86_64 system. diff --git a/system/virtualbox/virtualbox.SlackBuild b/system/virtualbox/virtualbox.SlackBuild index 26e1d330111e..67e22f4fb321 100644 --- a/system/virtualbox/virtualbox.SlackBuild +++ b/system/virtualbox/virtualbox.SlackBuild @@ -77,21 +77,6 @@ else java="" fi -# Enable vpx support for video capturing -if [ "${VPX:-no}" = "no" ]; then - libvpx="--disable-libvpx" -else - libvpx="" -fi - -# Enable pulseaudio integration -if [ "${PULSE:-no}" = "no" ]; then - libpulse="--disable-pulse" -else - libpulse="" -fi - - if [ "${WEBSERVICE:-no}" = "no" ]; then web_service="" vboxwebsrv="" @@ -156,9 +141,7 @@ CXXFLAGS="$SLKCFLAGS" \ $web_service \ $harden \ $gui \ - $java \ - $libvpx \ - $libpulse + $java . ./env.sh |