From owner-cvs-src@FreeBSD.ORG Mon Jun 23 05:26:26 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 63D86106566B; Mon, 23 Jun 2008 05:26:26 +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 50C578FC17; Mon, 23 Jun 2008 05:26:26 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m5N5QQGd091439; Mon, 23 Jun 2008 05:26:26 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m5N5QQdS091438; Mon, 23 Jun 2008 05:26:26 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200806230526.m5N5QQdS091438@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Mon, 23 Jun 2008 05:22:06 +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/include unistd.h src/lib/libc/gen Makefile.inc Symbol.map exec.3 exec.c posix_spawn.c src/lib/libc/include libc_private.h 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, 23 Jun 2008 05:26:26 -0000 ed 2008-06-23 05:22:06 UTC FreeBSD src repository Modified files: include unistd.h lib/libc/gen Makefile.inc Symbol.map exec.3 exec.c posix_spawn.c lib/libc/include libc_private.h Log: SVN rev 179947 on 2008-06-23 05:22:06Z by ed Turn execvpe() into an internal libc routine. Adding exevpe() has caused some ports to break. Even though execvpe() is a useful routine, it does not conform to any standards. This patch is a little bit different from the patch sent to the mailing list. I forgot to remove execvpe from the Symbol.map (which does not seem to miscompile libc, though). Reviewed by: davidxu Approved by: philip Revision Changes Path 1.89 +0 -1 src/include/unistd.h 1.137 +1 -1 src/lib/libc/gen/Makefile.inc 1.12 +0 -1 src/lib/libc/gen/Symbol.map 1.28 +3 -14 src/lib/libc/gen/exec.3 1.25 +3 -2 src/lib/libc/gen/exec.c 1.5 +2 -1 src/lib/libc/gen/posix_spawn.c 1.19 +3 -0 src/lib/libc/include/libc_private.h