Changeset 44020 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Dec 3, 2012 5:43:17 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82438
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r43880 r44020 215 215 RuntimeR3_SDKS = VBOX_LIBXML2 VBOX_OPENSSL VBOX_BOOST ## @todo why is BOOST and XML2 here? r3/xml.cpp is not in this lib... 216 216 RuntimeR3_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK) 217 RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX RT_NO_GIP217 RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 IN_RT_STATIC LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX RT_NO_GIP 218 218 #RuntimeR3_DEFS += RTMEM_WRAP_TO_EF_APIS 219 219 ifdef IPRT_WITH_KSTUFF … … 1315 1315 VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE) 1316 1316 endif 1317 VBoxRT_DEFS = $(filter-out RT_NO_GIP ,$(RuntimeR3_DEFS)) IN_SUP_R3 IN_SUP_R31317 VBoxRT_DEFS = $(filter-out RT_NO_GIP IN_RT_STATIC,$(RuntimeR3_DEFS)) IN_SUP_R3 IN_SUP_R3 1318 1318 ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86) 1319 1319 VBoxRT_DEFS += RT_NO_GIP -
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r43363 r44020 48 48 # include <mach/mach_host.h> 49 49 #endif 50 #if defined(RT_OS_DARWIN) /*|| defined(RT_OS_FREEBSD) - later */ || defined(RT_OS_LINUX) \ 50 #ifdef IN_RT_STATIC 51 /* The pthread_setname_np trickery below assumes a working dl env which is 52 * not guaranteed in the context of a fully static executable. */ 53 # undef IPRT_MAY_HAVE_PTHREAD_SET_NAME_NP 54 #else 55 # if defined(RT_OS_DARWIN) /*|| defined(RT_OS_FREEBSD) - later */ || defined(RT_OS_LINUX) \ 51 56 || defined(IPRT_MAY_HAVE_PTHREAD_SET_NAME_NP) 52 # define IPRT_MAY_HAVE_PTHREAD_SET_NAME_NP 53 # include <dlfcn.h> 57 # define IPRT_MAY_HAVE_PTHREAD_SET_NAME_NP 58 # include <dlfcn.h> 59 # endif 54 60 #endif 55 61 #if defined(RT_OS_HAIKU)
Note:
See TracChangeset
for help on using the changeset viewer.