Changeset 39809 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 19, 2012 1:37:03 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r39786 r39809 292 292 # We need to tell our xorg.conf hacking script whether /dev/psaux exists 293 293 nopsaux="--nopsaux" 294 test -c /dev/psaux && nopsaux="" 294 case "`uname -r`" in 2.4.*) 295 test -c /dev/psaux && nopsaux="";; 296 esac 295 297 # The video driver to install for X.Org 6.9+ 296 298 vboxvideo_src= … … 407 409 vboxmouse_src=vboxmouse_drv.o 408 410 automouse="" 409 newmouse=""410 411 ;; 411 412 * ) -
trunk/src/VBox/Additions/x11/Installer/x11config.sh
r38777 r39809 103 103 Identifier "Mouse[1]" 104 104 Option "Buttons" "9" 105 Option "Device" " /dev/input/mice"105 Option "Device" "$old_mouse_dev" 106 106 Option "Name" "VirtualBox Mouse Buttons" 107 107 Option "Protocol" "explorerps/2" -
trunk/src/VBox/Additions/x11/vboxmouse/Makefile.kmk
r39786 r39809 51 51 $(PATH_SUB_CURRENT) 52 52 vboxmouse_drv_SOURCES = \ 53 mouse.c \ 54 pnp.c \ 55 VBoxUtils_68.c 53 vboxmouse_15.c 54 # Any global symbols in the driver object files will be added to XFree86's 55 # symbol table, which can cause problems if we e.g. define a symbol in two 56 # modules. 57 vboxmouse_drv_POST_CMDS = \ 58 objcopy --keep-global-symbol vboxmouseModuleData $(out) $(out)-objcopy$$(NLTAB) \ 59 $(MV) -f $(out)-objcopy $(out) 56 60 endif 57 61 … … 249 253 $(QUIET)$(call MSG_L1,Checking for unresolved symbols in $<) 250 254 $(QUIET)/bin/sh $(PATH_ROOT)/src/bldprogs/checkUndefined.sh $(KBUILD_TARGET) \ 251 "$(vboxmouse_drv_1_STAGE_TARGET)" "$(VBOXMOUSE_SRC_PATH)/undefined_ 68" --static255 "$(vboxmouse_drv_1_STAGE_TARGET)" "$(VBOXMOUSE_SRC_PATH)/undefined_15" --static 252 256 $(QUIET)$(APPEND) -t "$@" "done" 253 257 endif -
trunk/src/VBox/Additions/x11/vboxmouse/undefined_15
r37733 r39809 1 ErrorF 1 2 GetMotionHistory 2 3 GetMotionHistorySize … … 5 6 InitPtrFeedbackClassDeviceStruct 6 7 InitValuatorClassDeviceStruct 8 VErrorF 9 Xalloc 7 10 _Jv_RegisterClasses 8 11 ___errno … … 95 98 xf86AddInputDriver 96 99 xf86AllocateInput 97 xf86CheckStrOption98 100 xf86CollectInputOptions 99 101 xf86DeleteInput … … 107 109 xf86ScaleAxis 108 110 xf86SetIntOption 111 xf86SetStrOption 112 xf86errno 113 xf86isspace 114 xf86strtoul 115 xf86vsnprintf -
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse_15.c
r38591 r39809 53 53 #include <xf86Module.h> 54 54 55 #include <errno.h> 56 #include <fcntl.h> 57 #include <unistd.h> 55 #ifdef VBOX_GUESTR3XF86MOD 56 # define _X_EXPORT 57 #else 58 # include <errno.h> 59 # include <fcntl.h> 60 # include <unistd.h> 61 #endif 58 62 59 63 #include "product-generated.h" … … 265 269 pInfo->flags |= XI86_ALWAYS_CORE; 266 270 267 device = xf86 CheckStrOption(pInfo->options, "Device",271 device = xf86SetStrOption(pInfo->options, "Device", 268 272 "/dev/vboxguest"); 269 273 -
trunk/src/VBox/Additions/x11/vboxvideo/Makefile.kmk
r38825 r39809 88 88 $(PATH_ROOT)/src/VBox/Runtime/common/alloc/heapsimple.cpp \ 89 89 $(PATH_ROOT)/src/VBox/Runtime/common/alloc/heapoffset.cpp 90 90 # Any global symbols in the driver object files will be added to XFree86's 91 # symbol table, which can cause problems if we e.g. define a symbol in two 92 # modules. 93 vboxvideo_drv_POST_CMDS = \ 94 objcopy --keep-global-symbol vboxvideoModuleData $(out) $(out)-objcopy$$(NLTAB) \ 95 $(MV) -f $(out)-objcopy $(out) 91 96 92 97 #
Note:
See TracChangeset
for help on using the changeset viewer.