Bug 260818 added a dependency on a windows only interface

Changing the build system to always publish the interface.
This commit is contained in:
timeless%mozdev.org 2004-10-19 03:53:12 +00:00
parent 5e73169511
commit 41ceac8e09
2 changed files with 8 additions and 2 deletions

View File

@ -85,6 +85,7 @@ DIRS += \
download-manager \
history \
sidebar \
alerts
$(NULL)
endif
endif
@ -98,7 +99,7 @@ endif
ifeq ($(OS_ARCH),WINNT)
ifndef MOZ_PHOENIX
ifndef MOZ_XULRUNNER
DIRS += urlwidget winhooks alerts
DIRS += urlwidget winhooks
endif
endif
endif
@ -118,6 +119,7 @@ DIRS = \
history/public \
shistory/public \
bookmarks/public \
alerts \
$(NULL)
ifeq ($(OS_ARCH),WINNT)

View File

@ -42,7 +42,11 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src
DIRS = public
ifeq ($(OS_ARCH),WINNT)
DIRS += src
endif
include $(topsrcdir)/config/rules.mk