Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
5fb7f53c
Commit
5fb7f53c
authored
Nov 07, 2018
by
Ulrich Sibiller
Committed by
Mike Gabriel
Jan 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
os: unifdef ISC
parent
bccf81ea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
34 deletions
+5
-34
xf86bigfont.c
nx-X11/programs/Xserver/Xext/xf86bigfont.c
+1
-1
access.c
nx-X11/programs/Xserver/os/access.c
+4
-31
log.c
nx-X11/programs/Xserver/os/log.c
+0
-2
No files found.
nx-X11/programs/Xserver/Xext/xf86bigfont.c
View file @
5fb7f53c
...
...
@@ -50,7 +50,7 @@
#ifdef SVR4
#include <sys/sysmacros.h>
#endif
#if defined(
ISC) || defined(
__CYGWIN__) || defined(__SCO__)
#if defined(__CYGWIN__) || defined(__SCO__)
#include <sys/param.h>
#include <sys/sysmacros.h>
#endif
...
...
nx-X11/programs/Xserver/os/access.c
View file @
5fb7f53c
...
...
@@ -80,9 +80,9 @@ SOFTWARE.
#include <sys/ioctl.h>
#include <ctype.h>
#if defined(TCPCONN) || defined(
ISC) || defined(
__SCO__)
#if defined(TCPCONN) || defined(__SCO__)
#include <netinet/in.h>
#endif
/* TCPCONN ||
ISC ||
__SCO__ */
#endif
/* TCPCONN || __SCO__ */
#ifdef HAS_GETPEERUCRED
# include <ucred.h>
...
...
@@ -96,10 +96,6 @@ SOFTWARE.
#endif
#if defined(SYSV) && defined(i386)
# include <sys/stream.h>
# ifdef ISC
# include <sys/stropts.h>
# include <sys/sioctl.h>
# endif
/* ISC */
#endif
#ifdef __GNU__
#undef SIOCGIFCONF
...
...
@@ -282,7 +278,7 @@ AccessUsingXdmcp (void)
}
#if ((defined(SVR4) && !defined(SCO325) && !defined(sun) && !defined(NCR))
|| defined(ISC)
) && defined(SIOCGIFCONF) && !defined(USE_SIOCGLIFCONF)
#if ((defined(SVR4) && !defined(SCO325) && !defined(sun) && !defined(NCR))) && defined(SIOCGIFCONF) && !defined(USE_SIOCGLIFCONF)
/* Deal with different SIOCGIFCONF ioctl semantics on these OSs */
...
...
@@ -299,17 +295,6 @@ ifioctl (int fd, int cmd, char *arg)
{
ioc
.
ic_len
=
((
struct
ifconf
*
)
arg
)
->
ifc_len
;
ioc
.
ic_dp
=
((
struct
ifconf
*
)
arg
)
->
ifc_buf
;
#ifdef ISC
/* SIOCGIFCONF is somewhat brain damaged on ISC. The argument
* buffer must contain the ifconf structure as header. Ifc_req
* is also not a pointer but a one element array of ifreq
* structures. On return this array is extended by enough
* ifreq fields to hold all interfaces. The return buffer length
* is placed in the buffer header.
*/
((
struct
ifconf
*
)
ioc
.
ic_dp
)
->
ifc_len
=
ioc
.
ic_len
-
sizeof
(
struct
ifconf
);
#endif
}
else
{
...
...
@@ -321,19 +306,11 @@ ifioctl (int fd, int cmd, char *arg)
#ifdef SVR4
((
struct
ifconf
*
)
arg
)
->
ifc_len
=
ioc
.
ic_len
;
#endif
#ifdef ISC
{
((
struct
ifconf
*
)
arg
)
->
ifc_len
=
((
struct
ifconf
*
)
ioc
.
ic_dp
)
->
ifc_len
;
((
struct
ifconf
*
)
arg
)
->
ifc_buf
=
(
caddr_t
)((
struct
ifconf
*
)
ioc
.
ic_dp
)
->
ifc_req
;
}
#endif
return
(
ret
);
}
#else
/* Case sun, SCO325 NCR and others */
#define ifioctl ioctl
#endif
/* ((SVR4 && !sun !SCO325 !NCR)
|| ISC
) && SIOCGIFCONF */
#endif
/* ((SVR4 && !sun !SCO325 !NCR)) && SIOCGIFCONF */
/*
* DefineSelf (fd):
...
...
@@ -723,11 +700,7 @@ DefineSelf (int fd)
ifc
.
ifc_buf
=
bufptr
;
#define IFC_IOCTL_REQ SIOCGIFCONF
#ifdef ISC
#define IFC_IFC_REQ (struct ifreq *) ifc.ifc_buf
#else
#define IFC_IFC_REQ ifc.ifc_req
#endif
/* ISC */
#define IFC_IFC_LEN ifc.ifc_len
#define IFR_IFR_ADDR ifr->ifr_addr
#define IFR_IFR_NAME ifr->ifr_name
...
...
nx-X11/programs/Xserver/os/log.c
View file @
5fb7f53c
...
...
@@ -730,11 +730,9 @@ ErrorF(const char * f, ...)
#ifndef NEED_STRERROR
#ifdef SYSV
#if !defined(ISC) || defined(ISC202) || defined(ISC22)
#define NEED_STRERROR
#endif
#endif
#endif
#if defined(NEED_STRERROR) && !defined(strerror)
extern
char
*
sys_errlist
[];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment