aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-04-13 14:09:43 -0400
committerSteve Dickson <steved@redhat.com>2020-04-13 14:47:24 -0400
commitf0d7bebaa75e132c4c984013eef474498ea7b665 (patch)
treef46cb4f89761434dc46a86d15b0bf75f9ba91b6f
parent940caffdfb9953a2ccfecec81664e4a179753461 (diff)
downloadnfs-utils-f0d7bebaa75e132c4c984013eef474498ea7b665.tar.gz
nfs-utils: tools: use nls.h
libintl.h is not available everywhere. This fixes compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--tools/rpcgen/rpc_main.c2
-rw-r--r--tools/rpcgen/rpc_scan.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/rpcgen/rpc_main.c b/tools/rpcgen/rpc_main.c
index 1b26e522..e97940b9 100644
--- a/tools/rpcgen/rpc_main.c
+++ b/tools/rpcgen/rpc_main.c
@@ -42,7 +42,6 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
-#include <libintl.h>
#include <locale.h>
#include <ctype.h>
#include <sys/types.h>
@@ -54,6 +53,7 @@
#include "rpc_util.h"
#include "rpc_scan.h"
#include "proto.h"
+#include "nls.h"
#ifndef _
#define _(String) gettext (String)
diff --git a/tools/rpcgen/rpc_scan.c b/tools/rpcgen/rpc_scan.c
index 79eba964..7de61120 100644
--- a/tools/rpcgen/rpc_scan.c
+++ b/tools/rpcgen/rpc_scan.c
@@ -37,11 +37,11 @@
#include <stdio.h>
#include <ctype.h>
#include <string.h>
-#include <libintl.h>
#include "rpc_scan.h"
#include "rpc_parse.h"
#include "rpc_util.h"
#include "proto.h"
+#include "nls.h"
#ifndef _
#define _(String) gettext (String)