diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2019-09-08 19:44:54 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2019-09-08 19:46:37 -0700 |
commit | 603fcbc4a497270877e2039eeb506197bac15d83 (patch) | |
tree | ee9fa64b6c07f66452e79983477d95ec470d283b /test/egl_has_extension_nocontext.c | |
parent | 8573dbcee30506f7ad1831247789deaf53a56a10 (diff) | |
download | libepoxy-603fcbc4a497270877e2039eeb506197bac15d83.tar.gz |
test: #define __EXTENSIONS__ on Solaris for strdup()
Needed to allow functions outside the original XPG3 standard to be
visible in the Solaris headers when _XOPEN_SOURCE is defined and
not set to a particular value.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'test/egl_has_extension_nocontext.c')
-rw-r--r-- | test/egl_has_extension_nocontext.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/egl_has_extension_nocontext.c b/test/egl_has_extension_nocontext.c index a95860a..4fa5f60 100644 --- a/test/egl_has_extension_nocontext.c +++ b/test/egl_has_extension_nocontext.c @@ -28,7 +28,11 @@ * no context bound would fail out in dispatch. */ +#ifdef __sun +#define __EXTENSIONS__ +#else #define _GNU_SOURCE +#endif #include <stdio.h> #include <string.h> #include <stdlib.h> |