]> git.decadent.org.uk Git - nfs-utils.git/blob - support/include/nls.h
"rpc.nfsd XX" should not fail if ports are already open.
[nfs-utils.git] / support / include / nls.h
1 /* 
2  * 2006-06-08 Amit Gud <agud@redhat.com>
3  * - Copied to nfs-utils/support/include from util-linux/mount
4  */
5
6 #ifndef LOCALEDIR
7 #define LOCALEDIR "/usr/share/locale"
8 #endif
9
10 #ifdef ENABLE_NLS
11 # include <libintl.h>
12 # define _(Text) gettext (Text)
13 # ifdef gettext_noop
14 #  define N_(String) gettext_noop (String)
15 # else
16 #  define N_(String) (String)
17 # endif
18 #else
19 # undef bindtextdomain
20 # define bindtextdomain(Domain, Directory) /* empty */
21 # undef textdomain
22 # define textdomain(Domain) /* empty */
23 # define _(Text) (Text)
24 # define N_(Text) (Text)
25 #endif
26
27