Changeset 44580 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Feb 7, 2013 11:35:37 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83655
- Location:
- trunk/src/VBox/Installer
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/freebsd/Makefile.kmk
r44528 r44580 203 203 endif 204 204 205 ## VBoxBFE - Follow the example set by Windows and Linux.206 #ifdef VBOX_WITH_VBOXBFE207 # VBOX_FBSD_STRIP_BIN += \208 # VBoxBFE \209 # $(if $(VBOX_WITH_HARDENING),VBoxBFE.so)210 # VBOX_FBSD_SYMLINKS += \211 # VBoxBFE212 #endif213 214 205 # Webservices 215 206 ifdef VBOX_WITH_WEBSERVICES … … 323 314 -e "s;_VBOX_REM_32BIT_MODULE_;$(if $(eq $(KBUILD_TARGET_ARCH),x86),VBoxREM32.so,);g" \ 324 315 -e "s;_VBOX_REM_64BIT_MODULE_;$(if $(eq $(KBUILD_TARGET_ARCH),x86),VBoxREM64.so,);g" \ 325 -e "/VBoxBFE/d" \326 316 --output $@ \ 327 317 $< -
trunk/src/VBox/Installer/freebsd/pkg_plist
r43429 r44580 2 2 @group wheel 3 3 @mode 755 4 lib/virtualbox/VBoxBFE5 lib/virtualbox/VBoxBFE.so6 4 lib/virtualbox/VBoxDbg.so 7 5 lib/virtualbox/VBoxDD.so … … 51 49 @mode 755 52 50 bin/VirtualBox 53 bin/VBoxBFE54 51 bin/VBoxManage 55 52 bin/VBoxSVC -
trunk/src/VBox/Installer/linux/Makefile.kmk
r44528 r44580 297 297 endif 298 298 299 ## VBoxBFE - Not shipped on linux due to a typo (VBOX_WITH_BFE), let's keep it that way as it doesn't get enough testing.300 #ifdef VBOX_WITH_VBOXBFE301 # VBOX_LNX_STRIP_BIN += \302 # VBoxBFE \303 # $(if $(VBOX_WITH_HARDENING),VBoxBFE.so)304 #endif305 306 299 # Webservices 307 300 ifdef VBOX_WITH_WEBSERVICES -
trunk/src/VBox/Installer/linux/VBox.sh
r44528 r44580 113 113 run_in_group "$INSTALL_DIR/vboxwebsrv" "$@" 114 114 ;; 115 VBoxBFE|vboxbfe)116 run_in_group "$INSTALL_DIR/VBoxBFE" "$@"117 ;;118 115 *) 119 116 echo "Unknown application - $APP" -
trunk/src/VBox/Installer/linux/debian/VBox.sh
r37255 r44580 92 92 exec "$INSTALL_DIR/vboxwebsrv" "$@" 93 93 ;; 94 VBoxBFE|vboxbfe)95 exec "$INSTALL_DIR/VBoxBFE" "$@"96 ;;97 94 *) 98 95 echo "Unknown application - $APP" -
trunk/src/VBox/Installer/solaris/Makefile.kmk
r44528 r44580 215 215 VBoxXPCOMIPCD \ 216 216 $(if $(VBOX_WITH_KCHMVIEWER),kchmviewer,) 217 ## Follow the Windows + Linux example of not shipping VBoxBFE.218 #SOLARIS_STRIP_EXES = \219 # $(if $(VBOX_WITH_VBOXBFE),VBoxBFE,)220 217 221 218 SOLARIS_DRIVER_BINS = \ … … 274 271 $(if $(VBOX_WITH_VBOXSDL),VBoxSDL.so,) \ 275 272 $(if $(VBOX_WITH_QTGUI),VirtualBox.so,) 276 ## Follow the Windows + Linux example of not shipping VBoxBFE.277 #SOLARIS_STRIP_BINS += \278 # $(if $(VBOX_WITH_VBOXBFE),VBoxBFE.so,)279 273 endif 280 274 -
trunk/src/VBox/Installer/solaris/VBox.sh
r44528 r44580 44 44 exec "$INSTALL_DIR/vboxwebsrv" "$@" 45 45 ;; 46 VBoxBFE|vboxbfe)47 exec "$INSTALL_DIR/VBoxBFE" "$@"48 ;;49 46 VBoxQtconfig) 50 47 exec "$INSTALL_DIR/VBoxQtconfig" "$@" -
trunk/src/VBox/Installer/solaris/makepackage.sh
r44217 r44580 126 126 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VirtualBox 127 127 fi 128 if test -f $VBOX_INSTALLED_DIR/amd64/VBoxBFE || test -f $VBOX_INSTALLED_DIR/i386/VBoxBFE; then129 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxBFE130 fi131 128 if test -f $VBOX_INSTALLED_DIR/amd64/VBoxHeadless || test -f $VBOX_INSTALLED_DIR/i386/VBoxHeadless; then 132 129 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxHeadless … … 194 191 || $3 == "opt/VirtualBox/amd64/VBoxHeadless" \ 195 192 || $3 == "opt/VirtualBox/amd64/VBoxSDL" \ 196 || $3 == "opt/VirtualBox/amd64/VBoxBFE" \197 193 || $3 == "opt/VirtualBox/i386/VirtualBox" \ 198 194 || $3 == "opt/VirtualBox/i386/VirtualBox3" \ 199 195 || $3 == "opt/VirtualBox/i386/VBoxHeadless" \ 200 196 || $3 == "opt/VirtualBox/i386/VBoxSDL" \ 201 || $3 == "opt/VirtualBox/i386/VBoxBFE" \202 197 ) \ 203 198 { $4 = "4755" } { print }' prototype > prototype2
Note:
See TracChangeset
for help on using the changeset viewer.