diff options
author | Emmanuele Bassi <ebassi@linux.intel.com> | 2011-10-26 12:24:59 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@linux.intel.com> | 2011-10-26 12:24:59 +0100 |
commit | de4a45bed8b5b977a9f35e25b099645f731e6d08 (patch) | |
tree | d1c07ed103730b8b382e83715000a44566a2ca44 | |
parent | e17f329bbb15e62240cd6b5fa21930cf455e68d4 (diff) |
build: Link examples against gthread explicitly
-rw-r--r-- | examples/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 5ccbe80..a58a054 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,7 +1,7 @@ noinst_PROGRAMS = test-raw test-xml dump-xml get-fireeagle-location post-twitter get-flickr-favorites lastfm-shout continuous-twitter -AM_CFLAGS = $(GLIB_CFLAGS) $(SOUP_CFLAGS) -I$(top_srcdir) -AM_LDFLAGS = $(GLIB_LIBS) $(SOUP_LIBS) ../rest/librest-@API_VERSION@.la ../rest-extras/librest-extras-@API_VERSION@.la +AM_CFLAGS = $(GLIB_CFLAGS) $(GTHREAD_CFLAGS) $(SOUP_CFLAGS) -I$(top_srcdir) +AM_LDFLAGS = $(GLIB_LIBS) $(GTHREAD_LIBS) $(SOUP_LIBS) ../rest/librest-@API_VERSION@.la ../rest-extras/librest-extras-@API_VERSION@.la test_raw_SOURCES = test-raw.c test_xml_SOURCES = test-xml.c |