Bustage fix for bug 398895.

This commit is contained in:
reed@reedloden.com 2007-10-12 21:54:07 -07:00
parent f24bbd1750
commit f0822cc72e
2 changed files with 7 additions and 5 deletions

View File

@ -54,14 +54,11 @@ REQUIRES = xpcom \
CPPSRCS = \
nsAboutProtocolHandler.cpp \
nsAboutBlank.cpp \
nsAboutBloat.cpp \
nsAboutCache.cpp \
nsAboutCacheEntry.cpp \
$(NULL)
ifdef NS_BUILD_REFCNT_LOGGING
CPPSRCS += nsAboutBloat.cpp
endif
LOCAL_INCLUDES=-I$(srcdir)/../../../base/src
# we don't want the shared lib, but we want to force the creation of a

View File

@ -35,6 +35,11 @@
*
* ***** END LICENSE BLOCK ***** */
#include "nsTraceRefcntImpl.h"
// if NS_BUILD_REFCNT_LOGGING isn't defined, don't try to build
#ifdef NS_BUILD_REFCNT_LOGGING
#include "nsAboutBloat.h"
#include "nsIIOService.h"
#include "nsIServiceManager.h"
@ -47,7 +52,6 @@
#include "nsNetUtil.h"
#include "nsDirectoryServiceDefs.h"
#include "nsILocalFile.h"
#include "nsTraceRefcntImpl.h"
#ifdef XP_MAC
extern "C" void GC_gcollect(void);
@ -177,3 +181,4 @@ nsAboutBloat::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult)
}
////////////////////////////////////////////////////////////////////////////////
#endif /* NS_BUILD_REFCNT_LOGGING */