]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Makefile.am: Add -lpthread to fix build on newer ld in Raring Ringtail
authorDan Mick <dan.mick@inktank.com>
Thu, 25 Apr 2013 22:53:51 +0000 (15:53 -0700)
committerSage Weil <sage@inktank.com>
Wed, 1 May 2013 21:08:02 +0000 (14:08 -0700)
Signed-off-by: Dan Mick <dan.mick@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
(cherry picked from commit 98f532e8000af281fa03b24da9ad2fda81755270)

Conflicts:
src/Makefile.am

src/Makefile.am

index 7eabd62b121350b023a7101478226fa8b6aae3ef..b12504be9bfadbc50a0558469850d6cfebf586db 100644 (file)
@@ -577,13 +577,13 @@ testrados_list_parallel_SOURCES = \
        test/system/rados_list_parallel.cc \
        test/system/st_rados_create_pool.cc \
        test/system/st_rados_list_objects.cc
-testrados_list_parallel_LDADD = libsystest.la librados.la
+testrados_list_parallel_LDADD = libsystest.la librados.la $(PTHREAD_LIBS)
 bin_DEBUGPROGRAMS += testrados_list_parallel
 
 testrados_open_pools_parallel_SOURCES = \
        test/system/rados_open_pools_parallel.cc \
        test/system/st_rados_create_pool.cc
-testrados_open_pools_parallel_LDADD = libsystest.la librados.la
+testrados_open_pools_parallel_LDADD = libsystest.la librados.la $(PTHREAD_LIBS)
 bin_DEBUGPROGRAMS += testrados_open_pools_parallel
 
 testrados_delete_pools_parallel_SOURCES = \
@@ -591,7 +591,7 @@ testrados_delete_pools_parallel_SOURCES = \
        test/system/st_rados_create_pool.cc \
        test/system/st_rados_delete_pool.cc \
        test/system/st_rados_list_objects.cc
-testrados_delete_pools_parallel_LDADD = libsystest.la librados.la
+testrados_delete_pools_parallel_LDADD = libsystest.la librados.la $(PTHREAD_LIBS)
 bin_DEBUGPROGRAMS += testrados_delete_pools_parallel
 
 testrados_watch_notify_SOURCES = \
@@ -601,7 +601,7 @@ testrados_watch_notify_SOURCES = \
        test/system/st_rados_delete_objs.cc \
        test/system/st_rados_watch.cc \
        test/system/st_rados_notify.cc
-testrados_watch_notify_LDADD = libsystest.la librados.la
+testrados_watch_notify_LDADD = libsystest.la librados.la $(PTHREAD_LIBS)
 bin_DEBUGPROGRAMS += testrados_watch_notify
 
 bench_log_SOURCES = \