mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-29 01:42:32 +01:00
Half-assed fix to make autoconf bend
- this should make platform detection automagic - also fixes debian builds that broke in the meantime - fix osdep_darwin.c
This commit is contained in:
committed by
Carlos R. Mafra
parent
67a8a82670
commit
55959b4f7e
19
src/osdep_stub.c
Normal file
19
src/osdep_stub.c
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
#include <WINGs/WUtil.h>
|
||||
|
||||
#include "wconfig.h"
|
||||
|
||||
Bool GetCommandForPid(int pid, char ***argv, int *argc)
|
||||
{
|
||||
*argv = NULL;
|
||||
*argc = 0;
|
||||
static int notified = 0;
|
||||
|
||||
if (!notified) {
|
||||
wwarning(_("%s is not implemented on this platform; "
|
||||
"notify wmaker-dev@lists.windowmaker.info"), __FUNCTION__);
|
||||
notified = 1;
|
||||
}
|
||||
|
||||
return False;
|
||||
}
|
||||
Reference in New Issue
Block a user