Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 564998
Collapse All | Expand All

(-)file_not_specified_in_diff (-8 / +2 lines)
Line  Link Here
0
-- a/src/memcache.c
0
++ b/src/memcache.c
Lines 28-33 Link Here
28
 * included, therefore it is assumed that this code is public
28
 * included, therefore it is assumed that this code is public
29
 * domain.  Attribution still noted. */
29
 * domain.  Attribution still noted. */
30
30
31
#define _XOPEN_SOURCE 700
31
#ifdef HAVE_CONFIG_H
32
#ifdef HAVE_CONFIG_H
32
# include "config.h"
33
# include "config.h"
33
#endif
34
#endif
Lines 39-51 Link Here
39
#include <sysexits.h>
40
#include <sysexits.h>
40
#include <errno.h>
41
#include <errno.h>
41
#include <sys/types.h>
42
#include <sys/types.h>
42
#ifdef __linux
43
# ifndef __USE_POSIX
44
#  define __USE_POSIX
45
#warning "Working around busted-ass Linux header include problems: use FreeBSD instead"
46
#warning "http://www.FreeBSD.org/ - you won't regret it"
47
# endif
48
#endif
49
#include <sys/time.h>
43
#include <sys/time.h>
50
#include <sys/socket.h>
44
#include <sys/socket.h>
51
#include <sys/uio.h>
45
#include <sys/uio.h>

Return to bug 564998