diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-04-02 19:00:02 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-04-03 16:55:43 +0100 |
commit | fcfd16cbc3148f15e53956a8fece6e67a2023652 (patch) | |
tree | a613c691f45ebfec38eef21dadec28f55feebacf /backends/libsocialweb | |
parent | e5b075082d75d83829b23e99f60c75482ddd7784 (diff) |
Do not explicitly link libfolks-internal.la into things
libfolks.la embeds a copy of libfolks-internal.la, so every public
(or internal) symbol in libfolks-internal.la is available in
libfolks.la, even if linked with -Wl,--no-copy-dt-needed-entries.
If libfolks-internal.la defines a GObject type, then linking two copies
of it is actively harmful, because they can't both be registered with the
type system.
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=687161
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Reviewed-by: Philip Withnall <philip@tecnocode.co.uk>
Diffstat (limited to 'backends/libsocialweb')
-rw-r--r-- | backends/libsocialweb/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backends/libsocialweb/Makefile.am b/backends/libsocialweb/Makefile.am index eb051b54..1e52276d 100644 --- a/backends/libsocialweb/Makefile.am +++ b/backends/libsocialweb/Makefile.am @@ -54,7 +54,6 @@ libsocialweb_la_LIBADD = \ $(GLIB_LIBS) \ $(GEE_LIBS) \ $(top_builddir)/folks/libfolks.la \ - $(top_builddir)/folks/libfolks-internal.la \ $(SW_CLIENT_LIBS) \ lib/libfolks-libsocialweb.la \ $(NULL) |