From e10de180cde8fcf0dc77f1cb9ea45df04fdec7c9 Mon Sep 17 00:00:00 2001 From: "philringnalda%gmail.com" Date: Wed, 20 Feb 2008 06:47:54 +0000 Subject: [PATCH] Bug 418032 - Don't build an interface to a disabled crashreporter, r=ted, a=schrep git-svn-id: svn://10.0.0.236/trunk@246039 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/system/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mozilla/xpcom/system/Makefile.in b/mozilla/xpcom/system/Makefile.in index d93e2141616..b3886c73c4a 100644 --- a/mozilla/xpcom/system/Makefile.in +++ b/mozilla/xpcom/system/Makefile.in @@ -49,7 +49,10 @@ XPIDLSRCS = \ nsIXULAppInfo.idl \ nsIGConfService.idl \ nsIGnomeVFSService.idl \ - nsICrashReporter.idl \ $(NULL) +ifdef MOZ_CRASHREPORTER +XPIDLSRCS += nsICrashReporter.idl +endif + include $(topsrcdir)/config/rules.mk