X-Git-Url: https://git.hcoop.net/bpt/guile.git/blobdiff_plain/5b3a39c7ff472eee3978784549a6902c09600810..e46f69e25ca15f299f11be14b28f82c881074dfc:/libguile/locale-categories.h diff --git a/libguile/locale-categories.h b/libguile/locale-categories.h index cec91fb91..26b030dc5 100644 --- a/libguile/locale-categories.h +++ b/libguile/locale-categories.h @@ -1,18 +1,19 @@ -/* Copyright (C) 2006 Free Software Foundation, Inc. +/* Copyright (C) 2006, 2008 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 3 of + * the License, or (at your option) any later version. * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA */ /* A list of all available locale categories, not including `ALL'. */ @@ -21,7 +22,12 @@ /* The six standard categories, as defined in IEEE Std 1003.1-2001. */ SCM_DEFINE_LOCALE_CATEGORY (COLLATE) SCM_DEFINE_LOCALE_CATEGORY (CTYPE) + +#ifdef LC_MESSAGES +/* MinGW doesn't have `LC_MESSAGES'. */ SCM_DEFINE_LOCALE_CATEGORY (MESSAGES) +#endif + SCM_DEFINE_LOCALE_CATEGORY (MONETARY) SCM_DEFINE_LOCALE_CATEGORY (NUMERIC) SCM_DEFINE_LOCALE_CATEGORY (TIME)