diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-19 20:01:37 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-19 20:01:37 +0000 |
commit | 37e08c96503da49c70ddf79dffb559ba83689b4d (patch) | |
tree | e8fc1296a3c070c6fbe732f54c1a57b259ee479c /sys/arch | |
parent | 8853713555530cba7dd2789bef1bca59f0d7342c (diff) |
Move {recv,send}udp() out of net.c into their own file; to be used shortly.
Add the new files to the few md libsa builds which require it.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/aviion/stand/libsa/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/sparc/stand/libsa/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/stand/libsa/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/aviion/stand/libsa/Makefile b/sys/arch/aviion/stand/libsa/Makefile index 3eb7d3d4758..eff44aa59e6 100644 --- a/sys/arch/aviion/stand/libsa/Makefile +++ b/sys/arch/aviion/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2014/07/13 21:18:44 jasper Exp $ +# $OpenBSD: Makefile,v 1.6 2014/11/19 20:01:35 miod Exp $ LIB=sa @@ -18,7 +18,7 @@ SRCS+= alloc.c memcpy.c exit.c getfile.c gets.c globals.c loadfile.c \ close.c closeall.c dev.c dkcksum.c \ lseek.c open.c nullfs.c read.c fstat.c disklabel.c \ ufs.c cread.c -SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c nfs.c \ +SRCS+= arp.c ether.c in_cksum.c net.c netif.c netudp.c rpc.c nfs.c \ rarp.c bootparam.c .PATH: ${S}/lib/libkern/arch/m88k ${S}/lib/libkern diff --git a/sys/arch/sparc/stand/libsa/Makefile b/sys/arch/sparc/stand/libsa/Makefile index c7ada7f4c68..b2c0b01f3a0 100644 --- a/sys/arch/sparc/stand/libsa/Makefile +++ b/sys/arch/sparc/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2013/01/01 18:49:33 miod Exp $ +# $OpenBSD: Makefile,v 1.9 2014/11/19 20:01:36 miod Exp $ LIB= sa @@ -18,7 +18,7 @@ SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ open.c read.c stat.c write.c cread.c # network routines -SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c +SRCS+= arp.c ether.c in_cksum.c net.c netif.c netudp.c rpc.c # network info services SRCS+= bootp.c bootparam.c rarp.c diff --git a/sys/arch/sparc64/stand/libsa/Makefile b/sys/arch/sparc64/stand/libsa/Makefile index 89e5a594ad6..08a8735610b 100644 --- a/sys/arch/sparc64/stand/libsa/Makefile +++ b/sys/arch/sparc64/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2013/01/01 18:49:33 miod Exp $ +# $OpenBSD: Makefile,v 1.10 2014/11/19 20:01:36 miod Exp $ LIB= sa @@ -24,7 +24,7 @@ SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c fstat.c ioctl.c lseek.c \ open.c read.c stat.c write.c cread.c # network routines -SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c +SRCS+= arp.c ether.c in_cksum.c net.c netif.c netudp.c rpc.c # network info services SRCS+= bootp.c bootparam.c rarp.c |