Skip to content

Commit 848177a

Browse files
The SYSVONLY flag is no longer used or needed. (#153)
Welcome to the world of being mostly POSIX!
1 parent d717946 commit 848177a

8 files changed

+7
-10
lines changed

bin/compile-flags

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ BYTESWAP Used when compiling for a hardware architecture that has
1313
byte-swapped words and word-swapped 32-bit cells, e.g. 80386.
1414
SYSVSIGNALS True when compiling on a system that requires the use of
1515
SYSV (rather than BSD) signal-handling code.
16-
SYSVONLY True when compiling on a system that has little or no
17-
BSD support. E.g. gettimeofday is missing.
1816
I386 True if compiling for the Sun386i (not just any 80386);
1917
used because the 386i's display controller is odd.
2018
OS4 True if compiling for SunOS 4.x

bin/makefile-cygwin.x86_64-x

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DISPOPTFLAGS = -O2 -g3
2424
FPFLAGS =
2525
DFLAGS = -DLINUX -DAIX -DOLD_CURSOR \
2626
-DBYTESWAP -DFORKCOMM -DNOFORN -DLOGINT $(XFLAGS) \
27-
-DRELEASE=351 -DSYSVSIGNALS -DSYSVONLY \
27+
-DRELEASE=351 -DSYSVSIGNALS \
2828
-D_GNU_SOURCE
2929

3030
LDFLAGS = -L/usr/X11/lib -lX11 -lc -lm -lcrypt

bin/makefile-init.sparc

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ MAIN = main
4949
DEBUGFLAGS = # -DSTACKCHECK -DFNSTKCHECK
5050

5151
MACHINEFLAGS = -DOS5 -DAIX -DUSE_DLPI -DNOPIXRECT \
52-
-I$(OPENWINHOME)/include -DSYSVSIGNALS -DSYSVONLY \
52+
-I$(OPENWINHOME)/include -DSYSVSIGNALS \
5353
-DOLD_CURSOR -DLOGINT -DFORKCOMM -DLOCK_X_UPDATES
5454

5555
INLINEFLAGS =

bin/makefile-linux.386-x

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ DISPOPTFLAGS = -O2 -g3
2323
FPFLAGS =
2424
DFLAGS = -DLINUX -DAIX -DOLD_CURSOR \
2525
-DBYTESWAP -DFORKCOMM -DNOFORN -DLOGINT $(XFLAGS) \
26-
-DRELEASE=351 -DSYSVSIGNALS -DSYSVONLY \
26+
-DRELEASE=351 -DSYSVSIGNALS \
2727
-D_GNU_SOURCE
2828

2929
LDFLAGS = -L/usr/X11/lib -lX11 -lc -lm -lcrypt

bin/makefile-linux.armv7l-x

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ DISPOPTFLAGS = -O2 -g3
2323
FPFLAGS =
2424
DFLAGS = -DLINUX -DAIX -DOLD_CURSOR \
2525
-DBYTESWAP -DFORKCOMM -DNOFORN -DLOGINT $(XFLAGS) \
26-
-DRELEASE=351 -DSYSVSIGNALS -DSYSVONLY \
26+
-DRELEASE=351 -DSYSVSIGNALS \
2727
-D_GNU_SOURCE
2828

2929
LDFLAGS = -L/usr/X11/lib -lX11 -lc -lm -lcrypt

bin/makefile-linux.x86_64-x

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DISPOPTFLAGS = -O2 -g3
2424
FPFLAGS =
2525
DFLAGS = -DLINUX -DAIX -DOLD_CURSOR \
2626
-DBYTESWAP -DFORKCOMM -DNOFORN -DLOGINT $(XFLAGS) \
27-
-DRELEASE=351 -DSYSVSIGNALS -DSYSVONLY \
27+
-DRELEASE=351 -DSYSVSIGNALS \
2828
-D_GNU_SOURCE
2929

3030
LDFLAGS = -L/usr/X11/lib -lX11 -lc -lm -lcrypt

bin/makefile-sunos5.i386-x

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ DFLAGS = $(XFLAGS) \
4646
-DBYTESWAP \
4747
-DOLD_CURSOR -DLOGINT \
4848
-DNOPIXRECT -DFORKCOMM -DLOCK_X_UPDATES \
49-
-I$(OPENWINHOME)/include -DSYSVSIGNALS -DSYSVONLY \
49+
-I$(OPENWINHOME)/include -DSYSVSIGNALS \
5050
-DRELEASE=210
5151

5252
LDFLAGS = -R$(OPENWINHOME)/lib -L$(OPENWINHOME)/lib -lX11 -lc -lm -lsocket -lnsl

inc/version.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ typedef unsigned short u_short;
296296
#undef HAS_GETHOSTID
297297
#undef REGISTER
298298
#define REGISTER
299-
#define SYSVONLY 1
300299
#define SYSVSIGNALS 1
301300
#define USHORT unsigned
302301
#else
@@ -313,7 +312,7 @@ typedef unsigned short u_short;
313312

314313
/****************************************************************/
315314
/* End of architecture-specific flag settings */
316-
/* --Start of system-specific flags (e.g. SYSVONLY)-- */
315+
/* --Start of system-specific flags */
317316
/* */
318317
/****************************************************************/
319318

0 commit comments

Comments
 (0)