Changeset 71332 in vbox for trunk/src/VBox
- Timestamp:
- Mar 14, 2018 2:53:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r71324 r71332 166 166 167 167 168 168 # 169 # Include folders. 170 # 169 171 VBOX_GUI_INC_DIRS = \ 170 172 ./src \ … … 211 213 endif 212 214 215 # 216 # VirtualBox - GUI Application. 217 # Include folders. 218 # 213 219 VirtualBox_INCS = \ 214 220 $(VBOX_GUI_INC_DIRS) \ … … 216 222 $(VBOX_GRAPHICS_INCS) 217 223 218 # Necessary for the hdd backend enumeration219 VirtualBox_LIBS = $(LIB_DDU)220 221 if1of ($(KBUILD_TARGET), linux netbsd openbsd)222 VirtualBox_LIBS += dl223 endif224 225 # This library is required for multi-monitor support226 VirtualBox_LIBS.linux += Xinerama227 VirtualBox_LIBS.solaris += Xinerama228 VirtualBox_LIBS.freebsd += Xinerama229 230 VirtualBox_LIBS.linux += xcb231 VirtualBox_LIBS.solaris += xcb232 VirtualBox_LIBS.freebsd += xcb233 224 234 225 ifneq ($(KBUILD_TARGET),win) … … 270 261 endif 271 262 272 VirtualBox_LIBS.win = \ 263 264 # 265 # VirtualBox - GUI Application. 266 # Libraries. 267 # 268 269 # Library required for the hdd backend enumeration: 270 VirtualBox_LIBS = $(LIB_DDU) 271 272 # Runtime library loader required on X11 hosts: 273 if1of ($(KBUILD_TARGET), linux netbsd openbsd) 274 VirtualBox_LIBS += dl 275 endif 276 277 # Xinerama library required for multi-monitor support: 278 VirtualBox_LIBS.linux += Xinerama 279 VirtualBox_LIBS.solaris += Xinerama 280 VirtualBox_LIBS.freebsd += Xinerama 281 282 # XCB library required for direct XCB native code support: 283 VirtualBox_LIBS.linux += xcb 284 VirtualBox_LIBS.solaris += xcb 285 VirtualBox_LIBS.freebsd += xcb 286 287 # Various Windows hosts libraries: 288 VirtualBox_LIBS.win = \ 273 289 $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Htmlhelp.Lib \ 274 290 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/ddraw.lib \ 275 291 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/dxguid.lib 276 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) # X11 277 VirtualBox_LIBS += $(PATH_STAGE_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) 278 endif 279 292 293 # VBox keyboard shared library for X11 hosts: 294 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) 295 VirtualBox_LIBS += $(PATH_STAGE_DLL)/VBoxKeyboard$(VBOX_SUFF_DLL) 296 endif 297 298 # These are 2D Video Acceleration and 3D Acceleration related libs: 280 299 if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_GUI_USE_QGL) 281 300 VirtualBox_LIBS.win += $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/Opengl32.lib
Note:
See TracChangeset
for help on using the changeset viewer.