diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-30 02:48:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-30 02:48:45 +0800 |
commit | f915ef04766ad74fb64fdb1589e73eae5324d465 (patch) | |
tree | c992c75fc36202dbf8e3e0a2e2a03108bb33693c /configure.in | |
parent | f2da560b232d7a0166fdf0aec3a9b48d574b0c65 (diff) | |
download | gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.gz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.bz2 gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.lz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.xz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.zst gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.zip |
Removed the nautilus view.
2004-03-29 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* data/.cvsignore:
* data/GNOME_Epiphany_NautilusView.server.in:
* data/Makefile.am:
* data/ui/.cvsignore:
* data/ui/Makefile.am:
* data/ui/nautilus-epiphany-view.xml:
* doc/reference/Makefile.am:
* embed/Makefile.am:
* embed/ephy-embed-popup-control.c:
* embed/ephy-embed-popup-control.h:
* lib/Makefile.am:
* lib/ephy-bonobo-extensions.c:
* lib/ephy-bonobo-extensions.h:
* po/POTFILES.in:
* src/Makefile.am:
* src/ephy-nautilus-view.c:
* src/ephy-nautilus-view.h:
* src/ephy-shell.c: (ephy_automation_factory_cb):
Removed the nautilus view.
2004-03-29 Christian Persch <chpe@cvs.gnome.org>
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/configure.in b/configure.in index 0eaaf3985..74d08c3d6 100644 --- a/configure.in +++ b/configure.in @@ -24,7 +24,6 @@ LIBBONOBOUI_REQUIRED=2.1.1 LIBXML_REQUIRED=2.6.6 LIBGNOMEVFS_REQUIRED=2.3.1 LIBGLADE_REQUIRED=2.3.1 -LIBNAUTILUS_REQUIRED=2.5 AC_SUBST(GLIB_REQUIRED) AC_SUBST(GTK_REQUIRED) @@ -32,7 +31,6 @@ AC_SUBST(LIBBONOBOUI_REQUIRED) AC_SUBST(LIBXML_REQUIRED) AC_SUBST(LIBGNOMEVFS_REQUIRED) AC_SUBST(LIBGLADE_REQUIRED) -AC_SUBST(LIBNAUTILUS_REQUIRED) AC_ENABLE_SHARED(yes) AC_ENABLE_STATIC(no) @@ -53,37 +51,6 @@ GNOME_DEBUG_CHECK GNOME_COMPILE_WARNINGS(error) GNOME_CXX_WARNINGS(yes, yes) -dnl ****************************** -dnl Nautilus View checking -dnl ****************************** - -build_nautilus_view=no -AC_ARG_ENABLE(nautilus-view, [ --enable-nautilus-view (auto,yes,no) - Enable Nautilus View Epiphany Component]) - -AC_MSG_CHECKING(if NautilusView Epiphany component is wanted) -if test "x$enable_nautilus_view" = "x" ; then - enable_nautilus_view=auto -fi -if test "x$enable_nautilus_view" = "xauto"; then - temptest=`pkg-config --cflags libnautilus 2> /dev/null` - if test "x$temptest" = "x" ; then - enable_nautilus_view=no - else - enable_nautilus_view=yes - fi -fi -AC_MSG_RESULT($enable_nautilus_view) - -if test "x$enable_nautilus_view" = "xyes"; then - PKG_CHECK_MODULES(NAUTILUS_DEPENDENCY, libnautilus >= $LIBNAUTILUS_REQUIRED, \ - [AC_DEFINE(ENABLE_NAUTILUS_VIEW, 1, [Define if the nautilus view has to be built])], \ - [enable_nautilus_view=no]) -fi -AC_SUBST(NAUTILUS_DEPENDENCY_CFLAGS) -AC_SUBST(NAUTILUS_DEPENDENCY_LIBS) -AM_CONDITIONAL(ENABLE_NAUTILUS_VIEW, test "x$enable_nautilus_view" = "xyes") - PKG_CHECK_MODULES(EPIPHANY_DEPENDENCY, \ glib-2.0 >= $GLIB_REQUIRED \ gtk+-2.0 >= $GTK_REQUIRED \ |