]> git.ipfire.org Git - thirdparty/bash.git/blame - bashintl.h
Imported from ../bash-2.0.tar.gz.
[thirdparty/bash.git] / bashintl.h
CommitLineData
ccc6cda3
JA
1/* bashintl.h -- Internationalization stuff
2
3 Copyright (C) 1996 Free Software Foundation, Inc.
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
19 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#if !defined (_BASHINTL_H_)
22#define _BASHINTL_H_
23
24/* Include this *after* config.h */
25#if defined (HAVE_LIBINTL_H)
26# include <libintl.h>
27#endif
28
29#if defined (HAVE_LOCALE_H)
30# include <locale.h>
31#endif
32
33#if defined (HAVE_SETLOCALE) && !defined (LC_ALL)
34# undef HAVE_SETLOCALE
35#endif
36
37#if !defined (HAVE_SETLOCALE)
38# define setlocale(cat, loc)
39#endif
40
41#if !defined (HAVE_TEXTDOMAIN)
42# define textdomain(dom)
43#endif
44
45#if !defined (HAVE_BINDTEXTDOMAIN)
46# define bindtextdomain(dom, dir)
47#endif
48
49#endif /* !_BASHINTL_H_ */