- Timestamp:
- Jun 30, 2009 6:55:45 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r19271 r21096 67 67 * Defined Constants And Macros * 68 68 *******************************************************************************/ 69 /** @todo this quoting macros probably should be moved to a common place.70 * The indirection is for expanding macros passed to the first macro. */71 #define VBOXSOLQUOTE2(x) #x72 #define VBOXSOLQUOTE(x) VBOXSOLQUOTE2(x)73 69 /** The module name. */ 74 70 #define DEVICE_NAME "vboxdrv" … … 145 141 { 146 142 &mod_driverops, /* extern from kernel */ 147 DEVICE_DESC " " VBOX_VERSION_STRING "r" VBOXSOLQUOTE(VBOX_SVN_REV),143 DEVICE_DESC " " VBOX_VERSION_STRING "r" RT_XSTR(VBOX_SVN_REV), 148 144 &g_VBoxDrvSolarisDevOps 149 145 }; -
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r21078 r21096 90 90 * Defined Constants And Macros * 91 91 *******************************************************************************/ 92 #define VBOXSOLQUOTE2(x) #x93 #define VBOXSOLQUOTE(x) VBOXSOLQUOTE2(x)94 92 /** The module name. */ 95 93 #define DEVICE_NAME "vboxflt" … … 230 228 { 231 229 &mod_driverops, /* extern from kernel */ 232 DEVICE_DESC_DRV " " VBOX_VERSION_STRING "r" VBOXSOLQUOTE(VBOX_SVN_REV),230 DEVICE_DESC_DRV " " VBOX_VERSION_STRING "r" RT_XSTR(VBOX_SVN_REV), 233 231 &g_VBoxNetFltSolarisDevOps 234 232 }; … … 250 248 { 251 249 &mod_strmodops, /* extern from kernel */ 252 DEVICE_DESC_MOD " " VBOX_VERSION_STRING "r" VBOXSOLQUOTE(VBOX_SVN_REV),250 DEVICE_DESC_MOD " " VBOX_VERSION_STRING "r" RT_XSTR(VBOX_SVN_REV), 253 251 &g_VBoxNetFltSolarisModOps 254 252 };
Note:
See TracChangeset
for help on using the changeset viewer.