[3/7] lib: Use NOT_HAVE_LIBINTL to guard if need #include <libintl.h>

Message ID 20220920084307.1696-4-luoyonggang@gmail.com
State Superseded
Headers
Series Enable building libelf of elfutils on win32 |

Commit Message

Yonggang Luo Sept. 20, 2022, 8:43 a.m. UTC
  Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
---
 lib/eu-config.h | 8 ++++++++
 1 file changed, 8 insertions(+)
  

Patch

diff --git a/lib/eu-config.h b/lib/eu-config.h
index c7d7cbb2..5e6c3c72 100644
--- a/lib/eu-config.h
+++ b/lib/eu-config.h
@@ -52,9 +52,17 @@ 
 # define rwlock_unlock(lock) ((void) (lock))
 #endif	/* USE_LOCKS */
 
+#if !defined(NOT_HAVE_LIBINTL)
+#include <libintl.h>
+#endif
+
 /* gettext helper macros.  */
 #define N_(Str) Str
+#if !defined(NOT_HAVE_LIBINTL)
 #define _(Str) dgettext ("elfutils", Str)
+#else
+#define _(Str) N_(Str)
+#endif
 
 /* Compiler-specific definitions.  */
 #define strong_alias(name, aliasname) \