Bug 106208 - don't build nsBaseFilePicker on platforms where we don't have a native filepicker implementation. Also, don't build the XUL filepicker on platforms where we _do_ use a native filepicker implementation. r=cls.

git-svn-id: svn://10.0.0.236/trunk@106643 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%netscape.com 2001-10-30 06:10:01 +00:00
parent 069522c79e
commit 582656069e
2 changed files with 5 additions and 1 deletions

View File

@ -63,6 +63,10 @@ ifeq ($(MOZ_WIDGET_TOOLKIT),mac)
CPPSRCS += nsWidgetAtoms.cpp
endif
ifneq (,$(filter beos os2 mac,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsBaseFilePicker.cpp
endif
LOCAL_INCLUDES = \
-I$(srcdir)/../$(MOZ_WIDGET_TOOLKIT) \
-I$(srcdir) \

View File

@ -28,7 +28,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
ifneq ($(OS_ARCH),OS2)
ifeq (,$(filter beos os2 mac,$(MOZ_WIDGET_TOOLKIT)))
DIRS = src
endif