Changeset 10420 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 9, 2008 1:48:36 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r10245 r10420 86 86 PROGRAMS = VirtualBox 87 87 ifeq ($(filter-out freebsd linux openbsd netbsd solaris,$(KBUILD_TARGET)),) # X11 88 DLLS = VBoxKeyboard 89 OTHERS = $(PATH_BIN)/vboxkeyboard .tar.gz88 DLLS = VBoxKeyboard3 89 OTHERS = $(PATH_BIN)/vboxkeyboard3.tar.gz 90 90 endif 91 91 INSTALLS = VirtualBox.nls … … 119 119 # VBoxKeyboard - keyboard library for X11. 120 120 # 121 VBoxKeyboard _TEMPLATE = VBOXR3122 VBoxKeyboard _SOURCES = \121 VBoxKeyboard3_TEMPLATE = VBOXR3 122 VBoxKeyboard3_SOURCES = \ 123 123 src/linux/keyboard-new.c 124 VBoxKeyboard _TARSOURCES = \125 $(VBoxKeyboard _SOURCES) \124 VBoxKeyboard3_TARSOURCES = \ 125 $(VBoxKeyboard3_SOURCES) \ 126 126 src/linux/COPYING.LIB \ 127 127 src/linux/keyboard.h \ … … 131 131 src/linux/keyboard-types.h \ 132 132 src/linux/Makefile 133 VBoxKeyboard _LIBS = X11134 VBoxKeyboard _LIBPATH = $(VBOX_LIBPATH_X11)135 136 137 # 138 # vboxkeyboard .tar.gz - the LGPLed keyboard library must always be133 VBoxKeyboard3_LIBS = X11 134 VBoxKeyboard3_LIBPATH = $(VBOX_LIBPATH_X11) 135 136 137 # 138 # vboxkeyboard3.tar.gz - the LGPLed keyboard library must always be 139 139 # redistributed with usable sources. 140 140 # 141 SOURCE_DIRECTORY = vboxkeyboard 141 SOURCE_DIRECTORY = vboxkeyboard3 142 142 DIRECTORY_PREFIX = src/linux/ 143 143 … … 146 146 $(LN_SYMLINK) $(abspath $(PATH_CURRENT))/$(DIRECTORY_PREFIX) $@ 147 147 148 $(PATH_BIN)/vboxkeyboard .tar.gz: $(VBoxKeyboard_TARSOURCES) $(PATH_TARGET)/$(SOURCE_DIRECTORY)148 $(PATH_BIN)/vboxkeyboard3.tar.gz: $(VBoxKeyboard3_TARSOURCES) $(PATH_TARGET)/$(SOURCE_DIRECTORY) 149 149 $(call MSG_TOOL,tar/gzip,,$@) 150 $(QUIET)cd $(PATH_TARGET) && tar -chf - $(addprefix $(SOURCE_DIRECTORY)/,$(subst $(DIRECTORY_PREFIX),,$(VBoxKeyboard _TARSOURCES))) | gzip - > $@150 $(QUIET)cd $(PATH_TARGET) && tar -chf - $(addprefix $(SOURCE_DIRECTORY)/,$(subst $(DIRECTORY_PREFIX),,$(VBoxKeyboard3_TARSOURCES))) | gzip - > $@ 151 151 152 152 … … 155 155 # 156 156 VirtualBox_TEMPLATE = VBOXQTGUIEXE 157 VirtualBox_NAME = VirtualBox3 157 158 VirtualBox_SDKS.win = WINPSDK DXSDK 158 159 #ifeq ($(filter-out freebsd linux netbsd openbsd os2 solaris,$(KBUILD_TARGET)),) - later … … 163 164 ifeq ($(KBUILD_TARGET),darwin) 164 165 # For the launch trick we need different inode numbers. 165 VirtualBox_INST = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM166 VirtualBox_INST = $(INST_BIN)VirtualBox3 $(INST_BIN)VirtualBoxVM3 166 167 167 168 # For testing iChat Theater stuff change … … 392 393 VirtualBox_LIBS.os2 += $(PATH_DLL)/VBoxHlp$(VBOX_SUFF_DLL) 393 394 ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # X11 394 VirtualBox_LIBS += $(PATH_DLL)/VBoxKeyboard $(VBOX_SUFF_DLL)395 VirtualBox_LIBS += $(PATH_DLL)/VBoxKeyboard3$(VBOX_SUFF_DLL) 395 396 endif 396 397 … … 417 418 $(VirtualBox_GENHDRS) \ 418 419 $(WRAPPERSFILE) \ 419 $(PATH_BIN)/vboxkeyboard .tar.gz420 $(PATH_BIN)/vboxkeyboard3.tar.gz 420 421 421 422 … … 476 477 # Translation installation 477 478 # 478 VirtualBox.nls_INST = $(INST_BIN)nls /479 VirtualBox.nls_INST = $(INST_BIN)nls3/ 479 480 VirtualBox.nls_SOURCES = $(patsubst %.ts,$(PATH_VirtualBox)/nls/%.qm,$(notdir $(VirtualBox_QT_TRANSLATIONS))) 480 481 VirtualBox.nls_SOURCES += $(patsubst %.ts,$(PATH_VirtualBox)/nls/%.qm,$(notdir $(VirtualBox_QT_TRANSLATIONS_QT))) … … 488 489 PROGRAMS.darwin += tstDarwinKeyboard 489 490 tstDarwinKeyboard_TEMPLATE = VBOXR3TSTEXE 491 tstDarwinKeyboard_NAME = tstDarwinKeyboard3 490 492 tstDarwinKeyboard_INCS = include 491 493 tstDarwinKeyboard_SOURCES = \ -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r9060 r10420 2627 2627 } 2628 2628 2629 extern const char *gVBoxLangSubDir = "/nls ";2629 extern const char *gVBoxLangSubDir = "/nls3"; 2630 2630 extern const char *gVBoxLangFileBase = "VirtualBox_"; 2631 2631 extern const char *gVBoxLangFileExt = ".qm";
Note:
See TracChangeset
for help on using the changeset viewer.