summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael McConville <mmcconville@mykolab.com>2015-12-21 21:08:54 -0500
committerMichael McConville <mmcconville@mykolab.com>2015-12-21 21:08:54 -0500
commitf0c82e6aa9ef43e2d7fa17c18016e6b482c53ec0 (patch)
treee6f9e63cf60141ae2e17ffbd9709f67715b71e19
parentceb0f8a45fcd7b3062417cf9ec6231bacdbbda6f (diff)
downloadpidgin-f0c82e6aa9ef43e2d7fa17c18016e6b482c53ec0.tar.gz
Make the libpurple example prefer build-local libs over system libs by
reordering its LDADD entries. This fixes building on OpenBSD. From elb@.
-rw-r--r--libpurple/example/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpurple/example/Makefile.am b/libpurple/example/Makefile.am
index dfb6188d6a..9125ea2ea1 100644
--- a/libpurple/example/Makefile.am
+++ b/libpurple/example/Makefile.am
@@ -4,13 +4,13 @@ nullclient_SOURCES = defines.h nullclient.c
nullclient_DEPENDENCIES =
nullclient_LDFLAGS = -export-dynamic
nullclient_LDADD = \
+ $(top_builddir)/libpurple/libpurple.la \
$(DBUS_LIBS) \
$(INTLLIBS) \
$(GLIB_LIBS) \
$(GPLUGIN_LIBS) \
$(LIBXML_LIBS) \
- $(GSTVIDEO_LIBS) \
- $(top_builddir)/libpurple/libpurple.la
+ $(GSTVIDEO_LIBS)
AM_CPPFLAGS = \
-DSTANDALONE \