Use easy way to sense C and POSIX locales, like in GLIBC

This commit is contained in:
Andrey A. Chernov 2002-06-08 08:16:22 +00:00
parent e4d15ec387
commit 78fdefb2be
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98043

View File

@ -14,6 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/* $FreeBSD$ */
#if HAVE_CONFIG_H
# include <config.h>
@ -62,7 +63,7 @@ hard_locale (int category)
if (p)
{
# if defined __GLIBC__ && __GLIBC__ >= 2
# if defined(__FreeBSD__) || (defined __GLIBC__ && __GLIBC__ >= 2)
if (strcmp (p, "C") == 0 || strcmp (p, "POSIX") == 0)
hard = 0;
# else