- Timestamp:
- May 14, 2013 9:32:02 AM (12 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r46048 r46053 1246 1246 VBoxRT_DEFS += RT_NO_GIP 1247 1247 endif 1248 ifdef VBOX_WITH_LIBCURL 1249 VBoxRT_DEFS += IPRT_WITH_HTTP 1250 endif 1248 1251 VBoxRT_DEFS.$(KBUILD_TYPE) := $(RuntimeR3_DEFS.$(KBUILD_TYPE)) 1249 1252 VBoxRT_SOURCES := \ -
trunk/src/VBox/Runtime/common/dbg/dbgcfg.cpp
r46050 r46053 41 41 #include <iprt/env.h> 42 42 #include <iprt/file.h> 43 #include <iprt/http.h> 43 #ifdef IPRT_WITH_HTTP 44 # include <iprt/http.h> 45 #endif 44 46 #include <iprt/list.h> 45 47 #include <iprt/log.h> … … 486 488 uint32_t fFlags, PFNDBGCFGOPEN pfnCallback, void *pvUser1, void *pvUser2) 487 489 { 490 #ifdef IPRT_WITH_HTTP 488 491 if (pThis->fFlags & RTDBGCFG_FLAGS_NO_SYM_SRV) 489 492 return VWRN_NOT_FOUND; … … 550 553 RTHttpDestroy(hHttp); 551 554 return rc; 555 556 #else /* !IPRT_WITH_HTTP */ 557 return VWRN_NOT_FOUND; 558 #endif /* !IPRT_WITH_HTTP */ 552 559 } 553 560
Note:
See TracChangeset
for help on using the changeset viewer.