1
0
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:
Tamas TEVESZ
2010-03-23 20:27:53 +01:00
committed by Carlos R. Mafra
parent 67a8a82670
commit 55959b4f7e
8 changed files with 61 additions and 63 deletions

19
src/osdep_stub.c Normal file
View 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;
}