Solaris fixes.
This commit is contained in:
parent
4afa187f9a
commit
cd389742e6
@ -13,7 +13,7 @@ USE_SSL ?= NO
|
|||||||
USE_BIGENDIAN ?= AUTO
|
USE_BIGENDIAN ?= AUTO
|
||||||
BITS ?= AUTO
|
BITS ?= AUTO
|
||||||
SILENT ?= YES
|
SILENT ?= YES
|
||||||
LDLIBS += -lev
|
LDLIBS += -levent
|
||||||
TERSE ?= NO
|
TERSE ?= NO
|
||||||
STACK_PROTECT ?= NO
|
STACK_PROTECT ?= NO
|
||||||
|
|
||||||
@ -21,6 +21,9 @@ ifeq ($(OS), Windows_NT)
|
|||||||
WINDOWS ?= YES
|
WINDOWS ?= YES
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq (SOLARIS,YES)
|
||||||
|
LDLIBS += -lsocket -lnsl
|
||||||
|
endif
|
||||||
|
|
||||||
CFLAGS += -I./src/
|
CFLAGS += -I./src/
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#ifndef WIN32
|
#if !defined(WIN32)
|
||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
@ -100,7 +100,7 @@
|
|||||||
|
|
||||||
#include <event.h>
|
#include <event.h>
|
||||||
|
|
||||||
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun__)
|
||||||
#undef HAVE_STRNDUP
|
#undef HAVE_STRNDUP
|
||||||
#undef HAVE_MEMMEM
|
#undef HAVE_MEMMEM
|
||||||
#endif
|
#endif
|
||||||
@ -115,7 +115,6 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define SERVER_PORT 1511
|
#define SERVER_PORT 1511
|
||||||
#define SERVER_ADDR_IPV6 "::"
|
#define SERVER_ADDR_IPV6 "::"
|
||||||
#define SERVER_ADDR_IPV4 "0.0.0.0"
|
#define SERVER_ADDR_IPV4 "0.0.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user