diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-03-28 23:08:09 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-03-28 23:08:09 +0800 |
commit | 954631cb5f0d76a52459f0ff7f6517733bc4af56 (patch) | |
tree | a2a93722e58fcebb2d7be3b5b60d4910605f2e81 /embed/mozilla/mozilla-embed-single.cpp | |
parent | 09be4ae2486b69649c72768739c3968ba5c3e175 (diff) | |
download | gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar.gz gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar.bz2 gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar.lz gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar.xz gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.tar.zst gsoc2013-epiphany-954631cb5f0d76a52459f0ff7f6517733bc4af56.zip |
Make this inclusion conditionally, since we don't use our directory provider on xr 1.9.
svn path=/branches/gnome-2-22/; revision=8152
Diffstat (limited to 'embed/mozilla/mozilla-embed-single.cpp')
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 2a0846c35..4665917e7 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -89,7 +89,6 @@ #include "mozilla-notifiers.h" #include "EphyBrowser.h" -#include "EphyDirectoryProvider.h" #include "EphySingle.h" #include "EphyUtils.h" #include "MozRegisterComponents.h" @@ -107,6 +106,10 @@ #define MOZILLA_EMBED_SINGLE_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), MOZILLA_TYPE_EMBED_SINGLE, MozillaEmbedSinglePrivate)) +#ifndef HAVE_GECKO_1_9 +#include "EphyDirectoryProvider.h" +#endif /* HAVE_GECKO_1_9 */; + struct MozillaEmbedSinglePrivate { char *user_prefs; |