- Timestamp:
- Jun 8, 2008 12:56:13 AM (17 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r9061 r9500 27 27 # Target config. 28 28 # 29 ifn1of ($(KBUILD_TARGET) ,l4 linux win)29 ifn1of ($(KBUILD_TARGET)$(VBOX_WITH_64BIT_ADDITIONS), l4 linux win) 30 30 LIBRARIES += \ 31 31 VBoxGuestR0Lib \ … … 34 34 VBoxGuestR3Lib \ 35 35 VBoxGuestR3LibShared 36 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd)36 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd) 37 37 LIBRARIES += \ 38 38 VBoxGuestR3LibXFree86 39 39 endif 40 else 40 else # This case is going to become obsolete with 64-bit guest additions. 41 41 # As we build Windows Additions on Linux as well, we need a 42 42 # separate Linux target for each library so that both platforms 43 43 # are built. 44 # NOTE: This is going to be obsoleted before long, everyone is going to45 # use VBoxGuestR0Lib* and VBoxGuestR3Lib.46 44 ifdef VBOX_WITH_WIN32_ADDITIONS 47 45 ifndef VBOX_ADDITIONS_LINUX_ONLY … … 79 77 VBoxGuestR0Lib_DEFS = VBOX_HGCM 80 78 VBoxGuestR0Lib_INCS = \ 81 $(PATH_VBoxGuest Lib)79 $(PATH_VBoxGuestR0Lib) 82 80 VBoxGuestR0Lib_INCS.win = \ 83 81 $(PATH_SUB_ROOT)/WINNT/SharedFolders/include … … 121 119 VBoxGuestR3LibTime.cpp \ 122 120 VBoxGuestR3LibVideo.cpp 121 ifdef VBOX_WITH_64BIT_ADDITIONS ## @todo get rid of this hack. 122 ifeq ($(KBUILD_TARGET),win) 123 VBoxGuestR3Lib_SOURCES = VBoxGuestR3Lib.cpp 124 endif 125 endif 123 126 124 127 # … … 151 154 152 155 156 ifndef VBOX_WITH_64BIT_ADDITIONS 157 153 158 # 154 159 # VBoxGuestLib (Windows) … … 177 182 #VBoxGuestLibBase_DEFS += LOG_ENABLED 178 183 184 endif # VBOX_WITH_64BIT_ADDITIONS 179 185 180 186 include $(KBUILD_PATH)/subfooter.kmk -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLR3Internal.h
r8155 r9500 23 23 #define ___VBGLR3Internal_h 24 24 25 #if defined(RT_OS_WINDOWS) 26 # include <Windows.h> 27 #endif 25 28 #include <VBox/VBoxGuest.h> 26 29
Note:
See TracChangeset
for help on using the changeset viewer.