Browse Source

Work around missing PF_LOCAL (fixes: #3027)

pull/2/head
Rémi Denis-Courmont 17 years ago
parent
commit
29b00f3f47
  1. 3
      src/extras/libc.c

3
src/extras/libc.c

@ -57,6 +57,9 @@
# include <fcntl.h>
# include <sys/socket.h>
# include <sys/poll.h>
# ifndef PF_LOCAL
# define PF_LOCAL PF_UNIX
# endif
#endif
#if defined(WIN32) || defined(UNDER_CE)

Loading…
Cancel
Save