summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Aker <brian@tangent.org>2012-11-18 23:57:41 -0500
committerBrian Aker <brian@tangent.org>2012-11-18 23:57:41 -0500
commit6782c821475af5ab6801fe89f9726072a2a31a7f (patch)
tree8aa7d5e252a6c8a8585263b481fcd1db04794438
parent1b26fc8f15dfdb529a4a418322e489c990e564b4 (diff)
downloadlibmemcached-6782c821475af5ab6801fe89f9726072a2a31a7f.tar.gz
Fixes a few more files that did not have a good config.h
-rw-r--r--clients/memaslap.c2
-rw-r--r--clients/ms_conn.c2
-rw-r--r--clients/ms_setting.c2
-rw-r--r--clients/ms_sigsegv.c2
-rw-r--r--clients/ms_stats.c2
-rw-r--r--clients/ms_task.c2
-rw-r--r--clients/ms_thread.c2
-rw-r--r--example/interface_v0.cc2
-rw-r--r--example/interface_v1.cc2
-rw-r--r--example/storage.cc2
-rw-r--r--libmemcachedprotocol/cache.c2
-rw-r--r--m4/bottom.m42
-rw-r--r--poll/poll.c2
-rw-r--r--util/logfile.cc2
-rw-r--r--util/pidfile.cc2
15 files changed, 15 insertions, 15 deletions
diff --git a/clients/memaslap.c b/clients/memaslap.c
index 764707b5..fba0ab4e 100644
--- a/clients/memaslap.c
+++ b/clients/memaslap.c
@@ -13,7 +13,7 @@
* Mingqiang Zhuang <mingqiangzhuang@hengtiansoft.com>
*
*/
-#include "config.h"
+#include "mem_config.h"
#include <stdlib.h>
#include <getopt.h>
diff --git a/clients/ms_conn.c b/clients/ms_conn.c
index 2a65f6cf..c4f1b87b 100644
--- a/clients/ms_conn.c
+++ b/clients/ms_conn.c
@@ -9,7 +9,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#include <stdio.h>
#include <inttypes.h>
diff --git a/clients/ms_setting.c b/clients/ms_setting.c
index 3eb4d0e6..eafe459a 100644
--- a/clients/ms_setting.c
+++ b/clients/ms_setting.c
@@ -9,7 +9,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#include <libmemcached/memcached.h>
diff --git a/clients/ms_sigsegv.c b/clients/ms_sigsegv.c
index c9a366a0..5f0ae65c 100644
--- a/clients/ms_sigsegv.c
+++ b/clients/ms_sigsegv.c
@@ -12,7 +12,7 @@
* Author Trond Norbye
*/
-#include "config.h"
+#include "mem_config.h"
#include <memory.h>
#include <stdlib.h>
diff --git a/clients/ms_stats.c b/clients/ms_stats.c
index 8d62a5aa..086fb3ef 100644
--- a/clients/ms_stats.c
+++ b/clients/ms_stats.c
@@ -9,7 +9,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#include <inttypes.h>
#include "ms_stats.h"
diff --git a/clients/ms_task.c b/clients/ms_task.c
index 083b46f4..f2cb8657 100644
--- a/clients/ms_task.c
+++ b/clients/ms_task.c
@@ -9,7 +9,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#if defined(HAVE_SYS_TIME_H)
# include <sys/time.h>
diff --git a/clients/ms_thread.c b/clients/ms_thread.c
index 2405e6ad..264cca7c 100644
--- a/clients/ms_thread.c
+++ b/clients/ms_thread.c
@@ -9,7 +9,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#if defined(HAVE_SYS_TIME_H)
# include <sys/time.h>
diff --git a/example/interface_v0.cc b/example/interface_v0.cc
index 1cba4eb1..64debddc 100644
--- a/example/interface_v0.cc
+++ b/example/interface_v0.cc
@@ -5,7 +5,7 @@
* specification next to your coffee ;-)
*/
-#include "config.h"
+#include "mem_config.h"
#include <cassert>
#include <sys/types.h>
diff --git a/example/interface_v1.cc b/example/interface_v1.cc
index 8afe12a3..61dd929d 100644
--- a/example/interface_v1.cc
+++ b/example/interface_v1.cc
@@ -8,7 +8,7 @@
* you will not receive the next command before a answer to the previous
* command is being sent.
*/
-#include "config.h"
+#include "mem_config.h"
#include <cassert>
#include <cerrno>
diff --git a/example/storage.cc b/example/storage.cc
index 2e63a3e3..79d2a7d3 100644
--- a/example/storage.cc
+++ b/example/storage.cc
@@ -1,5 +1,5 @@
/* -*- Mode: C; tab-width: 2; c-basic-offset: 2; indent-tabs-mode: nil -*- */
-#include "config.h"
+#include "mem_config.h"
#include <stdlib.h>
#include <inttypes.h>
#include <time.h>
diff --git a/libmemcachedprotocol/cache.c b/libmemcachedprotocol/cache.c
index 6240be7d..67c72ead 100644
--- a/libmemcachedprotocol/cache.c
+++ b/libmemcachedprotocol/cache.c
@@ -35,7 +35,7 @@
*/
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
-#include "config.h"
+#include "mem_config.h"
#include <stdlib.h>
#include <string.h>
diff --git a/m4/bottom.m4 b/m4/bottom.m4
index a612d707..d2252ac7 100644
--- a/m4/bottom.m4
+++ b/m4/bottom.m4
@@ -5,7 +5,7 @@ AH_TOP([
/* _SYS_FEATURE_TESTS_H is Solaris, _FEATURES_H is GCC */
#if defined( _SYS_FEATURE_TESTS_H) || defined(_FEATURES_H)
-#error "You should include config.h as your first include file"
+#error "You should include mem_config.h as your first include file"
#endif
])
diff --git a/poll/poll.c b/poll/poll.c
index d7a7d9c7..28156d1f 100644
--- a/poll/poll.c
+++ b/poll/poll.c
@@ -8,7 +8,7 @@
* Summary: Implementation of poll by using select
*
*/
-#include "config.h"
+#include "mem_config.h"
#if defined(WIN32) || defined(__MINGW32__)
# include <winsock2.h>
diff --git a/util/logfile.cc b/util/logfile.cc
index 29023b6f..810424d0 100644
--- a/util/logfile.cc
+++ b/util/logfile.cc
@@ -35,7 +35,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#include "util/logfile.hpp"
diff --git a/util/pidfile.cc b/util/pidfile.cc
index c6c5b440..90a6d178 100644
--- a/util/pidfile.cc
+++ b/util/pidfile.cc
@@ -35,7 +35,7 @@
*
*/
-#include "config.h"
+#include "mem_config.h"
#include "util/pidfile.hpp"