diff options
author | Ben Byer <bbyer@apple.com> | 2007-02-17 01:21:43 -0800 |
---|---|---|
committer | Ben Byer <bbyer@apple.com> | 2007-02-17 01:21:43 -0800 |
commit | cf4994b0db2fef4c10ce8804adef766bc5118daf (patch) | |
tree | e70a409a9df6da1132c4ccef339e3f112e7d12a1 /dix | |
parent | cece0601571f6304e392a3a40505664544b249f3 (diff) |
dix mods for Darwin
Diffstat (limited to 'dix')
-rw-r--r-- | dix/devices.c | 4 | ||||
-rw-r--r-- | dix/dixfonts.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/dix/devices.c b/dix/devices.c index 9f4218414..0739de6db 100644 --- a/dix/devices.c +++ b/dix/devices.c @@ -213,7 +213,11 @@ CoreKeyboardBell(int volume, DeviceIntPtr pDev, pointer arg, int something) { KeybdCtrl *ctrl = arg; +#ifdef __DARWIN__ + // not yet implemented :( +#else DDXRingBell(volume, ctrl->bell_pitch, ctrl->bell_duration); +#endif } static void diff --git a/dix/dixfonts.c b/dix/dixfonts.c index d5b42dcf6..5f087a31a 100644 --- a/dix/dixfonts.c +++ b/dix/dixfonts.c @@ -64,6 +64,7 @@ Equipment Corporation. #include "opaque.h" #include "dixfontstr.h" #include "closestr.h" +#include "dixfont.h" #ifdef DEBUG #include <stdio.h> |