diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-11-15 20:59:35 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-02-08 22:40:46 +0100 |
commit | 184c5d778210dea8eab045a5f7ecf9d4344c1c34 (patch) | |
tree | 9ac5219fc25700a78e5ad934ba1372482f6fb5ba /nx-X11/programs/Xserver/os/connection.c | |
parent | ace255eda62081526b721e82ed0339c566975ad3 (diff) | |
download | nx-libs-184c5d778210dea8eab045a5f7ecf9d4344c1c34.tar.gz nx-libs-184c5d778210dea8eab045a5f7ecf9d4344c1c34.tar.bz2 nx-libs-184c5d778210dea8eab045a5f7ecf9d4344c1c34.zip |
drop platform support: unifdef hpux and __hppa__.
Fixes ArcticaProject/nx-libs#273.
Diffstat (limited to 'nx-X11/programs/Xserver/os/connection.c')
-rw-r--r-- | nx-X11/programs/Xserver/os/connection.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/nx-X11/programs/Xserver/os/connection.c b/nx-X11/programs/Xserver/os/connection.c index 41234e231..60bcc6bb8 100644 --- a/nx-X11/programs/Xserver/os/connection.c +++ b/nx-X11/programs/Xserver/os/connection.c @@ -82,11 +82,6 @@ SOFTWARE. #ifndef WIN32 #include <sys/socket.h> -#ifdef hpux -#include <sys/utsname.h> -#include <sys/ioctl.h> -#endif - #if defined(DGUX) #include <sys/ioctl.h> #include <sys/utsname.h> @@ -106,7 +101,9 @@ SOFTWARE. #if defined(TCPCONN) # include <netinet/in.h> # include <arpa/inet.h> -# if !defined(hpux) + +/* FIXME: correct indentation levels after ancient platform support clean-up */ + # ifdef apollo # ifndef NO_TCP_H # include <netinet/tcp.h> @@ -117,7 +114,6 @@ SOFTWARE. # endif # include <netinet/tcp.h> # endif -# endif # include <arpa/inet.h> #endif |