diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-03-28 23:06:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-03-28 23:06:31 +0800 |
commit | 0d86fa3258226628083b8340e6c20a78ca11f955 (patch) | |
tree | 21b803f57e1bd9a6b144ec4e4f0e592362ad27bf /plugins | |
parent | 6605cb341e38ebaea954567a3d3180a7c11d0655 (diff) | |
download | gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar.gz gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar.bz2 gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar.lz gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar.xz gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.tar.zst gsoc2013-epiphany-0d86fa3258226628083b8340e6c20a78ca11f955.zip |
Allow building with xulrunner 1.9. Patch by Alexander Sack; part of bug #503657
svn path=/branches/gnome-2-22/; revision=8142
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/desktop-file/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/desktop-file/Makefile.am b/plugins/desktop-file/Makefile.am index 6c6c22303..5cf130d9b 100644 --- a/plugins/desktop-file/Makefile.am +++ b/plugins/desktop-file/Makefile.am @@ -25,8 +25,13 @@ libdesktopfileplugin_la_LIBADD = \ libdesktopfileplugin_la_LDFLAGS = \ -module -avoid-version \ -export-symbols $(srcdir)/plugin.symbols \ - -R$(GECKO_HOME) \ $(AM_LDFLAGS) +if !HAVE_GECKO_XPCOM_GLUE + libdesktopfileplugin_la_LDFLAGS += \ + -R$(GECKO_HOME) \ + $(NULL) +endif + EXTRA_DIST = \ plugin.symbols |