From owner-cvs-src@FreeBSD.ORG Wed Nov 21 01:31:49 2007 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 7E35D16A41B; Wed, 21 Nov 2007 01:31:49 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C89A13C520; Wed, 21 Nov 2007 01:31:49 +0000 (UTC) (envelope-from rafan@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 lAL1VnM2070483; Wed, 21 Nov 2007 01:31:49 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lAL1Vn7L070482; Wed, 21 Nov 2007 01:31:49 GMT (envelope-from rafan) Message-Id: <200711210131.lAL1Vn7L070482@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 21 Nov 2007 01:31:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/include _ctype.h ctype.h src/lib/libc/locale big5.c euc.c gb18030.c gb2312.c gbk.c isctype.c mskanji.c none.c setrunelocale.c utf8.c src/sys/sys param.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: Wed, 21 Nov 2007 01:31:49 -0000 rafan 2007-11-21 01:31:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) include _ctype.h ctype.h lib/libc/locale big5.c euc.c gb18030.c gb2312.c gbk.c isctype.c mskanji.c none.c setrunelocale.c utf8.c sys/sys param.h Log: - Back out previous ctype(3) fix for UTF-8 locale due to forward ABI compatibility is still broken as we add new symbols to libc. Those symboles are __sbmaskrune, __sbistype, __sbtoupper and __sbtolower. The latter three are directly referred by binaries use ctype(3) family functions (see include/ctype.h for details). This means if a binary built on 6.3, it uses these symbols that are not available on older system. - As this has been in 6 for a month, I intentionally leave these symbols in libc but map them to original version. So binary built after 602113 will not be broken after this commit. - Bump __FreeBSD_version for this back-out PR: 116363 Discussed with: kris, kensmith Approved by: re (kensmith) Revision Changes Path 1.30.2.3 +5 -29 src/include/_ctype.h 1.28.8.2 +21 -21 src/include/ctype.h 1.17.2.2 +0 -3 src/lib/libc/locale/big5.c 1.21.2.2 +0 -3 src/lib/libc/locale/euc.c 1.7.2.2 +0 -3 src/lib/libc/locale/gb18030.c 1.9.2.2 +0 -3 src/lib/libc/locale/gb2312.c 1.12.2.2 +0 -3 src/lib/libc/locale/gbk.c 1.9.14.2 +19 -19 src/lib/libc/locale/isctype.c 1.17.2.2 +0 -3 src/lib/libc/locale/mskanji.c 1.13.2.2 +1 -6 src/lib/libc/locale/none.c 1.45.2.2 +0 -5 src/lib/libc/locale/setrunelocale.c 1.13.2.3 +0 -8 src/lib/libc/locale/utf8.c 1.244.2.32 +1 -1 src/sys/sys/param.h