From 304974cfe837cdd7bf7c75a66fe87dc56e4cac32 Mon Sep 17 00:00:00 2001 From: Ramiro Estrugo Date: Tue, 3 Oct 2000 14:09:29 +0000 Subject: [PATCH] Retired. * README: Retired. * components/mozilla/README: Added Mozilla component information. --- ChangeLog | 8 ++++++ README | 60 ++++++++++++++++++++++++++++++++++++++- components/mozilla/README | 15 ---------- 3 files changed, 67 insertions(+), 16 deletions(-) delete mode 100644 components/mozilla/README diff --git a/ChangeLog b/ChangeLog index 23a43de2b..2f72c5a5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-10-03 Ramiro Estrugo + + * README: + Retired. + + * components/mozilla/README: + Added Mozilla component information. + 2000-10-03 Ramiro Estrugo * nautilus.spec.in: diff --git a/README b/README index d4cf59329..761b3488f 100644 --- a/README +++ b/README @@ -10,7 +10,8 @@ and file manager. 2: Introduction 3: Distribution-specific notes 4: Compiling -5: Running +5: Issues when running Nautilus +6: Mozilla support ========== 1: Hacking @@ -215,3 +216,60 @@ script to get Nautilus to work properly. One way to invoke it is like this: ./nautilus-clean.sh -x + +=============================== +6: Mozilla support +=============================== + +Nautilus includes support for browsing HTML content on the local +computer as well as remote web servers. HTML content is handled by +the Nautilus Mozilla Component. This component can be optionally +built with Nautilus. It is automatically enabled at configure time if +Mozilla development libraries are detected on your system. + +The easiest way to get the Mozilla development libraries, is to use +Chris Blizzard's Mozilla rpms. These can be fetched over here: + +http://download.eazel.com/rpms/i386/pr1/Mozilla-M17-2.i386.rpm +http://download.eazel.com/rpms/i386/pr1/Mozilla-devel-M17-2.i386.rpm + +After installing these rpms, you can build nautilus with Mozilla +support as follows: + +cd nautilus +rm -f config.cache config.status +./configure + +The configure script should automatically detect and use the Mozilla +development libraries. + +Alternatively, you can build Mozilla from source and use that. Lets +say that you built Mozilla in /foo/bar. You can build nautilus with +support for that Mozilla build as follows: + +cd nautilus +rm -f config.cache config.status +./configure --with-mozilla-lib-place=/foo/bar/mozilla/dist/bin + --with-mozilla-include-place=/foo/bar/mozilla/dist/include + +NOTE: The above command should be issued in one line. It is split + into two lines in this document for readability. + + +Before running Nautilus, you need to do some environment setup for the +Mozilla component: + +Using RPMS: + +export MOZILLA_FIVE_HOME=/usr/lib/mozilla +export LD_LIBRARY_PATH=/usr/lib/mozilla:$LD_LIBRARY_PATH + +Using Mozilla built in /foo/bar: + +export MOZILLA_FIVE_HOME=/foo/bar/mozilla/dist/bin +export LD_LIBRARY_PATH=/foo/bar/mozilla/dist/bin:$LD_LIBRARY_PATH + +Finally, you can disable the Mozilla component (even if Mozilla +development libraries are installed in your system) as follows: + +./configure --disable-mozilla-component diff --git a/components/mozilla/README b/components/mozilla/README deleted file mode 100644 index 5a2bcfb0f..000000000 --- a/components/mozilla/README +++ /dev/null @@ -1,15 +0,0 @@ -This component is now just a skeleton. Im now in the process of -integrating it into Nautilus in a sane way. There will be lots of -changes happening here soon. - -There will also be many changes needed to the embedding widget - on -the mozilla side of things. - -If you have questions, comments or would like to help make this a -robust and politically correct way to do the http thing in GNOME, send -mail to: - -ramiro@eazel.com -blizzard@redhat.com - -