Added option to 'configure' to control debug information for compilation
[wmaker-crm.git] / src / osdep_stub.c
blob79fe9c16f13728e648d094b62ffc070f996bbc40
2 #include <sys/utsname.h>
4 #include <WINGs/WUtil.h>
6 #include "wconfig.h"
8 Bool GetCommandForPid(int pid, char ***argv, int *argc)
10 static int notified = 0;
12 if (!notified) {
13 struct utsname un;
15 if (uname(&un) != -1) {
16 wwarning(_("%s is not implemented on this platform; "
17 "tell wmaker-dev@windowmaker.org you are running "
18 "%s release %s version %s"), __FUNCTION__,
19 un.sysname, un.release, un.version);
20 notified = 1;
25 *argv = NULL;
26 *argc = 0;
28 return False;