CVS commit: [pgoyette-compat] src/sys/modules/compat_50

2019-01-14 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Jan 15 01:12:30 UTC 2019

Modified Files:
src/sys/modules/compat_50 [pgoyette-compat]: Makefile

Log Message:
As far as I can tell, neither SCTP not NET_MPSAFE are enabled by default
on any architecture, so they should not be enabled by default in any of
the modules.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.12 -r1.1.2.13 src/sys/modules/compat_50/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_50/Makefile
diff -u src/sys/modules/compat_50/Makefile:1.1.2.12 src/sys/modules/compat_50/Makefile:1.1.2.13
--- src/sys/modules/compat_50/Makefile:1.1.2.12	Tue Jan 15 01:07:40 2019
+++ src/sys/modules/compat_50/Makefile	Tue Jan 15 01:12:30 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.12 2019/01/15 01:07:40 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.13 2019/01/15 01:12:30 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -13,7 +13,9 @@ SRCS+=	kern_50.c kern_time_50.c kern_sel
 SRCS+=	vfs_syscalls_50.c uipc_syscalls_50.c uvm_50.c
 SRCS+=	rndpseudo_50.c clockctl_50.c if_spppsubr50.c
 
-CPPFLAGS+=	-DINET -DINET6 -DSCTP -DNET_MPSAFE
+CPPFLAGS+=	-DINET -DINET6
+# XXX someday we'll need to add
+#CPPFLAGS+=	-DSCTP -DNET_MPSAFE
 
 SRCS+=	rtsock_50.c
 



CVS commit: [pgoyette-compat] src/sys/modules/compat_50

2019-01-14 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue Jan 15 01:07:40 UTC 2019

Modified Files:
src/sys/modules/compat_50 [pgoyette-compat]: Makefile

Log Message:
Add some #defines for rtsock_50


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.11 -r1.1.2.12 src/sys/modules/compat_50/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_50/Makefile
diff -u src/sys/modules/compat_50/Makefile:1.1.2.11 src/sys/modules/compat_50/Makefile:1.1.2.12
--- src/sys/modules/compat_50/Makefile:1.1.2.11	Wed Oct  3 22:50:50 2018
+++ src/sys/modules/compat_50/Makefile	Tue Jan 15 01:07:40 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.11 2018/10/03 22:50:50 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.12 2019/01/15 01:07:40 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -12,6 +12,9 @@ SRCS+=	compat_50_mod.c
 SRCS+=	kern_50.c kern_time_50.c kern_select_50.c
 SRCS+=	vfs_syscalls_50.c uipc_syscalls_50.c uvm_50.c
 SRCS+=	rndpseudo_50.c clockctl_50.c if_spppsubr50.c
+
+CPPFLAGS+=	-DINET -DINET6 -DSCTP -DNET_MPSAFE
+
 SRCS+=	rtsock_50.c
 
 .PATH:	${S}/fs/puffs



CVS commit: [pgoyette-compat] src/sys/modules/compat_50

2018-09-13 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep 13 10:16:51 UTC 2018

Modified Files:
src/sys/modules/compat_50 [pgoyette-compat]: Makefile

Log Message:
Include rtsock_50.c in the build for compat_50 module.  It might be
reachable via the rtsock code, but there's stuff in the compat_09
module that refers to the _50 stuff.  Including this allows us to
modload the compat_09 module.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/sys/modules/compat_50/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_50/Makefile
diff -u src/sys/modules/compat_50/Makefile:1.1.2.7 src/sys/modules/compat_50/Makefile:1.1.2.8
--- src/sys/modules/compat_50/Makefile:1.1.2.7	Sat Mar 24 23:52:19 2018
+++ src/sys/modules/compat_50/Makefile	Thu Sep 13 10:16:51 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.7 2018/03/24 23:52:19 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.8 2018/09/13 10:16:51 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -12,7 +12,7 @@ SRCS+=	compat_50_mod.c
 SRCS+=	kern_50.c kern_time_50.c kern_select_50.c
 SRCS+=	vfs_syscalls_50.c uipc_syscalls_50.c uvm_50.c
 SRCS+=	rndpseudo_50.c clockctl_50.c if_spppsubr50.c
-#SRCS+=	rtsock_50.c
+SRCS+=	rtsock_50.c
 
 .PATH:	${S}/opencrypto