summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-11-21 13:17:38 +0100
committerantirez <antirez@gmail.com>2012-11-21 13:17:38 +0100
commit3cb432837ce799062c83337e5f590c385e48d4bd (patch)
tree72fe5c9064af2a07c9318cc24aaeb51bf3a62673 /src/config.h
parent49b645235100fc214468b608c1ba6cdbc320fa88 (diff)
downloadredis-3cb432837ce799062c83337e5f590c385e48d4bd.tar.gz
Use more fine grained HAVE macros instead of HAVE_PROCFS.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index db33407c5..97c599745 100644
--- a/src/config.h
+++ b/src/config.h
@@ -45,7 +45,9 @@
/* Test for proc filesystem */
#ifdef __linux__
-#define HAVE_PROCFS 1
+#define HAVE_PROC_STAT 1
+#define HAVE_PROC_MAPS 1
+#define HAVE_PROC_SMAPS 1
#endif
/* Test for task_info() */