Changeset 1666 in vbox
- Timestamp:
- Mar 23, 2007 10:59:12 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19799
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile
r1397 r1666 87 87 r0drv/linux/thread-r0drv-linux.c=$(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c \ 88 88 r0drv/linux/the-linux-kernel.h=$(PATH_ROOT)/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h \ 89 version-generated.h=$(PATH_OUT)/version-generated.h \ 89 90 SUPDRV.h=$(VBOX_PATH_SUPPORT)/SUPDRV.h \ 90 91 SUPDRVIOC.h=$(VBOX_PATH_SUPPORT)/SUPDRVIOC.h \ -
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r1563 r1666 23 23 *******************************************************************************/ 24 24 #include "SUPDRV.h" 25 #include "version-generated.h" 26 25 27 #include <iprt/assert.h> 26 28 #include <iprt/spinlock.h> … … 1709 1711 MODULE_DESCRIPTION("VirtualBox Support Driver"); 1710 1712 MODULE_LICENSE("GPL"); 1711 1713 #ifdef MODULE_VERSION 1714 #define xstr(s) str(s) 1715 #define str(s) #s 1716 MODULE_VERSION(VBOX_VERSION_STRING " (" xstr(SUPDRVIOC_VERSION) ")"); 1717 #endif
Note:
See TracChangeset
for help on using the changeset viewer.