Changeset 21103 in vbox
- Timestamp:
- Jun 30, 2009 8:51:27 PM (16 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/Makefile.kmk
r21100 r21103 39 39 VBoxGuest_NOINST.linux = true 40 40 VBoxGuest_DEFS.linux = KBUILD_MODNAME=KBUILD_STR\(vboxguest\) KBUILD_BASENAME=KBUILD_STR\(vboxguest\) 41 ifdef VBOX_LINUX_VERSION_2_4 42 VBoxGuest_DEFS.linux += EXPORT_SYMTAB 43 endif 41 44 VBoxGuest_DEFS.solaris = VBOX_SVN_REV=$(VBOX_SVN_REV) 42 45 VBoxGuest_DEPS.solaris += $(VBOX_SVN_REV_KMK) -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r21102 r21103 138 138 ioctl: vboxguestLinuxIOCtl, 139 139 #endif 140 fasync: vboxguestFAsync, 140 141 read: vboxguestRead, 141 142 poll: vboxguestPoll, 142 fasync: vboxguestFAsync,143 llseek: no_llseek, 143 144 }; 144 145 … … 149 150 name: DEVICE_NAME, 150 151 fops: &g_FileOps, 151 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 17)152 devfs_name: DEVICE_NAME,153 #endif154 152 }; 155 153 … … 175 173 name: DEVICE_NAME_USER, 176 174 fops: &g_FileOpsUser, 177 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 17)178 devfs_name: DEVICE_NAME_USER,179 #endif180 175 }; 181 176
Note:
See TracChangeset
for help on using the changeset viewer.