From 3c80ffcde355ba9c2b4629b4bdf3efef1278811a Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Fri, 7 Apr 2017 15:02:16 +0000 Subject: community/psmisc: fix build for ppc64le https://github.com/leitao/aports/commit/9f4395581c9d594d2ffed51f2354c991e2c88c1a --- community/psmisc/peekfd_lintl.patch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 community/psmisc/peekfd_lintl.patch (limited to 'community/psmisc/peekfd_lintl.patch') diff --git a/community/psmisc/peekfd_lintl.patch b/community/psmisc/peekfd_lintl.patch new file mode 100644 index 0000000000..6d7ba1c227 --- /dev/null +++ b/community/psmisc/peekfd_lintl.patch @@ -0,0 +1,30 @@ +Author: Breno Leitao +Date: Thu Apr 6 14:03:00 2017 -0300 + + pstree: Linking with libintl. + + Curently pstree does built, at least on ppc64le, because it does + not have a explicit link against gettext, causing the following error: + + peekfd.o: In function `print_version': + peekfd.c:(.text+0x160): undefined reference to `libintl_gettext' + peekfd.c:(.text+0x18c): undefined reference to `libintl_gettext' + peekfd.c:(.text+0x1ac): undefined reference to `libintl_gettext' + + peekfd depends on libint because of the following macro: + + #define _(String) gettext (String) + +Index: psmisc-22.21/src/Makefile.in +=================================================================== +--- psmisc-22.21.orig/src/Makefile.in ++++ psmisc-22.21/src/Makefile.in +@@ -131,7 +131,7 @@ killall_OBJECTS = $(am_killall_OBJECTS) + killall_DEPENDENCIES = + am_peekfd_OBJECTS = peekfd.$(OBJEXT) + peekfd_OBJECTS = $(am_peekfd_OBJECTS) +-peekfd_LDADD = $(LDADD) ++peekfd_LDADD = $(LDADD) -lintl + am_prtstat_OBJECTS = prtstat.$(OBJEXT) + prtstat_OBJECTS = $(am_prtstat_OBJECTS) + prtstat_DEPENDENCIES = -- cgit v1.2.3