Commit fbf9bcdb authored by antirez's avatar antirez
Browse files

Fixed NetBSD compile problems

parent 21aecf4b
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#define REDIS_VERSION "0.900" #define REDIS_VERSION "0.900"
#include "fmacros.h" #include "fmacros.h"
#include "config.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -38,8 +39,12 @@ ...@@ -38,8 +39,12 @@
#include <unistd.h> #include <unistd.h>
#define __USE_POSIX199309 #define __USE_POSIX199309
#include <signal.h> #include <signal.h>
#ifdef HAVE_BACKTRACE
#include <execinfo.h> #include <execinfo.h>
#include <ucontext.h> #include <ucontext.h>
#endif /* HAVE_BACKTRACE */
#include <sys/wait.h> #include <sys/wait.h>
#include <errno.h> #include <errno.h>
#include <assert.h> #include <assert.h>
...@@ -52,7 +57,6 @@ ...@@ -52,7 +57,6 @@
#include <sys/time.h> #include <sys/time.h>
#include <sys/resource.h> #include <sys/resource.h>
#include <limits.h> #include <limits.h>
#include <execinfo.h>
#include "redis.h" #include "redis.h"
#include "ae.h" /* Event driven programming library */ #include "ae.h" /* Event driven programming library */
...@@ -64,8 +68,6 @@ ...@@ -64,8 +68,6 @@
#include "lzf.h" /* LZF compression library */ #include "lzf.h" /* LZF compression library */
#include "pqsort.h" /* Partial qsort for SORT+LIMIT */ #include "pqsort.h" /* Partial qsort for SORT+LIMIT */
#include "config.h"
/* Error codes */ /* Error codes */
#define REDIS_OK 0 #define REDIS_OK 0
#define REDIS_ERR -1 #define REDIS_ERR -1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment