use _POSIX_PIPE_BUF if PIPE_BUF is not defined (as on FreeBSD); thanks Gleydson Soares!

This commit is contained in:
Nico Golde 2015-03-22 13:37:53 +01:00
parent 41ce43bf8c
commit 63b5736e6e
1 changed files with 2 additions and 2 deletions

4
ii.c
View File

@ -19,8 +19,8 @@
#include <time.h>
#include <unistd.h>
#ifndef PIPE_BUF /* FreeBSD don't know PIPE_BUF */
#define PIPE_BUF 4096
#ifndef PIPE_BUF /* For OS that doesn't includes PIPE_BUF in limits.h, FreeBSD? */
#define PIPE_BUF _POSIX_PIPE_BUF
#endif
#define PING_TIMEOUT 300
#define SERVER_PORT 6667