- Timestamp:
- Apr 28, 2007 9:29:03 AM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile
r2406 r2408 50 50 VirtualBox_SDKS.win = WINPSDK DXSDK 51 51 VirtualBox_SDKS.linux = LIBSDL 52 53 ifeq ($(BUILD_TARGET),darwin) 54 # For the launch trick we need different inode numbers. 55 VirtualBox_INST = VirtualBox VirtualBoxVM 56 endif 52 57 53 58 # Each nls/VirtualBox_xx_YY.ts file must have a qt_xx_YY.ts counterpart -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VM-Info.plist
r2406 r2408 4 4 <dict> 5 5 <key>CFBundlePackageType</key> <string>APPL</string> 6 <key>CFBundleSignature</key> <string>VB OX</string>6 <key>CFBundleSignature</key> <string>VBVM</string> 7 7 <key>CFBundleDevelopmentRegion</key> <string>English</string> 8 <key>CFBundleIdentifier</key> <string>org.virtualbox.app.VirtualBox .VM</string>8 <key>CFBundleIdentifier</key> <string>org.virtualbox.app.VirtualBoxVM</string> 9 9 <key>CFBundleName</key> <string>VirtualBox VM</string> 10 <key>CFBundleExecutable</key> <string>VirtualBox </string>10 <key>CFBundleExecutable</key> <string>VirtualBoxVM</string> 11 11 <key>CFBundleVersion</key> <string>@VBOX_VERSION_MAJOR@.@VBOX_VERSION_MINOR@.@VBOX_VERSION_BUILD@</string> 12 12 <key>CFBundleShortVersionString</key> <string>@VBOX_VERSION_MAJOR@.@VBOX_VERSION_MINOR@.@VBOX_VERSION_BUILD@</string> 13 <key>CFBundleGetInfoString</key> <string>VirtualBox @VBOX_VERSION_STRING@, © 2007 InnoTek Systemberatung GmbH</string>13 <key>CFBundleGetInfoString</key> <string>VirtualBox VM @VBOX_VERSION_STRING@, © 2007 InnoTek Systemberatung GmbH</string> 14 14 <key>CFBundleIconFile</key> <string>virtualbox</string> 15 15 <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VM-PkgInfo
r2406 r2408 1 APPLVB OX1 APPLVBVM -
trunk/src/VBox/Main/MachineImpl.cpp
r2407 r2408 2670 2670 { 2671 2671 #ifdef __DARWIN__ /* Avoid Lanuch Services confusing this with the selector by using a helper app. */ 2672 const char VirtualBox_exe[] = "../Resources/VirtualBoxVM.app/Contents/MacOS/VirtualBox " HOSTSUFF_EXE;2672 const char VirtualBox_exe[] = "../Resources/VirtualBoxVM.app/Contents/MacOS/VirtualBoxVM"; 2673 2673 #else 2674 2674 const char VirtualBox_exe[] = "VirtualBox" HOSTSUFF_EXE;
Note:
See TracChangeset
for help on using the changeset viewer.