diff options
author | pancake <pancake@dazo> | 2008-03-05 18:38:42 +0100 |
---|---|---|
committer | pancake <pancake@dazo> | 2008-03-05 18:38:42 +0100 |
commit | 2ddb2923c68d023f9733fb82bb8d28140ea5b695 (patch) | |
tree | 706162ce4107ec1444870ad4945a9e6d5a0cde91 /src/os.h | |
parent | 32a59f4279e1d72abc2b60f08d6e32e2a0b32478 (diff) | |
download | 0xFFFF-2ddb2923c68d023f9733fb82bb8d28140ea5b695.tar.bz2 |
* Initial import of the GtkAML gui frontend - Mostly implemented in just one night :)
* Import the squeue c and vapi sources
* Make 0xFFFF run as squeue daemon with -Q flag
* Up to 0.4
Diffstat (limited to 'src/os.h')
-rw-r--r-- | src/os.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/os.h b/src/os.h new file mode 100644 index 0000000..03ed2fa --- /dev/null +++ b/src/os.h @@ -0,0 +1,10 @@ +#ifndef _OS_H_ +#define _OS_H_ + +#if __linux__ || __NetBSD__ || __FreBSD__ || __OpenBSD__ || __Darwin__ || __MacOSX__ +#define HAVE_SQUEUE 1 +#else +#define HAVE_SQUEUE 0 +#endif + +#endif |