xref: /dflybsd-src/contrib/cvs-1.12/lib/gettext.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino /* Convenience header for conditional use of GNU <libintl.h>.
286d7f5d3SJohn Marino    Copyright (C) 1995-1998, 2000-2002, 2004 Free Software Foundation, Inc.
386d7f5d3SJohn Marino 
486d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
586d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
686d7f5d3SJohn Marino    the Free Software Foundation; either version 2, or (at your option)
786d7f5d3SJohn Marino    any later version.
886d7f5d3SJohn Marino 
986d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
1086d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
1186d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1286d7f5d3SJohn Marino    GNU General Public License for more details.
1386d7f5d3SJohn Marino 
1486d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License along
1586d7f5d3SJohn Marino    with this program; if not, write to the Free Software Foundation,
1686d7f5d3SJohn Marino    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
1786d7f5d3SJohn Marino 
1886d7f5d3SJohn Marino #ifndef _LIBGETTEXT_H
1986d7f5d3SJohn Marino #define _LIBGETTEXT_H 1
2086d7f5d3SJohn Marino 
2186d7f5d3SJohn Marino /* NLS can be disabled through the configure --disable-nls option.  */
2286d7f5d3SJohn Marino #if ENABLE_NLS
2386d7f5d3SJohn Marino 
2486d7f5d3SJohn Marino /* Get declarations of GNU message catalog functions.  */
2586d7f5d3SJohn Marino # include <libintl.h>
2686d7f5d3SJohn Marino 
2786d7f5d3SJohn Marino #else
2886d7f5d3SJohn Marino 
2986d7f5d3SJohn Marino /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
3086d7f5d3SJohn Marino    chokes if dcgettext is defined as a macro.  So include it now, to make
3186d7f5d3SJohn Marino    later inclusions of <locale.h> a NOP.  We don't include <libintl.h>
3286d7f5d3SJohn Marino    as well because people using "gettext.h" will not include <libintl.h>,
3386d7f5d3SJohn Marino    and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
3486d7f5d3SJohn Marino    is OK.  */
3586d7f5d3SJohn Marino #if defined(__sun)
3686d7f5d3SJohn Marino # include <locale.h>
3786d7f5d3SJohn Marino #endif
3886d7f5d3SJohn Marino 
3986d7f5d3SJohn Marino /* Many header files from the libstdc++ coming with g++ 3.3 or newer include
4086d7f5d3SJohn Marino    <libintl.h>, which chokes if dcgettext is defined as a macro.  So include
4186d7f5d3SJohn Marino    it now, to make later inclusions of <libintl.h> a NOP.  */
4286d7f5d3SJohn Marino #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)
4386d7f5d3SJohn Marino # include <cstdlib>
4486d7f5d3SJohn Marino # if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H
4586d7f5d3SJohn Marino #  include <libintl.h>
4686d7f5d3SJohn Marino # endif
4786d7f5d3SJohn Marino #endif
4886d7f5d3SJohn Marino 
4986d7f5d3SJohn Marino /* Disabled NLS.
5086d7f5d3SJohn Marino    The casts to 'const char *' serve the purpose of producing warnings
5186d7f5d3SJohn Marino    for invalid uses of the value returned from these functions.
5286d7f5d3SJohn Marino    On pre-ANSI systems without 'const', the config.h file is supposed to
5386d7f5d3SJohn Marino    contain "#define const".  */
5486d7f5d3SJohn Marino # define gettext(Msgid) ((const char *) (Msgid))
5586d7f5d3SJohn Marino # define dgettext(Domainname, Msgid) ((const char *) (Msgid))
5686d7f5d3SJohn Marino # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
5786d7f5d3SJohn Marino # define ngettext(Msgid1, Msgid2, N) \
5886d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
5986d7f5d3SJohn Marino # define dngettext(Domainname, Msgid1, Msgid2, N) \
6086d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
6186d7f5d3SJohn Marino # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
6286d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
6386d7f5d3SJohn Marino # define textdomain(Domainname) ((const char *) (Domainname))
6486d7f5d3SJohn Marino # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
6586d7f5d3SJohn Marino # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
6686d7f5d3SJohn Marino 
6786d7f5d3SJohn Marino #endif
6886d7f5d3SJohn Marino 
6986d7f5d3SJohn Marino /* A pseudo function call that serves as a marker for the automated
7086d7f5d3SJohn Marino    extraction of messages, but does not call gettext().  The run-time
7186d7f5d3SJohn Marino    translation is done at a different place in the code.
7286d7f5d3SJohn Marino    The argument, String, should be a literal string.  Concatenated strings
7386d7f5d3SJohn Marino    and other string expressions won't work.
7486d7f5d3SJohn Marino    The macro's expansion is not parenthesized, so that it is suitable as
7586d7f5d3SJohn Marino    initializer for static 'char[]' or 'const char[]' variables.  */
7686d7f5d3SJohn Marino #define gettext_noop(String) String
7786d7f5d3SJohn Marino 
7886d7f5d3SJohn Marino #endif /* _LIBGETTEXT_H */
79