-
psmisc 22.10 has this fixed. You must have one of the systems where NLS is not enabled, which is why the header file was not included. Normally locale.h is included by i18n.h.
2010-01-04 10:58:54 UTC by csmall
-
psmisc 22.10 has a fix for this. The signal selection problem as well as the kill problem.
$ sleep 100 &
[1] 27407
$ fuser -k -HUP /bin/sleep
/bin/sleep: 27407e
$ fg
bash: fg: job has terminated
[1]+ Hangup sleep 100.
2010-01-04 10:56:48 UTC by csmall
-
csmall made 1 file-release changes.
2010-01-04 10:53:02 UTC by csmall
-
csmall made 3 file-release changes.
2010-01-04 10:52:01 UTC by csmall
-
csmall made 2 file-release changes.
2010-01-04 10:51:02 UTC by csmall
-
csmall committed patchset 239 of module psmisc to the psmisc CVS repository, changing 3 files.
2010-01-04 10:39:42 UTC by csmall
-
This bug has now been fixed in the CVS version of this package. The fix will be propagated to the tar source files in
the near future.
2010-01-04 10:20:54 UTC by csmall
-
csmall committed patchset 238 of module psmisc to the psmisc CVS repository, changing 1 files.
2010-01-04 10:11:38 UTC by csmall
-
Fix building with -O0 where glibc doesn't include locale.h by itself
http://bugs.gentoo.org/show_bug.cgi?id=299316
http://sourceforge.net/tracker/?func=detail&aid=2922163&group_id=15273&atid=115273
--- psmisc-22.9/src/killall.c
+++ psmisc-22.9/src/killall.c
@@ -44,6 +44,10 @@
#include
#include
+#ifdef HAVE_LOCALE_H
+#include
+#endif
+
#ifdef WITH_SELINUX...
2010-01-02 14:27:39 UTC by ssuominen
-
Hi,
Gentoo bug #297423 still isn't fixed with fuser from psmisc-22.9:
# fuser -TERM -k -m /home
ERM: unknown signal; fuser -l lists signals.
# fuser -KILL -k -m /home
LL: unknown signal; fuser -l lists signals.
I guess other signals would fail as well but I only tested these two which are needed for Gentoo during shutdown/reboot.
2010-01-01 22:25:07 UTC by polynomial-c