diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-28 20:09:25 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-28 20:09:25 +0800 |
commit | 003eafee1884b5474f9b5230365da7f90493193e (patch) | |
tree | f1a282d6543591279d291f2a50fd07de13ed0e8d /src | |
parent | d78a429ac1539747886f328c93b9830ea9ddd3a3 (diff) | |
download | gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar.gz gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar.bz2 gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar.lz gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar.xz gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.tar.zst gsoc2013-epiphany-003eafee1884b5474f9b5230365da7f90493193e.zip |
Check for required libnautilus version, and conditionally enable nautilus
2004-01-28 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* src/Makefile.am:
Check for required libnautilus version, and conditionally enable
nautilus view.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2e3839335..fb6bf9912 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,10 @@ INCLUDES = \ -DPIXMAP_DIR=\""$(datadir)/pixmaps"\" \ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" +if ENABLE_NAUTILUS_VIEW +INCLUDES += $(NAUTILUS_DEPENDENCY_CFLAGS) +endif + if MAINTAINER_MODE INCLUDES += -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \ -DGNOME_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED $(WARN_CFLAGS) @@ -129,6 +133,10 @@ epiphany_bin_LDADD = \ $(EPIPHANY_DEPENDENCY_LIBS) \ $(INTLLIBS) +if ENABLE_NAUTILUS_VIEW +epiphany_bin_LDADD += $(NAUTILUS_DEPENDENCY_CFLAGS) +endif + BUILT_SOURCES = $(CORBA_SOURCE) CLEANFILES = $(CORBA_SOURCE) |