f2c6e2c385
When building with full lagnuage support, libelf.so will depend on and link with libintl.so so we need to change the pkg-config template to reflect this library dependency. Also change the Makefile to only pass --disable-nls to configure when the full nls support is actually disabled in the buildroot config. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
73 lines
1.5 KiB
Diff
73 lines
1.5 KiB
Diff
--- a/libelf/libelfP.h
|
|
+++ b/libelf/libelfP.h
|
|
@@ -39,6 +39,9 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
+#ifdef _ /* fix libintl-stub */
|
|
+#undef _
|
|
+#endif
|
|
/* gettext helper macros. */
|
|
#define _(Str) dgettext ("elfutils", Str)
|
|
|
|
--- a/libdw/libdwP.h
|
|
+++ b/libdw/libdwP.h
|
|
@@ -35,7 +35,9 @@
|
|
#include <libdw.h>
|
|
#include <dwarf.h>
|
|
|
|
-
|
|
+#ifdef _ /* fix libintl-stub */
|
|
+#undef _
|
|
+#endif
|
|
/* gettext helper macros. */
|
|
#define _(Str) dgettext ("elfutils", Str)
|
|
|
|
--- a/libdwfl/libdwflP.h
|
|
+++ b/libdwfl/libdwflP.h
|
|
@@ -43,6 +43,9 @@
|
|
|
|
typedef struct Dwfl_Process Dwfl_Process;
|
|
|
|
+#ifdef _ /* fix libintl-stub */
|
|
+#undef _
|
|
+#endif
|
|
/* gettext helper macros. */
|
|
#define _(Str) dgettext ("elfutils", Str)
|
|
|
|
--- a/libasm/libasmP.h
|
|
+++ b/libasm/libasmP.h
|
|
@@ -35,6 +35,9 @@
|
|
|
|
#include "libdwelf.h"
|
|
|
|
+#ifdef _ /* fix libintl-stub */
|
|
+#undef _
|
|
+#endif
|
|
/* gettext helper macros. */
|
|
#define _(Str) dgettext ("elfutils", Str)
|
|
|
|
--- a/config/libelf.pc.in
|
|
+++ b/config/libelf.pc.in
|
|
@@ -8,7 +8,7 @@ Description: elfutils libelf library to
|
|
Version: @VERSION@
|
|
URL: http://elfutils.org/
|
|
|
|
-Libs: -L${libdir} -lelf
|
|
+Libs: -L${libdir} -lelf @intl_LDFLAGS@
|
|
Cflags: -I${includedir}
|
|
|
|
Requires.private: zlib
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -538,6 +538,9 @@ AC_CONFIG_FILES([config/libelf.pc config
|
|
AC_SUBST(USE_NLS, yes)
|
|
AM_PO_SUBDIRS
|
|
|
|
+case "$USE_NLS" in yes) intl_LDFLAGS="-lintl" ;; esac
|
|
+AC_SUBST([intl_LDFLAGS])
|
|
+
|
|
dnl Appended to the config.h file.
|
|
dnl We hide all kinds of configuration magic in lib/eu-config.h.
|
|
AH_BOTTOM([#include <eu-config.h>])
|