From owner-cvs-all@FreeBSD.ORG Thu Oct 23 19:50:40 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA73816A4B3; Thu, 23 Oct 2003 19:50:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29E1743FDF; Thu, 23 Oct 2003 19:50:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id h9O2odXJ012898; Thu, 23 Oct 2003 19:50:39 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9O2odJr012897; Thu, 23 Oct 2003 19:50:39 -0700 (PDT) (envelope-from peter) Message-Id: <200310240250.h9O2odJr012897@repoman.freebsd.org> From: Peter Wemm Date: Thu, 23 Oct 2003 19:50:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include stdarg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Oct 2003 02:50:40 -0000 peter 2003/10/23 19:50:39 PDT FreeBSD src repository Modified files: sys/amd64/include stdarg.h Log: Add __va_copy and make it always visible, in spite of the __ISO_C_VISIBLE setting. Make va_copy be an alias if __ISO_C_VISIBLE >= 1999. Why? more than a few ports have an autoconf that looks for __va_copy because it is available on glibc. It is critical that we use it if at all possible on amd64. It generally isn't a problem for i386 and its ilk because autoconf driven code tends to fall back to an assignment. Revision Changes Path 1.6 +4 -1 src/sys/amd64/include/stdarg.h