diff options
| author | Remi Collet <fedora@famillecollet.com> | 2014-02-20 09:42:10 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2014-02-20 09:42:10 +0100 | 
| commit | 35eeedcddc76d5aaa1d09e3f9cac0f7dc9c46fbc (patch) | |
| tree | c85ab3082704ecc362d74d4a7238206607c7bba9 | |
| parent | 5c2d2839091a04f7cdbdb034b475579dd2c42ecc (diff) | |
libmemcached: missing pacth
| -rw-r--r-- | libmemcached-fix-linking-with-libpthread.patch | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/libmemcached-fix-linking-with-libpthread.patch b/libmemcached-fix-linking-with-libpthread.patch new file mode 100644 index 0000000..e5e21c4 --- /dev/null +++ b/libmemcached-fix-linking-with-libpthread.patch @@ -0,0 +1,19 @@ +diff -up libmemcached-1.0.16/build-aux/ltmain.sh.orig libmemcached-1.0.16/build-aux/ltmain.sh +--- libmemcached-1.0.16/build-aux/ltmain.sh.orig	2013-12-03 16:36:53.222107642 +0100 ++++ libmemcached-1.0.16/build-aux/ltmain.sh	2013-12-03 16:37:35.770132249 +0100 +@@ -5664,6 +5664,15 @@ func_mode_link () + 	    *" $arg "*) ;; + 	    * ) func_append new_inherited_linker_flags " $arg" ;; + 	esac ++	# As we are forced to pass -nostdlib to g++ during linking, the option ++	# -pthread{,s} is not in effect;  add the -lpthread to $deplist ++	# explicitly to link correctly. ++	if test "$tagname" = CXX -a x"$with_gcc" = xyes; then ++	  case "$arg" in ++	    -pthread*) func_append deplibs " -lpthread" ;; ++	  esac ++	fi ++ + 	continue + 	;; +   | 
