3
0
Fork 0
forked from mirrors/nixpkgs

libsoup: patch to remove non-existent symbol

This commit is contained in:
Eric Seidel 2015-03-03 20:14:31 -08:00
parent 0e752c9427
commit 6c6d8772ed
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
--- a/libsoup/libsoup-2.4.sym 2014-10-29 22:37:54 -0700
+++ b/libsoup/libsoup-2.4.sym 2014-06-18 07:42:51 -0700
@@ -348,7 +348,6 @@
soup_server_get_async_context
soup_server_get_listener
soup_server_get_listeners
-soup_server_get_gsocket
soup_server_get_port
soup_server_get_type
soup_server_get_uris

View file

@ -16,6 +16,7 @@ stdenv.mkDerivation {
patchPhase = ''
patchShebangs libsoup/
patch -p1 < ${./bad-symbol.patch}
'';
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ];