~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to lib/gettext.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Convenience header for conditional use of GNU <libintl.h>.
2
2
   Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
3
3
 
4
 
   This program is free software; you can redistribute it and/or modify it
5
 
   under the terms of the GNU Library General Public License as published
6
 
   by the Free Software Foundation; either version 2, or (at your option)
 
4
   This program is free software; you can redistribute it and/or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 2, or (at your option)
7
7
   any later version.
8
8
 
9
9
   This program is distributed in the hope that it will be useful,
10
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
   Library General Public License for more details.
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
13
13
 
14
 
   You should have received a copy of the GNU Library General Public
15
 
   License along with this program; if not, write to the Free Software
16
 
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17
 
   USA.  */
 
14
   You should have received a copy of the GNU General Public License along
 
15
   with this program; if not, write to the Free Software Foundation,
 
16
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18
17
 
19
18
#ifndef _LIBGETTEXT_H
20
19
#define _LIBGETTEXT_H 1
27
26
 
28
27
#else
29
28
 
 
29
/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
 
30
   chokes if dcgettext is defined as a macro.  So include it now, to make
 
31
   later inclusions of <locale.h> a NOP.  We don't include <libintl.h>
 
32
   as well because people using "gettext.h" will not include <libintl.h>,
 
33
   and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
 
34
   is OK.  */
 
35
#if defined(__sun)
 
36
# include <locale.h>
 
37
#endif
 
38
 
30
39
/* Disabled NLS.
31
40
   The casts to 'const char *' serve the purpose of producing warnings
32
41
   for invalid uses of the value returned from these functions.
33
42
   On pre-ANSI systems without 'const', the config.h file is supposed to
34
43
   contain "#define const".  */
35
 
#if 0
36
 
/* no thanks, not ready to go const --karl, 26feb02 */
37
44
# define gettext(Msgid) ((const char *) (Msgid))
38
45
# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
39
46
# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
46
53
# define textdomain(Domainname) ((const char *) (Domainname))
47
54
# define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
48
55
# define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
49
 
#else /* not 0 */
50
 
# define gettext(Msgid) ((Msgid))
51
 
# define dgettext(Domainname, Msgid) (Msgid)
52
 
# define dcgettext(Domainname, Msgid, Category) (Msgid)
53
 
# define ngettext(Msgid1, Msgid2, N) \
54
 
    ((N) == 1 ? (Msgid1) : (Msgid2))
55
 
# define dngettext(Domainname, Msgid1, Msgid2, N) \
56
 
    ((N) == 1 ? (Msgid1) : (Msgid2))
57
 
# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
58
 
    ((N) == 1 ? (Msgid1) : (Msgid2))
59
 
# define textdomain(Domainname) (Domainname)
60
 
# define bindtextdomain(Domainname, Dirname) (Dirname)
61
 
# define bind_textdomain_codeset(Domainname, Codeset) (Codeset)
62
 
#endif /* 0 */
 
56
 
63
57
#endif
64
58
 
65
59
/* A pseudo function call that serves as a marker for the automated