From b5bfd3a49503387f1477a58b7c3d76fcdf06fbe5 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Wed, 12 Oct 2016 21:06:36 +0200 Subject: remove DECnet support just as Xorg upstream did --- nx-X11/config/cf/Imake.tmpl | 3 --- nx-X11/config/cf/README | 1 - nx-X11/config/cf/X11.tmpl | 9 +-------- nx-X11/config/cf/host.def | 7 ------- nx-X11/config/cf/linux.cf | 11 ++--------- nx-X11/config/cf/xorgsite.def | 7 ------- 6 files changed, 3 insertions(+), 35 deletions(-) (limited to 'nx-X11/config') diff --git a/nx-X11/config/cf/Imake.tmpl b/nx-X11/config/cf/Imake.tmpl index 6406fca33..ff8e2fa31 100644 --- a/nx-X11/config/cf/Imake.tmpl +++ b/nx-X11/config/cf/Imake.tmpl @@ -378,9 +378,6 @@ XCOMM the platform-specific parameters - edit site.def to change #ifndef HasStreams #define HasStreams !HasSockets #endif -#ifndef HasDECnet -#define HasDECnet NO -#endif #ifndef HasPoll #if SystemV || SystemV4 #define HasPoll YES diff --git a/nx-X11/config/cf/README b/nx-X11/config/cf/README index 27c2386a4..9f6606535 100644 --- a/nx-X11/config/cf/README +++ b/nx-X11/config/cf/README @@ -53,7 +53,6 @@ Imake.tmpl provides defaults for the following variables: HasCodeCenter boolean for system has CodeCenter HasCookieMaker boolean for system has xauth cookie generator HasCplusplus system has a C++ compiler? - HasDECnet system has DECnet? HasFortran boolean for system has Fortran compiler HasGcc boolean for system has GNU gcc compiler HasGcc2 boolean for system has GNU gcc 2.x compiler diff --git a/nx-X11/config/cf/X11.tmpl b/nx-X11/config/cf/X11.tmpl index 33d108d06..a2465e858 100644 --- a/nx-X11/config/cf/X11.tmpl +++ b/nx-X11/config/cf/X11.tmpl @@ -355,18 +355,11 @@ XORGRELSTRING = XorgManVersionString #ifndef IPv6SocketsAlsoIPv4 #define IPv6SocketsAlsoIPv4 YES #endif -#ifndef DECnetFlags -#if HasDECnet -#define DECnetFlags -DDNETCONN -#else -#define DECnetFlags -#endif -#endif #ifndef ConnectionFlags #if HasStreams #define ConnectionFlags -DSTREAMSCONN #else -#define ConnectionFlags -DTCPCONN -DUNIXCONN DECnetFlags +#define ConnectionFlags -DTCPCONN -DUNIXCONN #endif #endif #if HasStickyDirBit diff --git a/nx-X11/config/cf/host.def b/nx-X11/config/cf/host.def index 0dccfad8b..efd1aad7c 100644 --- a/nx-X11/config/cf/host.def +++ b/nx-X11/config/cf/host.def @@ -429,13 +429,6 @@ #define HasXdmAuth YES #endif /* #if defined(LinuxArchitecture) */ -/* - * If you have Linux DECnet support, and want to build XFree86 with support - * for connections over DECnet, uncomment this. - * -#define HasDECnet YES - */ - /* * To build static and shared libraries with debugging information, uncomment * this. Assumes you have Gcc2. diff --git a/nx-X11/config/cf/linux.cf b/nx-X11/config/cf/linux.cf index 9238b9e6f..c6ae58474 100644 --- a/nx-X11/config/cf/linux.cf +++ b/nx-X11/config/cf/linux.cf @@ -861,15 +861,8 @@ XCOMM binutils: (LinuxBinUtilsMajorVersion) #define PamMiscLibraries -lpam_misc #endif -#ifndef HasDECnet -#define HasDECnet NO -#endif -#if HasDECnet -# define ConnectionFlags -DUNIXCONN -DTCPCONN -DDNETCONN -# define ExtraLibraries -ldnet -#else -# define ConnectionFlags -DUNIXCONN -DTCPCONN -#endif +#define ConnectionFlags -DUNIXCONN -DTCPCONN + /* Some of these man page defaults are overriden in the above OS sections */ #ifndef ManSuffix diff --git a/nx-X11/config/cf/xorgsite.def b/nx-X11/config/cf/xorgsite.def index 1614fce5e..f735495f8 100644 --- a/nx-X11/config/cf/xorgsite.def +++ b/nx-X11/config/cf/xorgsite.def @@ -275,13 +275,6 @@ */ #define HasXdmAuth YES -/* - * If you have Linux DECnet support, and want to build XFree86 with support - * for connections over DECnet, uncomment this. - * -#define HasDECnet YES - */ - /* * To build static and shared libraries with debugging information, uncomment * this. Assumes you have Gcc2. -- cgit v1.2.3 From 0cbc89221f82fa99db511eeef580a1476dfd4087 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Wed, 12 Oct 2016 21:33:00 +0200 Subject: Remove unused TLI ("STREAMSCONN") code --- nx-X11/config/cf/Imake.tmpl | 3 --- nx-X11/config/cf/README | 1 - nx-X11/config/cf/X11.tmpl | 7 +------ 3 files changed, 1 insertion(+), 10 deletions(-) (limited to 'nx-X11/config') diff --git a/nx-X11/config/cf/Imake.tmpl b/nx-X11/config/cf/Imake.tmpl index ff8e2fa31..5c8effee5 100644 --- a/nx-X11/config/cf/Imake.tmpl +++ b/nx-X11/config/cf/Imake.tmpl @@ -375,9 +375,6 @@ XCOMM the platform-specific parameters - edit site.def to change #ifndef HasSockets #define HasSockets YES #endif -#ifndef HasStreams -#define HasStreams !HasSockets -#endif #ifndef HasPoll #if SystemV || SystemV4 #define HasPoll YES diff --git a/nx-X11/config/cf/README b/nx-X11/config/cf/README index 9f6606535..9cb2ff91e 100644 --- a/nx-X11/config/cf/README +++ b/nx-X11/config/cf/README @@ -77,7 +77,6 @@ Imake.tmpl provides defaults for the following variables: HasShm boolean for System V shared memory HasSockets boolean for system has BSD sockets HasStrcasecmp boolean for system implements str[n]casecmp - HasStreams use STREAMS I/O interface? HasSymLinks boolean for system has symbolic links HasTestCenter boolean for system has TestCenter HasVarDirectory boolean for system has /var diff --git a/nx-X11/config/cf/X11.tmpl b/nx-X11/config/cf/X11.tmpl index a2465e858..1942ca805 100644 --- a/nx-X11/config/cf/X11.tmpl +++ b/nx-X11/config/cf/X11.tmpl @@ -334,8 +334,7 @@ XORGRELSTRING = XorgManVersionString * NOTE: IPv6Flags could be tacked on to either ConnectionFlags or * ExtraConnectionDefs. Here, we choose the later in order to * maximise exposure of the IPv6 code (a number of .def files - * contain ConnectionFlags overrides). Mind you, this might not - * the right thing to do when HasStreams is asserted. + * contain ConnectionFlags overrides). */ #ifndef BuildIPv6 /* If the OS also #define's AF_INET6 */ #define BuildIPv6 YES @@ -356,12 +355,8 @@ XORGRELSTRING = XorgManVersionString #define IPv6SocketsAlsoIPv4 YES #endif #ifndef ConnectionFlags -#if HasStreams -#define ConnectionFlags -DSTREAMSCONN -#else #define ConnectionFlags -DTCPCONN -DUNIXCONN #endif -#endif #if HasStickyDirBit STICKY_DEFINES = -DHAS_STICKY_DIR_BIT #endif -- cgit v1.2.3