diff options
author | Darin Adler <darin@src.gnome.org> | 2002-01-15 20:05:57 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2002-01-15 20:05:57 +0000 |
commit | 79c3c2e7dec88477f73aff6db24964f947d5636f (patch) | |
tree | 19a1cdb0f130002dc5e15275b1195057de7bb543 /libnautilus | |
parent | c95685fed0367c570583277b5b2e065e5a3a63b6 (diff) | |
download | nautilus-79c3c2e7dec88477f73aff6db24964f947d5636f.tar.gz |
Inspired by a patch from Jacob Berkman <jacob@ximian.com>, got
rid of all the Makefile.am hackery so that everything ends up in
the tarball.
* configure.in: Bumped version to 1.1.1.
* components/Makefile.am: Re-enabled all the subdirs.
* components/adapter/Makefile.am: Re-enabled
nautilus-adapter-embeddable-embed-strategy.[ch].
* components/adapter/nautilus-adapter-embeddable-embed-strategy.c:
Put an #if GNOME2_CONVERSION_COMPLETE around the whole thing.
* components/loser/content/Makefile.am:
* components/loser/sidebar/Makefile.am:
Update for COMPONENT_CFLAGS in NAUTILUS_PRIVATE_CFLAGS.
* components/loser/content/main.c: (loser_make_object), (main):
* components/loser/sidebar/main.c: (loser_make_object), (main):
* components/loser/content/nautilus-content-loser.c:
(nautilus_content_loser_init):
* components/loser/sidebar/nautilus-sidebar-loser.c:
(nautilus_sidebar_loser_init):
Make these compile, not sure if they actually work.
* components/shell/Nautilus_View_shell.server.in: Remove.
* components/shell/shell.c: Remove.
This component can go in a separate package -- it doesn't need to be
part of the main Nautilus source tree.
* components/text/Makefile.am: Turned off compiling of the component,
but used EXTRA_DIST to make sure the source code still gets into the
tarball.
* components/tree/Makefile.am: Removed $(COMPONENT_LIBS) from the
libnautilus_tree_view_la_SOURCES list. Not sure why it was in there.
* libnautilus-private/Makefile.am: Remove stale references to the
nautilus-druid-related headers.
* libnautilus/nautilus-view-standard-main.c:
(nautilus_view_standard_main_multi): Remove some
GNOME2_CONVERSION_COMPLETE code that is now clearly not going to
be needed. Left in the stuff that is a placeholder for things we
still need.
* src/Makefile.am: Distribute the profiler sources even when they are
not built.
* libnautilus-private/nautilus-icon-container.c: Whitespace tweak.
Diffstat (limited to 'libnautilus')
-rw-r--r-- | libnautilus/nautilus-view-standard-main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libnautilus/nautilus-view-standard-main.c b/libnautilus/nautilus-view-standard-main.c index 5770ad4ad..27282bbc4 100644 --- a/libnautilus/nautilus-view-standard-main.c +++ b/libnautilus/nautilus-view-standard-main.c @@ -200,17 +200,10 @@ nautilus_view_standard_main_multi (const char *executable_name, #if GNOME2_CONVERSION_COMPLETE gnomelib_register_popt_table (bonobo_activation_popt_options, bonobo_activation_get_popt_table_name ()); - orb = bonobo_activation_init (argc, argv); #endif /* Initialize libraries. */ -#if GNOME2_CONVERSION_COMPLETE - gnome_init (executable_name, version, argc, argv); -#endif g_thread_init (NULL); gnome_vfs_init (); -#if GNOME2_CONVERSION_COMPLETE - bonobo_init (orb, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL); -#endif bonobo_ui_init (executable_name, version, &argc, argv); |