Trying to fix stinky bustage: removing appstartup from the build.

This commit is contained in:
attinasi%netscape.com 2001-03-13 08:30:56 +00:00
Родитель 1525c6946f
Коммит fbc7931b9a
5 изменённых файлов: 2 добавлений и 10 удалений

Просмотреть файл

@ -24,6 +24,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = windowwatcher appstartup build
DIRS = windowwatcher build
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -27,7 +27,7 @@ MODULE = embedcomponents
LIBRARY_NAME = embedcomponents
SHORT_LIBNAME = embedcmp
IS_COMPONENT = 1
REQUIRES = js xpcom string windowwatcher appstartupnotifier embed_base
REQUIRES = js xpcom string windowwatcher embed_base
CPPSRCS = nsModule.cpp
@ -42,7 +42,6 @@ else
SHARED_LIBRARY_LIBS = \
$(DIST)/lib/libwindowwatcher_s.$(LIB_SUFFIX) \
$(DIST)/lib/libappstartupnotifier_s.$(LIB_SUFFIX) \
$(NULL)
ifdef MOZ_PERF_METRICS
@ -53,7 +52,6 @@ endif
LOCAL_INCLUDES = \
-I$(srcdir)/../windowwatcher/src \
-I$(srcdir)/../appstartup/src \
$(NULL)
EXTRA_DSO_LDOPTS = \

Просмотреть файл

@ -36,12 +36,10 @@ LLIBS = \
$(DIST)\lib\js3250.lib \
$(DIST)\lib\xpcom.lib \
$(DIST)\lib\windowwatcher_s.lib \
$(DIST)\lib\appstartupnotifier_s.lib \
$(NULL)
INCS = $(INCS) \
-I$(DEPTH)\embedding\components\windowwatcher\src \
-I$(DEPTH)\embedding\components\appstartup\src \
$(NULL)
include <$(DEPTH)\config\rules.mak>

Просмотреть файл

@ -22,15 +22,12 @@
#include "nsIGenericFactory.h"
#include "nsWindowWatcher.h"
#include "nsAppStartupNotifier.h"
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsWindowWatcher, Init)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAppStartupNotifier)
static nsModuleComponentInfo components[] = {
{ "Window Watcher", NS_WINDOWWATCHER_CID, NS_WINDOWWATCHER_CONTRACTID, nsWindowWatcherConstructor },
{ NS_APPSTARTUPNOTIFIER_CLASSNAME, NS_APPSTARTUPNOTIFIER_CID, NS_APPSTARTUPNOTIFIER_CONTRACTID, nsAppStartupNotifierConstructor }
};
NS_IMPL_NSGETMODULE("embedcomponents", components)

Просмотреть файл

@ -22,7 +22,6 @@ DEPTH=..\..
DIRS= \
windowwatcher \
appstartup \
build \
$(NULL)