From a7a367d9071c029151adbb923ca96a22a132d07f Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Mon, 11 Sep 2000 03:39:55 +0000 Subject: [PATCH] Added mozilla/dist/include to INCLUDES because Mozilla's WIN32 build has changed to export headers to that directory, so nss needs to get the dbm headers (e.g., mcom_db.h) from there. We should think about what is the best long term solution to this problem (where to export and get headers). --- security/coreconf/headers.mk | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/security/coreconf/headers.mk b/security/coreconf/headers.mk index f09d5f6ee32b..63d60451092e 100644 --- a/security/coreconf/headers.mk +++ b/security/coreconf/headers.mk @@ -52,3 +52,11 @@ endif # INCLUDES += -I$(SOURCE_XPPRIVATE_DIR) + +# +# Mozilla WIN32 build exports headers to mozilla/dist/include +# + +ifeq ($(MOZ_BITS),32) +INCLUDES += -I$(SOURCE_XP_DIR)/include +endif