X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Funix.c;h=da80f535ef9bea1a2b1d65a394b01b5d98a60b44;hp=194b44520c304037e9957303f5a0edfcfd96b4d1;hb=825d22351b1d59c71e98357b4931bf7bb67daa3a;hpb=434f8168ad00b6530158055cb9c7b4adaf9ebd9f diff --git a/src/unix.c b/src/unix.c index 194b445..da80f53 100644 --- a/src/unix.c +++ b/src/unix.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: unix.c,v 1.8 2005-01-15 19:47:14 adam Exp $ + * $Id: unix.c,v 1.9 2005-01-16 21:51:50 adam Exp $ * UNIX socket COMSTACK. By Morten Bøgeskov. */ /** @@ -15,20 +15,31 @@ #include #include #include -#include #include +#if HAVE_UNISTD_H +#include +#endif #include #include #include +#if HAVE_PWD_H #include +#endif +#if HAVE_SYS_TYPES_H #include +#endif +#if HAVE_SYS_SOCKET_H #include +#endif +#if HAVE_SYS_STAT_H #include +#endif +#if HAVE_SYS_UN_H #include +#endif -#include #include #include @@ -699,4 +710,4 @@ static int unix_set_blocking(COMSTACK p, int blocking) p->blocking = blocking; return 1; } -#endif +#endif /* WIN32 */