1
0
mirror of https://invent.kde.org/network/krfb synced 2024-07-08 12:05:49 +00:00

Compile fixes for solaris, thanks to Rune Kristian Viken <runevi@student.matnat.uio.no>

svn path=/trunk/kdenetwork/krfb/; revision=153362
This commit is contained in:
Tim Jansen 2002-05-02 17:24:30 +00:00
parent 0578890b2e
commit ceed5e4971
3 changed files with 12 additions and 0 deletions

View File

@ -28,6 +28,10 @@
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#ifdef USE_SOLARIS
#include <sys/sockio.h>
#endif
static char *dissipate_our_fqdn = NULL;

View File

@ -25,6 +25,10 @@
#include <unistd.h>
#include <fcntl.h>
#ifdef USE_SOLARIS
#include <strings.h>
#endif
#include <kapplication.h>
#include <knotifyclient.h>
#include <kdebug.h>

View File

@ -64,6 +64,10 @@ struct timeval
}
;
#endif
#ifndef INADDR_NONE
#define INADDR_NONE ((in_addr_t) 0xffffffff)
#endif
#include <fcntl.h>
#include <errno.h>