diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-12-23 15:17:28 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2012-02-03 14:23:02 -0800 |
commit | 1541e242d1607d0db57b0cc12faca9b1c2850c67 (patch) | |
tree | 0577c341038bb7615f2248d547901772d0709058 | |
parent | 85cecd981191f9c3dab0fb13310d91eff643d423 (diff) |
Stop including <sys/proc.h> from xf86_OSlib.h on Solaris
We don't need anything from that header (which defines /proc & kernel
structures for process information), and it causes some namespace conflicts.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/xfree86/os-support/xf86_OSlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/os-support/xf86_OSlib.h b/hw/xfree86/os-support/xf86_OSlib.h index 0a5861f49..45500dbdb 100644 --- a/hw/xfree86/os-support/xf86_OSlib.h +++ b/hw/xfree86/os-support/xf86_OSlib.h @@ -98,8 +98,8 @@ # if !(defined (sun) && defined (SVR4)) # include <sys/immu.h> # include <sys/region.h> +# include <sys/proc.h> # endif -# include <sys/proc.h> # include <sys/tss.h> # include <sys/sysi86.h> # if defined(SVR4) && !defined(sun) |