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.

This commit is contained in:
bryner%netscape.com 2001-10-30 06:10:01 +00:00
Родитель 8cce8a4314
Коммит 9db8a62146
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -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) \

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

@ -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