diff options
author | reed <reed@pkgsrc.org> | 2005-04-25 19:26:10 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-04-25 19:26:10 +0000 |
commit | 71b72afe1c06c0ae14464717fc05d79b000c45af (patch) | |
tree | 4e2e820d70a8cb7ee1689c51378ab427d771e8e2 | |
parent | f11da2f2b17defb952522052f24ad9ddd9d7692d (diff) | |
download | pkgsrc-71b72afe1c06c0ae14464717fc05d79b000c45af.tar.gz |
Make sure build is without gssapi support. (Okayed by maintainer,
taya ... well really he said "I don't object your idea.")
This fixes a build bug when heimdal is detected but not buildlinked.
It is a known mozilla bug:
https://bugzilla.mozilla.org/show_bug.cgi?id=245467
I didn't put this in the mozilla/Makefile.common, because didn't test that
yet.
This issue probably only happens when using /usr as the LOCALBASE,
which is not really supported and maybe I am the only one to hit this
with pkgsrc.
Maybe later someone can consider adding a build option for GSSAPI,
but I don't know anything about it in regards to a web browser myself.
-rw-r--r-- | www/firefox/Makefile-firefox.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/firefox/Makefile-firefox.common b/www/firefox/Makefile-firefox.common index 6ec7c601deb..2f29e1b43fd 100644 --- a/www/firefox/Makefile-firefox.common +++ b/www/firefox/Makefile-firefox.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile-firefox.common,v 1.16 2005/04/24 14:00:12 taya Exp $ +# $NetBSD: Makefile-firefox.common,v 1.17 2005/04/25 19:26:10 reed Exp $ MOZILLA_BIN= firefox-bin MOZ_VER= 1.0.3 @@ -23,6 +23,7 @@ MAKE_ENV+= MOZ_PHOENIX=1 CONFIGURE_ARGS+= --disable-mailnews CONFIGURE_ARGS+= --disable-composer CONFIGURE_ARGS+= --enable-single-profile +CONFIGURE_ARGS+= --without-gssapi MOZILLA_EXTENSIONS= cookie,gnomevfs,inspector,negotiateauth,pref,transformiix,universalchardet,webservices,xml-rpc,xmlextras CONFIGURE_ARGS+= --enable-extensions=${MOZILLA_EXTENSIONS} |