This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
nls.h
49 lines (39 loc) · 1.56 KB
/
nls.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
nls.h - NLS system interface
Copyright (c) 2000-2005 Frodo Looijaard <frodo@frodo.looijaard.name>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* This file is a small hack to keep both the stand-alone package and
* the util-linux versions happy.
* In the stand-alone version, we define NOT_UTIL_LINUX and use our own
* nls.h definitions; in the util-linux version, we use the global
* util-linux nls definitions
*/
#ifdef NOT_UTIL_LINUX
#ifndef GETOPT_NLS
#define GETOPT_NLS
#define PACKAGE "getopt"
#ifndef WITHOUT_GETTEXT
#include <libintl.h>
#define _(Text) gettext (Text)
#else /* def WITHOUT_GETTEXT */
#define _(Text) (Text)
#undef bindtextdomain
#define bindtextdomain(Domain,Directory) /* empty */
#undef textdomain
#define textdomain(Domain) /* empty */
#endif /* ndef WITHOUT_GETTEXT */
#endif /* def GETOPT_NLS */
#else /* not NOT_UTIL_LINUX */
#include "../lib/nls.h"
#endif /* NOT_UTIL_LINUX */