libintl.h is not available everywhere. This fixes compilation. Signed-off-by: Rosen Penev <rosenp@xxxxxxxxx> --- tools/rpcgen/rpc_main.c | 2 +- tools/rpcgen/rpc_scan.c | 2 +- 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) -- 2.25.1