X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Funix.c;h=da80f535ef9bea1a2b1d65a394b01b5d98a60b44;hb=5766857b4ed71f0ebe01b1f5fb2ebfb052bd5dfa;hp=8f8abd2c34d0e828abe341d9f22c9414983c683a;hpb=3b96525a40981e162b959f3e842e0ff20e314320;p=yaz-moved-to-github.git diff --git a/src/unix.c b/src/unix.c index 8f8abd2..da80f53 100644 --- a/src/unix.c +++ b/src/unix.c @@ -1,8 +1,8 @@ /* - * Copyright (c) 1995-2004, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: unix.c,v 1.7 2004-11-18 15:18:14 heikki 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 */