7ba54a07d4
./configure in psmisc 22.6 tested for a working C++ compiler and errored out if not found, even though psmisc doesn't need it - Fixed in 22.8. pstree.c uses __progname for pstree.x11 support, which isn't (per default) available in uclibc. This stuff isn't really critical, so just disable it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
716 B
Diff
25 lines
716 B
Diff
[PATCH]: pstree: don't use glibc-specific __progname
|
|
|
|
uclibc (per default) doesn't implement __progname, and the pstree.x11
|
|
stuff isn't that critical, so just disable it.
|
|
|
|
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
|
|
---
|
|
src/pstree.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
Index: psmisc-22.8/src/pstree.c
|
|
===================================================================
|
|
--- psmisc-22.8.orig/src/pstree.c
|
|
+++ psmisc-22.8/src/pstree.c
|
|
@@ -893,9 +893,6 @@ main (int argc, char **argv)
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
textdomain(PACKAGE);
|
|
#endif
|
|
-
|
|
- if (!strcmp(__progname, "pstree.x11"))
|
|
- wait_end=1;
|
|
|
|
/*
|
|
* Attempt to figure out a good default symbol set. Will be overriden by
|