summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2004-08-29 00:48:17 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2004-08-29 00:48:17 +0000
commitac038e9cc6f7708fdd9f36494861d2f611d5a90a (patch)
treef536a52a549b08576b2f004f60ac53473edc0dab
parent89d702763875831604751bac396c3d2400ec59b6 (diff)
downloadxserver-ac038e9cc6f7708fdd9f36494861d2f611d5a90a.tar.gz
Don't define _XOPEN_SOURCE before including math.h on Solaris - it's not
needed on older releases, and breaks builds on Solaris 10. (Same as bugzilla #189).
-rw-r--r--hw/xfree86/xaa/xaaWideLine.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/xfree86/xaa/xaaWideLine.c b/hw/xfree86/xaa/xaaWideLine.c
index fedd8f44d..d80a78be5 100644
--- a/hw/xfree86/xaa/xaaWideLine.c
+++ b/hw/xfree86/xaa/xaaWideLine.c
@@ -1,5 +1,5 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaWideLine.c,v 1.10 2001/11/16 16:47:56 dawes Exp $ */
-
+/* $XdotOrg: $ */
/*
XAAPolylinesWideSolid does not maintain a span list and subsequently does
@@ -15,7 +15,8 @@ Original mi code written by Keith Packard.
*/
#ifndef XFree86LOADER
-#if defined(_XOPEN_SOURCE) || defined(__QNXNTO__)
+#if defined(_XOPEN_SOURCE) || defined(__QNXNTO__) \
+ || (defined(sun) && defined(__SVR4))
#include <math.h>
#else
#define _XOPEN_SOURCE /* to get prototype for hypot on some systems */