diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-03-11 05:57:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-03-11 05:57:45 +0800 |
commit | 7720c783b8a8f8911a79b965d9176aba839829e6 (patch) | |
tree | 7163a9238c97b44b40b0c455e7c7ebc70c08fa79 /plugins/desktop-file | |
parent | 888c589bd3ee139571fccf55d2b4bdfee27c2c7f (diff) | |
download | gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.gz gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.bz2 gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.lz gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.xz gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.zst gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.zip |
Allow building with xulrunner 1.9. Patch by Alexander Sack; part of bug #503657
svn path=/trunk/; revision=8094
Diffstat (limited to 'plugins/desktop-file')
-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 |