From owner-cvs-src@FreeBSD.ORG Mon Sep 15 15:11:15 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70C0A106566C; Mon, 15 Sep 2008 15:11:15 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5FD9A8FC08; Mon, 15 Sep 2008 15:11:15 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m8FFBFQf043652; Mon, 15 Sep 2008 15:11:15 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m8FFBFJD043651; Mon, 15 Sep 2008 15:11:15 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200809151511.m8FFBFJD043651@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Mon, 15 Sep 2008 15:09:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/svr4 svr4_stream.c svr4_sysvec.c src/sys/modules/svr4 Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Sep 2008 15:11:15 -0000 ed 2008-09-15 15:09:35 UTC FreeBSD src repository Modified files: sys/compat/svr4 svr4_stream.c svr4_sysvec.c sys/modules/svr4 Makefile Log: SVN rev 183040 on 2008-09-15 15:09:35Z by ed Allow COMPAT_SVR4 to be built without COMPAT_43. It seems we only depend on COMPAT_43 to implement the send() and recv() routines. We can easily implement them using sendto() and recvfrom(), just like we do inside our very own C library. I wasn't able to really test it, apart from simple compilation testing. I've heard rumours that COMPAT_SVR4 is broken inside execve() anyway. It's still worth to fix this, because I suspect we'll get rid of COMPAT_43 somewhere in the future... Reviewed by: rdivacky Discussed with: jhb Revision Changes Path 1.64 +20 -12 src/sys/compat/svr4/svr4_stream.c 1.46 +0 -4 src/sys/compat/svr4/svr4_sysvec.c 1.32 +1 -6 src/sys/modules/svr4/Makefile