xref: /dflybsd-src/contrib/cvs-1.12/lib/gettext.h (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino /* Convenience header for conditional use of GNU <libintl.h>.
2*86d7f5d3SJohn Marino    Copyright (C) 1995-1998, 2000-2002, 2004 Free Software Foundation, Inc.
3*86d7f5d3SJohn Marino 
4*86d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
5*86d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
6*86d7f5d3SJohn Marino    the Free Software Foundation; either version 2, or (at your option)
7*86d7f5d3SJohn Marino    any later version.
8*86d7f5d3SJohn Marino 
9*86d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
10*86d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
11*86d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12*86d7f5d3SJohn Marino    GNU General Public License for more details.
13*86d7f5d3SJohn Marino 
14*86d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License along
15*86d7f5d3SJohn Marino    with this program; if not, write to the Free Software Foundation,
16*86d7f5d3SJohn Marino    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17*86d7f5d3SJohn Marino 
18*86d7f5d3SJohn Marino #ifndef _LIBGETTEXT_H
19*86d7f5d3SJohn Marino #define _LIBGETTEXT_H 1
20*86d7f5d3SJohn Marino 
21*86d7f5d3SJohn Marino /* NLS can be disabled through the configure --disable-nls option.  */
22*86d7f5d3SJohn Marino #if ENABLE_NLS
23*86d7f5d3SJohn Marino 
24*86d7f5d3SJohn Marino /* Get declarations of GNU message catalog functions.  */
25*86d7f5d3SJohn Marino # include <libintl.h>
26*86d7f5d3SJohn Marino 
27*86d7f5d3SJohn Marino #else
28*86d7f5d3SJohn Marino 
29*86d7f5d3SJohn Marino /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
30*86d7f5d3SJohn Marino    chokes if dcgettext is defined as a macro.  So include it now, to make
31*86d7f5d3SJohn Marino    later inclusions of <locale.h> a NOP.  We don't include <libintl.h>
32*86d7f5d3SJohn Marino    as well because people using "gettext.h" will not include <libintl.h>,
33*86d7f5d3SJohn Marino    and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
34*86d7f5d3SJohn Marino    is OK.  */
35*86d7f5d3SJohn Marino #if defined(__sun)
36*86d7f5d3SJohn Marino # include <locale.h>
37*86d7f5d3SJohn Marino #endif
38*86d7f5d3SJohn Marino 
39*86d7f5d3SJohn Marino /* Many header files from the libstdc++ coming with g++ 3.3 or newer include
40*86d7f5d3SJohn Marino    <libintl.h>, which chokes if dcgettext is defined as a macro.  So include
41*86d7f5d3SJohn Marino    it now, to make later inclusions of <libintl.h> a NOP.  */
42*86d7f5d3SJohn Marino #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)
43*86d7f5d3SJohn Marino # include <cstdlib>
44*86d7f5d3SJohn Marino # if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H
45*86d7f5d3SJohn Marino #  include <libintl.h>
46*86d7f5d3SJohn Marino # endif
47*86d7f5d3SJohn Marino #endif
48*86d7f5d3SJohn Marino 
49*86d7f5d3SJohn Marino /* Disabled NLS.
50*86d7f5d3SJohn Marino    The casts to 'const char *' serve the purpose of producing warnings
51*86d7f5d3SJohn Marino    for invalid uses of the value returned from these functions.
52*86d7f5d3SJohn Marino    On pre-ANSI systems without 'const', the config.h file is supposed to
53*86d7f5d3SJohn Marino    contain "#define const".  */
54*86d7f5d3SJohn Marino # define gettext(Msgid) ((const char *) (Msgid))
55*86d7f5d3SJohn Marino # define dgettext(Domainname, Msgid) ((const char *) (Msgid))
56*86d7f5d3SJohn Marino # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
57*86d7f5d3SJohn Marino # define ngettext(Msgid1, Msgid2, N) \
58*86d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
59*86d7f5d3SJohn Marino # define dngettext(Domainname, Msgid1, Msgid2, N) \
60*86d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
61*86d7f5d3SJohn Marino # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
62*86d7f5d3SJohn Marino     ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
63*86d7f5d3SJohn Marino # define textdomain(Domainname) ((const char *) (Domainname))
64*86d7f5d3SJohn Marino # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
65*86d7f5d3SJohn Marino # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
66*86d7f5d3SJohn Marino 
67*86d7f5d3SJohn Marino #endif
68*86d7f5d3SJohn Marino 
69*86d7f5d3SJohn Marino /* A pseudo function call that serves as a marker for the automated
70*86d7f5d3SJohn Marino    extraction of messages, but does not call gettext().  The run-time
71*86d7f5d3SJohn Marino    translation is done at a different place in the code.
72*86d7f5d3SJohn Marino    The argument, String, should be a literal string.  Concatenated strings
73*86d7f5d3SJohn Marino    and other string expressions won't work.
74*86d7f5d3SJohn Marino    The macro's expansion is not parenthesized, so that it is suitable as
75*86d7f5d3SJohn Marino    initializer for static 'char[]' or 'const char[]' variables.  */
76*86d7f5d3SJohn Marino #define gettext_noop(String) String
77*86d7f5d3SJohn Marino 
78*86d7f5d3SJohn Marino #endif /* _LIBGETTEXT_H */
79