1170754Sdelphij/* Convenience header for conditional use of GNU <libintl.h>.
2170754Sdelphij   Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
3170754Sdelphij
4170754Sdelphij   This program is free software; you can redistribute it and/or modify
5170754Sdelphij   it under the terms of the GNU General Public License as published by
6170754Sdelphij   the Free Software Foundation; either version 2, or (at your option)
7170754Sdelphij   any later version.
8170754Sdelphij
9170754Sdelphij   This program is distributed in the hope that it will be useful,
10170754Sdelphij   but WITHOUT ANY WARRANTY; without even the implied warranty of
11170754Sdelphij   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12170754Sdelphij   GNU General Public License for more details.
13170754Sdelphij
14170754Sdelphij   You should have received a copy of the GNU General Public License along
15170754Sdelphij   with this program; if not, write to the Free Software Foundation,
16170754Sdelphij   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17170754Sdelphij
18170754Sdelphij#ifndef _LIBGETTEXT_H
19170754Sdelphij#define _LIBGETTEXT_H 1
20170754Sdelphij
21170754Sdelphij/* NLS can be disabled through the configure --disable-nls option.  */
22170754Sdelphij#if ENABLE_NLS
23170754Sdelphij
24170754Sdelphij/* Get declarations of GNU message catalog functions.  */
25170754Sdelphij# include <libintl.h>
26170754Sdelphij
27170754Sdelphij#else
28170754Sdelphij
29170754Sdelphij/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
30170754Sdelphij   chokes if dcgettext is defined as a macro.  So include it now, to make
31170754Sdelphij   later inclusions of <locale.h> a NOP.  We don't include <libintl.h>
32170754Sdelphij   as well because people using "gettext.h" will not include <libintl.h>,
33170754Sdelphij   and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
34170754Sdelphij   is OK.  */
35170754Sdelphij#if defined(__sun)
36170754Sdelphij# include <locale.h>
37170754Sdelphij#endif
38170754Sdelphij
39170754Sdelphij/* Disabled NLS.
40170754Sdelphij   The casts to 'const char *' serve the purpose of producing warnings
41170754Sdelphij   for invalid uses of the value returned from these functions.
42170754Sdelphij   On pre-ANSI systems without 'const', the config.h file is supposed to
43170754Sdelphij   contain "#define const".  */
44170754Sdelphij# define gettext(Msgid) ((const char *) (Msgid))
45170754Sdelphij# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
46170754Sdelphij# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
47170754Sdelphij# define ngettext(Msgid1, Msgid2, N) \
48170754Sdelphij    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
49170754Sdelphij# define dngettext(Domainname, Msgid1, Msgid2, N) \
50170754Sdelphij    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
51170754Sdelphij# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
52170754Sdelphij    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
53170754Sdelphij# define textdomain(Domainname) ((const char *) (Domainname))
54170754Sdelphij# define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
55170754Sdelphij# define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
56170754Sdelphij
57170754Sdelphij#endif
58170754Sdelphij
59170754Sdelphij/* A pseudo function call that serves as a marker for the automated
60170754Sdelphij   extraction of messages, but does not call gettext().  The run-time
61170754Sdelphij   translation is done at a different place in the code.
62170754Sdelphij   The argument, String, should be a literal string.  Concatenated strings
63170754Sdelphij   and other string expressions won't work.
64170754Sdelphij   The macro's expansion is not parenthesized, so that it is suitable as
65170754Sdelphij   initializer for static 'char[]' or 'const char[]' variables.  */
66170754Sdelphij#define gettext_noop(String) String
67170754Sdelphij
68170754Sdelphij#endif /* _LIBGETTEXT_H */
69