python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libmemcached / libmemcached-fix-linking-with-libpthread.patch
blobe5e21c4335870bbc626f6aaf7eb84e727a8a2f28
1 diff -up libmemcached-1.0.16/build-aux/ltmain.sh.orig libmemcached-1.0.16/build-aux/ltmain.sh
2 --- libmemcached-1.0.16/build-aux/ltmain.sh.orig 2013-12-03 16:36:53.222107642 +0100
3 +++ libmemcached-1.0.16/build-aux/ltmain.sh 2013-12-03 16:37:35.770132249 +0100
4 @@ -5664,6 +5664,15 @@ func_mode_link ()
5 *" $arg "*) ;;
6 * ) func_append new_inherited_linker_flags " $arg" ;;
7 esac
8 + # As we are forced to pass -nostdlib to g++ during linking, the option
9 + # -pthread{,s} is not in effect; add the -lpthread to $deplist
10 + # explicitly to link correctly.
11 + if test "$tagname" = CXX -a x"$with_gcc" = xyes; then
12 + case "$arg" in
13 + -pthread*) func_append deplibs " -lpthread" ;;
14 + esac
15 + fi
17 continue