-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build failure and automake support #11
base: master
Are you sure you want to change the base?
Changes from 1 commit
ddacf94
1e83af5
7e844eb
a55aaba
834383b
45da295
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,7 @@ noinst_HEADERS+= libmemcached/continuum.hpp | |
noinst_HEADERS+= libmemcached/do.hpp | ||
noinst_HEADERS+= libmemcached/encoding_key.h | ||
noinst_HEADERS+= libmemcached/error.hpp | ||
noinst_HEADERS+= libmemcached/flag.hpp | ||
noinst_HEADERS+= libmemcached/host.h | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dead code |
||
noinst_HEADERS+= libmemcached/flag.hpp | ||
noinst_HEADERS+= libmemcached/initialize_query.h | ||
noinst_HEADERS+= libmemcached/instance.hpp | ||
noinst_HEADERS+= libmemcached/internal.h | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ | |
|
||
#include <algorithm> | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The linking of the test cases and memcached files was running into the error below. I had renamed a couple methods that contained the same signature causing multiple definition errors.
|
||
void get_world(libtest::Framework* world) | ||
void get_world_all(libtest::Framework* world) | ||
{ | ||
if (getenv("LIBMEMCACHED_SERVER_NUMBER")) | ||
{ | ||
|
@@ -86,7 +86,7 @@ void get_world(libtest::Framework* world) | |
std::min(libtest::number_of_cpus(), size_t(8)) : 3); | ||
} | ||
|
||
world->collections(collection); | ||
world->collections(collections); | ||
|
||
world->create((test_callback_create_fn*)world_create); | ||
world->destroy((test_callback_destroy_fn*)world_destroy); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dead code