summaryrefslogtreecommitdiff
path: root/packages/psmisc/files
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2006-07-03 03:25:30 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-07-03 03:25:30 +0000
commit660a0feb66e64979ec74a6e58d0b8d190bd4e5eb (patch)
tree14ad2c568d7908a09992cab8a9e5d95d007c8337 /packages/psmisc/files
parent9b820e6f7a397dbf74f92b2596bd58fd2528283b (diff)
psmisc 22.2: Add 22.2 and use a common .inc file for 21.8 and 22.8.
Added to fix some IPv6 related bugs. See the changelog in 22.2 source for full list.
Diffstat (limited to 'packages/psmisc/files')
-rw-r--r--packages/psmisc/files/.mtn2git_empty0
-rw-r--r--packages/psmisc/files/libintl-link.patch29
2 files changed, 29 insertions, 0 deletions
diff --git a/packages/psmisc/files/.mtn2git_empty b/packages/psmisc/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/psmisc/files/.mtn2git_empty
diff --git a/packages/psmisc/files/libintl-link.patch b/packages/psmisc/files/libintl-link.patch
new file mode 100644
index 0000000000..d9cdd90d71
--- /dev/null
+++ b/packages/psmisc/files/libintl-link.patch
@@ -0,0 +1,29 @@
+uClibc needs to link against an external libintl but it doesn't do this by
+default. The configure script correctly figures out if this is needed, but
+doesn't actually link to the libraries it decides on. This makes it link to
+them if they are needed:
+
+--- psmisc-22.2/src/Makefile.am 2006/06/28 00:14:07 1.1
++++ psmisc-22.2/src/Makefile.am 2006/06/28 00:14:24
+@@ -5,15 +5,19 @@
+
+ oldfuser_SOURCES = oldfuser.c comm.h signals.c signals.h loop.h i18n.h
+
++oldfuser_LDADD = @INTLLIBS@
++
+ fuser_SOURCES = fuser.c comm.h signals.c signals.h i18n.h fuser.h
+
++fuser_LDADD = @INTLLIBS@
++
+ killall_SOURCES = killall.c comm.h signals.c signals.h i18n.h
+
+-killall_LDADD = @SELINUX_LIB@
++killall_LDADD = @SELINUX_LIB@ @INTLLIBS@
+
+ pstree_SOURCES = pstree.c comm.h i18n.h
+
+-pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@
++pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@ @INTLLIBS@
+
+ BUILT_SOURCES = signames.h
+