Changeset 3372 in vbox for trunk/src/libs/xpcom18a4/xpcom
- Timestamp:
- Jul 3, 2007 1:05:50 AM (18 years ago)
- Location:
- trunk/src/libs/xpcom18a4/xpcom
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/base/nsDebugImpl.cpp
r1 r3372 38 38 * ***** END LICENSE BLOCK ***** */ 39 39 40 #include "nsXPCOMPrivate.h" 40 41 #include "nsDebugImpl.h" 41 42 #include "nsDebug.h" … … 227 228 si.wShowWindow = SW_SHOW; 228 229 229 if(GetModuleFileName(GetModuleHandle( "xpcom.dll"), executable, MAX_PATH) &&230 if(GetModuleFileName(GetModuleHandle(XPCOM_DLL), executable, MAX_PATH) && 230 231 NULL != (pName = strrchr(executable, '\\')) && 231 232 NULL != strcpy(pName+1, "windbgdlg.exe") && -
trunk/src/libs/xpcom18a4/xpcom/build/nsXPCOMPrivate.h
r1 r3372 168 168 */ 169 169 170 #ifdef XPCOM_DLL_BASE 171 #define XPCOM_DLL XPCOM_DLL_BASE MOZ_DLL_SUFFIX 172 #endif 173 170 174 #if defined(XP_WIN32) || defined(XP_OS2) 171 175 … … 173 177 #define GRE_CONF_NAME "gre.config" 174 178 #define GRE_WIN_REG_LOC "Software\\mozilla.org\\GRE\\" 175 #define XPCOM_DLL "xpcom.dll" 179 #ifndef XPCOM_DLL 180 #define XPCOM_DLL "xpcom"MOZ_DLL_SUFFIX 181 #endif 176 182 177 183 #elif defined(XP_BEOS) … … 180 186 #define GRE_CONF_NAME ".gre.config" 181 187 #define GRE_CONF_PATH "/boot/home/config/settings/GRE/gre.conf" 188 #ifndef XPCOM_DLL 182 189 #define XPCOM_DLL "libxpcom"MOZ_DLL_SUFFIX 190 #endif 183 191 184 192 #else // Unix 185 193 186 #define XPCOM_DLL "VBoxXPCOM"MOZ_DLL_SUFFIX 194 #ifndef XPCOM_DLL 195 #define XPCOM_DLL "libxpcom"MOZ_DLL_SUFFIX 196 #endif 187 197 188 198 // you have to love apple..
Note:
See TracChangeset
for help on using the changeset viewer.