diff options
author | Ramiro Estrugo <ramiro@src.gnome.org> | 2000-10-16 19:34:51 +0000 |
---|---|---|
committer | Ramiro Estrugo <ramiro@src.gnome.org> | 2000-10-16 19:34:51 +0000 |
commit | 9eaa3a34debba0a5f6c4f339066f16e8a87dccc9 (patch) | |
tree | 79d62a221c31db067d1e2008e9250af339ecb6d6 /configure.in | |
parent | ef1386c4e3c13b8681760d56ae4721a6cf14e8b1 (diff) | |
download | nautilus-9eaa3a34debba0a5f6c4f339066f16e8a87dccc9.tar.gz |
Update docs for the fact that we now require Mozilla-M18.
* README:
Update docs for the fact that we now require Mozilla-M18.
* components/mozilla/nautilus-mozilla-content-view.c:
(mozilla_content_view_one_time_happenings),
(nautilus_mozilla_content_view_initialize),
(nautilus_mozilla_content_view_destroy),
(mozilla_load_location_callback), (mozilla_net_state_callback),
(mozilla_dom_mouse_click_callback),
(mozilla_translate_uri_if_needed),
(mozilla_untranslate_uri_if_needed):
Cleanup a bunch of pre Mozilla M18 code. Turn of a rogue printf.
Remove the cut-n-pasted Bonobo merging code. We can add it back
if we ever have something we really need to merge.
* configure.in:
Update for new Mozilla M18 requirement. Bail of detected Mozilla
is not M18.
* nautilus.spec.in:
Add mozilla-m18 dependency to the nautilus-mozilla package.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9c7218c32..9cd26c5aa 100644 --- a/configure.in +++ b/configure.in @@ -339,8 +339,20 @@ dnl EVIL2: fi AC_SUBST(MOZILLA_COMPONENT_DEBUG_FLAGS) + + if test "$MOZILLA_MILESTONE" != "18" + then + + AC_MSG_ERROR([ +*** Mozilla M18 is required to build the Nautilus Mozilla component. +*** A package for M18 is available here: +*** http://developer.eazel.com/eazel-hacking/updates/mozilla/.]) + + fi + fi + dnl ==================================== dnl = End mozilla hacks dnl ==================================== |