Subject: Re: buildlink3 problem? (solved)
To: None <tech-pkg@netbsd.org, pkgsrc-wip-discuss@lists.sourceforge.net>
From: Geert Hendrickx <geert.hendrickx@ua.ac.be>
List: tech-pkg
Date: 09/19/2005 15:43:06
On Mon, Sep 19, 2005 at 01:53:26PM +0200, Geert Hendrickx wrote:
> > ERROR: You do not have access to valid Mozilla header files.
> > Please check your access to /usr/pkg/include/mozilla-gtk2/java/bool.h
> > and/or check your value of ALT_MOZILLA_PATH, ALT_MOZILLA_HEADERS_PATH,
> >
> > Exiting because of the above error(s).
Problem solved with this patch:
--- deploy/make/common/Sanity.gmk.orig 2005-09-19 15:26:47.000000000 +0200
+++ deploy/make/common/Sanity.gmk
@@ -191,7 +191,7 @@ ifeq ($(ARCH_DATA_MODEL), 32)
"" >> $(ERROR_FILE) ; \
fi
else
- @if [ ! -r $(subst \,/,$(MOZILLA_HEADERS_PATH))/$(BROWSER)/java/bool.h ]; then \
+ @if [ ! -r $(subst \,/,$(MOZILLA_HEADERS_PATH))/java/bool.h ]; then \
$(ECHO) "ERROR: You do not have access to valid Mozilla header files. \n" \
" Please check your access to \n" \
" $(subst \,/,$(MOZILLA_HEADERS_PATH))/java/bool.h \n" \
Geert