Blame SOURCES/libmemcached-fix-linking-with-libpthread.patch

89e5f4
diff -up libmemcached-1.0.16/build-aux/ltmain.sh.orig libmemcached-1.0.16/build-aux/ltmain.sh
89e5f4
--- libmemcached-1.0.16/build-aux/ltmain.sh.orig	2013-12-03 16:36:53.222107642 +0100
89e5f4
+++ libmemcached-1.0.16/build-aux/ltmain.sh	2013-12-03 16:37:35.770132249 +0100
89e5f4
@@ -5664,6 +5664,15 @@ func_mode_link ()
89e5f4
 	    *" $arg "*) ;;
89e5f4
 	    * ) func_append new_inherited_linker_flags " $arg" ;;
89e5f4
 	esac
89e5f4
+	# As we are forced to pass -nostdlib to g++ during linking, the option
89e5f4
+	# -pthread{,s} is not in effect;  add the -lpthread to $deplist
89e5f4
+	# explicitly to link correctly.
89e5f4
+	if test "$tagname" = CXX -a x"$with_gcc" = xyes; then
89e5f4
+	  case "$arg" in
89e5f4
+	    -pthread*) func_append deplibs " -lpthread" ;;
89e5f4
+	  esac
89e5f4
+	fi
89e5f4
+
89e5f4
 	continue
89e5f4
 	;;
89e5f4