summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2008-08-18 15:42:06 +0000
committerDan Winship <danw@src.gnome.org>2008-08-18 15:42:06 +0000
commitb4917ecbab1a44cdc8cb43d7a22d3748eba37e50 (patch)
treeff99fff0365c8becb0ec32e887f8cd5d7bf7e21c
parent6cdfa91143b7c141c012b67cf625cd7b6e989e5b (diff)
downloadlibsoup-b4917ecbab1a44cdc8cb43d7a22d3748eba37e50.tar.gz
Revert previous commit; that would still fail in the case of an
* libsoup.pc.in (Requires): Revert previous commit; that would still fail in the case of an application linking against a library that privately links against libsoup. The only correct solution in the face of --as-needed (or on OSes where the linker always works that way) is for the module that actually calls g_thread_init() to explicitly link against libgthread. svn path=/trunk/; revision=1153
-rw-r--r--ChangeLog9
-rw-r--r--libsoup.pc.in2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1496c7d5..36d81525 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-08-18 Dan Winship <danw@gnome.org>
+
+ * libsoup.pc.in (Requires): Revert previous commit; that would
+ still fail in the case of an application linking against a library
+ that privately links against libsoup. The only correct solution in
+ the face of --as-needed (or on OSes where the linker always works
+ that way) is for the module that actually calls g_thread_init() to
+ explicitly link against libgthread.
+
2008-08-14 Dan Winship <danw@gnome.org>
* libsoup.pc.in (Requires): Add gthread-2.0; the app must call
diff --git a/libsoup.pc.in b/libsoup.pc.in
index eb49a3e8..bf2bf390 100644
--- a/libsoup.pc.in
+++ b/libsoup.pc.in
@@ -7,7 +7,7 @@ SOUP_API_VERSION=@SOUP_API_VERSION@
Name: libsoup
Description: a glib-based HTTP library
Version: @VERSION@
-Requires: glib-2.0 gobject-2.0 gio-2.0 gthread-2.0
+Requires: glib-2.0 gobject-2.0 gio-2.0
Requires.private: libxml-2.0 @SSL_REQUIREMENT@
Libs: -L${libdir} -lsoup-${SOUP_API_VERSION}
Cflags: -I${includedir}/libsoup-${SOUP_API_VERSION}