diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2004-06-28 18:08:26 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2004-06-28 18:08:26 +0000 |
commit | ea78d1c6fcd27d28e69cb97faf72b7b719f6f93e (patch) | |
tree | f68e2a452c694f9fec57f33d2963beb6e0c36151 | |
parent | 7ff67f2872ddd15908f789ec9bdb76e8211d6431 (diff) |
Add GLX_ALIAS_VOID for GLX_ALIAS of functions with return type void to fix
builds with non-gcc compilers that refuse to let you do return
function_that_returns_void(...)
programs/Xserver/hw/xfree86/os-support/shared/sigiostubs.c Remove includes
of xf86drm.h that break non-DRI builds
-rw-r--r-- | hw/xfree86/os-support/shared/sigiostubs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/xfree86/os-support/shared/sigiostubs.c b/hw/xfree86/os-support/shared/sigiostubs.c index 51f98f2a4..de2d20a4c 100644 --- a/hw/xfree86/os-support/shared/sigiostubs.c +++ b/hw/xfree86/os-support/shared/sigiostubs.c @@ -25,6 +25,7 @@ * the sale, use or other dealings in this Software without prior written * authorization from the copyright holder(s) and author(s). */ +/* $XdotOrg: $ */ #ifdef XFree86Server #ifdef __UNIXOS2__ @@ -32,10 +33,8 @@ #endif # include "X.h" # include "xf86.h" -# include "xf86drm.h" # include "xf86Priv.h" # include "xf86_OSlib.h" -# include "xf86drm.h" #else # include <unistd.h> # include <signal.h> |