diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2006-02-11 17:42:31 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2006-02-11 17:42:31 +0000 |
commit | d6337c83241f0fa4bb03039a9767b58d8a1a7c91 (patch) | |
tree | ed941e84024b317a4199a18b34db312c7894a7d5 | |
parent | 4fafba61d5402d4e4d2c21ba1be3ed8969b99334 (diff) |
<sys/limits.h> -> <limits.h> so we can compile on non-BSD OS'es
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | cfb/cfbfillarc.c | 2 | ||||
-rw-r--r-- | cfb/cfbzerarc.c | 2 | ||||
-rw-r--r-- | exa/exa_offscreen.c | 2 | ||||
-rw-r--r-- | hw/xfree86/exa/exa_offscreen.c | 2 | ||||
-rw-r--r-- | hw/xfree86/xaa/xaaFillArc.c | 2 | ||||
-rw-r--r-- | mfb/mfbfillarc.c | 2 | ||||
-rw-r--r-- | mfb/mfbzerarc.c | 2 |
8 files changed, 17 insertions, 7 deletions
@@ -1,3 +1,13 @@ +2006-02-11 Alan Coopersmith <alan.coopersmith@sun.com> + + * cfb/cfbfillarc.c: + * cfb/cfbzerarc.c: + * hw/xfree86/xaa/xaaFillArc.c: + * hw/xfree86/exa/exa_offscreen.c: + * mfb/mfbfillarc.c: + * mfb/mfbzerarc.c: + <sys/limits.h> -> <limits.h> so we can compile on non-BSD OS'es + 2006-02-10 Eric Anholt <anholt@FreeBSD.org> * GL/glx/Makefile.am: diff --git a/cfb/cfbfillarc.c b/cfb/cfbfillarc.c index 797e9ea78..a02f40e14 100644 --- a/cfb/cfbfillarc.c +++ b/cfb/cfbfillarc.c @@ -31,7 +31,7 @@ in this Software without prior written authorization from The Open Group. #include <dix-config.h> #endif -#include <sys/limits.h> +#include <limits.h> #include <X11/X.h> #include <X11/Xprotostr.h> diff --git a/cfb/cfbzerarc.c b/cfb/cfbzerarc.c index 0d88bfd5a..27b82e42e 100644 --- a/cfb/cfbzerarc.c +++ b/cfb/cfbzerarc.c @@ -37,7 +37,7 @@ in this Software without prior written authorization from The Open Group. #include <dix-config.h> #endif -#include <sys/limits.h> +#include <limits.h> #include <X11/X.h> #include <X11/Xprotostr.h> diff --git a/exa/exa_offscreen.c b/exa/exa_offscreen.c index c3a2af642..b128504f2 100644 --- a/exa/exa_offscreen.c +++ b/exa/exa_offscreen.c @@ -22,7 +22,7 @@ #include "exa_priv.h" -#include <sys/limits.h> +#include <limits.h> #include <assert.h> #include <stdlib.h> diff --git a/hw/xfree86/exa/exa_offscreen.c b/hw/xfree86/exa/exa_offscreen.c index c3a2af642..b128504f2 100644 --- a/hw/xfree86/exa/exa_offscreen.c +++ b/hw/xfree86/exa/exa_offscreen.c @@ -22,7 +22,7 @@ #include "exa_priv.h" -#include <sys/limits.h> +#include <limits.h> #include <assert.h> #include <stdlib.h> diff --git a/hw/xfree86/xaa/xaaFillArc.c b/hw/xfree86/xaa/xaaFillArc.c index 6d4a5dccf..d8e2739c6 100644 --- a/hw/xfree86/xaa/xaaFillArc.c +++ b/hw/xfree86/xaa/xaaFillArc.c @@ -38,7 +38,7 @@ #include <xorg-config.h> #endif -#include <sys/limits.h> +#include <limits.h> #include "misc.h" #include "xf86.h" diff --git a/mfb/mfbfillarc.c b/mfb/mfbfillarc.c index 8856eb0ae..ffa948fe1 100644 --- a/mfb/mfbfillarc.c +++ b/mfb/mfbfillarc.c @@ -31,7 +31,7 @@ in this Software without prior written authorization from The Open Group. #include <dix-config.h> #endif -#include <sys/limits.h> +#include <limits.h> #include <X11/X.h> #include <X11/Xprotostr.h> diff --git a/mfb/mfbzerarc.c b/mfb/mfbzerarc.c index cc45ee2d4..9fd4c07a2 100644 --- a/mfb/mfbzerarc.c +++ b/mfb/mfbzerarc.c @@ -37,7 +37,7 @@ in this Software without prior written authorization from The Open Group. #include <dix-config.h> #endif -#include <sys/limits.h> +#include <limits.h> #include <X11/X.h> #include <X11/Xprotostr.h> |