[Mesa-dev] [PATCH:mesa] util: Make xmlconfig.c build on Solaris without d_type in dirent (v2)

2018-10-05 Thread Alan Coopersmith
v2: check for lstat() failing Fixes: 04bdbbcab3c "xmlconfig: read more config files from drirc.d/" Signed-off-by: Alan Coopersmith Reviewed-by: Roland Mainz Reviewed-by: Ian Romanick --- src/util/xmlconfig.c | 8 1 file changed, 8 insertions(+) diff --git a/src/util/xml

Re: [Mesa-dev] [PATCH:mesa] util: Make xmlconfig.c build on Solaris without d_type in dirent

2018-10-05 Thread Alan Coopersmith
On 10/ 5/18 10:04 AM, Ian Romanick wrote: On 10/03/2018 08:21 PM, Alan Coopersmith wrote: On 10/ 3/18 03:15 PM, Roland Mainz wrote: On Wed, Oct 3, 2018 at 11:51 PM Alan Coopersmith wrote: Introduced-by: commit 04bdbbcab3c4862bf3f54ce60fcc1d2007776f80 Is this formatting something you need

Re: [Mesa-dev] [PATCH:mesa] util: Make xmlconfig.c build on Solaris without d_type in dirent

2018-10-04 Thread Alan Coopersmith
e, r=roland.ma...@nrubsig.org Thanks. -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - https://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.f

Re: [Mesa-dev] [PATCH:mesa] util: Make xmlconfig.c build on Solaris without d_type in dirent

2018-10-03 Thread Alan Coopersmith
On 10/ 3/18 03:15 PM, Roland Mainz wrote: On Wed, Oct 3, 2018 at 11:51 PM Alan Coopersmith wrote: Introduced-by: commit 04bdbbcab3c4862bf3f54ce60fcc1d2007776f80 Signed-off-by: Alan Coopersmith --- src/util/xmlconfig.c | 8 1 file changed, 8 insertions(+) diff --git a/src/util

Re: [Mesa-dev] [PATCH 1/2] configure.ac: Refuse to build with Sun C compiler.

2015-12-02 Thread Alan Coopersmith
On 12/ 2/15 01:04 AM, Roland Mainz wrote: On Wed, Dec 2, 2015 at 12:38 AM, Alan Coopersmith <alan.coopersm...@oracle.com> wrote: On 12/ 1/15 03:07 PM, Jose Fonseca wrote: https://bugs.freedesktop.org/show_bug.cgi?id=93189 --- configure.ac | 7 +++ 1 file changed, 7 inse

Re: [Mesa-dev] [PATCH 1/2] configure.ac: Refuse to build with Sun C compiler.

2015-12-01 Thread Alan Coopersmith
C_MSG_ERROR([Building with Sun C compiler is not supported, use GCC instead.]) +fi + dnl Check for compiler builtins AX_GCC_BUILTIN([__builtin_bswap32]) AX_GCC_BUILTIN([__builtin_bswap64]) Acked-by: Alan Coopersmith <alan.coopersm...@oracle.com> -- -Alan Coopersmith-

[Mesa-dev] [PATCH:mesa] glsl_compiler: Remove unused extra argument to printf in usage_fail

2015-05-25 Thread Alan Coopersmith
) at line 285 of src/glsl/main.cpp in function 'usage_fail'. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/glsl/main.cpp |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp index ccac839..4b39c9e 100644 --- a/src/glsl

[Mesa-dev] [PATCH:mesa] swrast: Build fix for Solaris

2015-05-15 Thread Alan Coopersmith
Fixes regression from commit 5b2d3480f57168d50ad24cf0b8c9244414bd3701 Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com CC: Jeremy Huddleston Sequoia jerem...@apple.com --- configure.ac |1 + src/mesa/drivers/dri/swrast/swrast.c |4 +++- 2 files changed

Re: [Mesa-dev] [PATCH] c99_alloca.h: add case for __sun

2015-03-03 Thread Alan Coopersmith
_alloca +#elif defined(__sun) + +# include alloca.h + #else /* !defined(_MSC_VER) */ # include stdlib.h Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http

Re: [Mesa-dev] [PATCH] c99_alloca.h: Include stdlib.h on all non-Windows.

2015-03-02 Thread Alan Coopersmith
On 03/ 2/15 08:20 AM, Brian Paul wrote: On 03/01/2015 02:00 PM, Alan Coopersmith wrote: On 03/ 1/15 12:52 PM, Vinson Lee wrote: Fix build on FreeBSD. Bugzilla: https://urldefense.proofpoint.com/v2/url?u=https-3A__bugs.freedesktop.org_show-5Fbug.cgi-3Fid-3D89364d=AwIGaQc

Re: [Mesa-dev] [PATCH] configure: simplify visibility compiler flag detection

2015-03-02 Thread Alan Coopersmith
On 03/ 1/15 02:31 PM, Emil Velikov wrote: - Considering the lack of -fvisibility, what is the normal visibility level - hidden or default ? If the latter this means that every library/module built exports a ton of internal symbols. Default, unless you pass the -xldscope=hidden flag to

Re: [Mesa-dev] [PATCH] configure: simplify visibility compiler flag detection

2015-03-01 Thread Alan Coopersmith
://docs.oracle.com/cd/E37069_01/html/E37074/gopqx.html http://cgit.freedesktop.org/xorg/proto/x11proto/commit/?id=ffd4a13042d24cb5c913207585191801a9a1603e -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc

Re: [Mesa-dev] [PATCH] c99_alloca.h: Include stdlib.h on all non-Windows.

2015-03-01 Thread Alan Coopersmith
/* !defined(_MSC_VER) */ Solaris defines alloca() in alloca.h, not stdlib.h -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev

Re: [Mesa-dev] [PATCH:mesa 1/4] Remove extraneous ; after DECL_TYPE usage

2015-02-17 Thread Alan Coopersmith
fixes: http://patchwork.freedesktop.org/patch/42582/ -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http

Re: [Mesa-dev] [PATCH:mesa 2/4] Avoid fighting with Solaris headers over isnormal()

2015-02-17 Thread Alan Coopersmith
On 02/17/15 10:21 AM, Emil Velikov wrote: Hi Alan, On 16/02/15 02:41, Alan Coopersmith wrote: When compiling in C99 or C++11 modes, Solaris defines isnormal() as a macro via math.h, which causes the function definition to become too mangled to compile. Is this series sufficient to get mesa

[Mesa-dev] [PATCH:mesa 2/4] Avoid fighting with Solaris headers over isnormal()

2015-02-15 Thread Alan Coopersmith
When compiling in C99 or C++11 modes, Solaris defines isnormal() as a macro via math.h, which causes the function definition to become too mangled to compile. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/glsl/ir_constant_expression.cpp |2 +- 1 file changed, 1

[Mesa-dev] [PATCH:mesa 4/4] Make _mesa_swizzle_and_convert argument types in .c match those in .h

2015-02-15 Thread Alan Coopersmith
Caused Solaris Studio compilers to fail to build with errors about incompatible function redefinitions. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/main/format_utils.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main

[Mesa-dev] [PATCH:mesa 3/4] Use __typeof instead of typeof with Solaris Studio compilers

2015-02-15 Thread Alan Coopersmith
While the C compiler accepts typeof, C++ requires __typeof. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/util/u_atomic.h |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/u_atomic.h b/src/util/u_atomic.h index 192cc8d..d15398e 100644

[Mesa-dev] [PATCH:mesa 1/4] Remove extraneous ; after DECL_TYPE usage

2015-02-15 Thread Alan Coopersmith
of useless warnings. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/glsl/builtin_type_macros.h | 66 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/src/glsl/builtin_type_macros.h b/src/glsl/builtin_type_macros.h index

[Mesa-dev] videos of X, DRM, Mesa talks from LCA2015

2015-01-23 Thread Alan Coopersmith
: https://www.youtube.com/watch?v=Z5uY01QlyK0 http://lca2015.linux.org.au/schedule/30178/view_talk -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing

[Mesa-dev] [PATCH:mesa] Bracket arguments to tr so they work with Solaris tr

2015-01-03 Thread Alan Coopersmith
in this function) egldisplay.c:207:31: note: in expansion of macro '_EGL_NATIVE_PLATFORM' native_platform = _EGL_NATIVE_PLATFORM; ^ Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |2 +- 1 file changed, 1 insertion(+), 1 deletion

Re: [Mesa-dev] Finishing make distcheck

2014-12-11 Thread Alan Coopersmith
tomorrow - hell yeah Congratulations! -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http

Re: [Mesa-dev] [ Open source project]

2014-06-17 Thread Alan Coopersmith
already working with the code base have less to learn and work through there than those coming at it for the first time.) -- -Alan Coopersmith- alan.coopersm...@oracle.com X.Org Foundation, Board of Directors - http://www.x.org

[Mesa-dev] [PATCH:mesa] Use -z defs instead of --no-undefined on Solaris

2014-06-02 Thread Alan Coopersmith
While recent versions of the Solaris linker support --no-undefined, older ones do not, and even current ones get confused if the Makefile passes one form and libtool sneaks in the other. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |2 ++ 1 file changed, 2

Re: [Mesa-dev] Contribution

2014-05-10 Thread Alan Coopersmith
a simpler build environment to set up than the Xorg server, as it has less dependencies - you can read about how to do that at: http://www.mesa3d.org/install.html and in the pages under Developer Topics in the left bar on that page (scroll down a bit to get to it). -- -Alan Coopersmith

Re: [Mesa-dev] [PATCH] Mark drmServerInfo.debug_print with printf attribute

2013-12-11 Thread Alan Coopersmith
for example. -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo

Re: [Mesa-dev] R300 'make check' build failure on master and 9.2

2013-08-06 Thread Alan Coopersmith
Anholt did the original setup and may be able to help you there. (Though I've just noticed that http://tinderbox.x.org/ is offline at the moment, guess I'll poke the sitewranglers about that.) -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering

[Mesa-dev] [PATCH:mesa 1/2] integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]

2013-05-23 Thread Alan Coopersmith
...@ioactive.com Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/glx/XF86dri.c |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/glx/XF86dri.c b/src/glx/XF86dri.c index b1cdc9b..8f53bd7 100644 --- a/src/glx/XF86dri.c +++ b/src/glx/XF86dri.c @@ -43,6

[Mesa-dev] [PATCH:mesa 0/2] integer overflows in GLX DRI code [CVE-2013-1993]

2013-05-23 Thread Alan Coopersmith
is not in a shared libXdri, but copied into several locations, including Mesa's GLX library. This series of patches corrects these bugs in Mesa's copy. Alan Coopersmith (2): integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2] integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2

[Mesa-dev] [PATCH:mesa 2/2] integer overflow in XF86DRIGetClientDriverName() [CVE-2013-1993 2/2]

2013-05-23 Thread Alan Coopersmith
ivansprun...@ioactive.com Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/glx/XF86dri.c |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/glx/XF86dri.c b/src/glx/XF86dri.c index 8f53bd7..56e3557 100644 --- a/src/glx/XF86dri.c +++ b/src/glx/XF86dri.c

Re: [Mesa-dev] [PATCH:mesa 1/2] integer overflow in XF86DRIOpenConnection() [CVE-2013-1993 1/2]

2013-05-23 Thread Alan Coopersmith
On 05/23/13 11:07 AM, Ian Romanick wrote: On 05/23/2013 08:44 AM, Alan Coopersmith wrote: if (rep.length) { - if (!(*busIdString = calloc(rep.busIdStringLength + 1, 1))) { + if (rep.busIdStringLength INT_MAX) + *busIdString = calloc(rep.busIdStringLength + 1, 1

Re: [Mesa-dev] Proposal: allow hidden security bugs on Mesa's Bugzilla

2012-11-20 Thread Alan Coopersmith
wouldn't be the first project on the freedesktop bugzilla to enable this - security bugs filed against X.Org software are kept private to the X.Org security team until we publish our advisory. -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering

Re: [Mesa-dev] FOSDEM2013: DevRoom or not?

2012-08-12 Thread Alan Coopersmith
for travel). Contact bo...@foundation.x.org with requests. -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http

[Mesa-dev] FOSS.in Call for Participation

2012-06-27 Thread Alan Coopersmith
saying we're happy to discuss it, and have provided similar funding in the past for people who needed it to present at FOSDEM similar venues.) Send mail to bo...@foundation.x.org with any questions or proposals. -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle

Re: [Mesa-dev] [PATCH] scons: Do not build glx on Solaris.

2012-06-25 Thread Alan Coopersmith
On 06/25/12 12:09 AM, Michel Dänzer wrote: On Sam, 2012-06-23 at 14:55 -0700, Alan Coopersmith wrote: On 06/23/12 01:43 PM, Vinson Lee wrote: On Wed, Jun 20, 2012 at 6:49 AM, Alan Coopersmith alan.coopersm...@oracle.com wrote: On 06/19/12 11:34 PM, Vinson Lee wrote: The GLX headers

Re: [Mesa-dev] [PATCH] scons: Do not build glx on Solaris.

2012-06-23 Thread Alan Coopersmith
On 06/23/12 01:43 PM, Vinson Lee wrote: On Wed, Jun 20, 2012 at 6:49 AM, Alan Coopersmith alan.coopersm...@oracle.com wrote: On 06/19/12 11:34 PM, Vinson Lee wrote: The GLX headers on Solaris are not recent enough. Huh? Which Solaris? Solaris 11 ships with X.Org's glproto 1.4.10 - how

Re: [Mesa-dev] [PATCH] scons: Do not build glx on Solaris.

2012-06-20 Thread Alan Coopersmith
matter.) -- -Alan Coopersmith- alan.coopersm...@oracle.com Oracle Solaris Engineering - http://blogs.oracle.com/alanc ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH] intel: Change vendor string to Intel(R) Open Source Technology Center.

2012-05-31 Thread Alan Coopersmith
. These locales include ja_JP.PCK ...) to avoid occasional hiccups. I don't remember having any problems with the Studio compilers using UTF-8 characters, but they do break down if you use other encodings that appear to cause invalid UTF-8 sequences. -- -Alan Coopersmith

Re: [Mesa-dev] anongit.freedesktop.org not available?

2012-02-01 Thread Alan Coopersmith
the hostnames to resolve to 131.252.210.176 instead of the DNS reported 131.252.210.161. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev

Re: [Mesa-dev] [PATCH 03/12] rbug: Silence warning

2012-01-09 Thread Alan Coopersmith
? -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] XCB-only GLX protocol?

2011-11-28 Thread Alan Coopersmith
(which has no XCB included - those who want to build new versions themselves should be able to build xcb for Solaris 10 as well). Most applications still use libX11, but since we ship the libX11 1.4.x built on top of libxcb, the standard xcb/xlib handoff calls should work just fine. -- -Alan

Re: [Mesa-dev] [PATCH 2/2] mesa: add hard limits for the number of varyings and uniforms for the linker

2011-11-24 Thread Alan Coopersmith
. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] FOSDEM 2012 DevRoom!

2011-11-15 Thread Alan Coopersmith
, or Wayland), please contact bo...@foundation.x.org as soon as possible to make your request. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev

Re: [Mesa-dev] [PATCH] Fix _GNUC__ typo in check for gcc 3.x for _mesa_bitcount

2011-10-21 Thread Alan Coopersmith
On 10/20/11 18:30, Jason Wood wrote: On 10/20/2011 06:58 PM, Alan Coopersmith wrote: Without this fix, builds with gcc 3.4.x end up depending on undefined _mesa_bitcount instead of gcc's __builtin_popcount. NOTE: This is a candidate for the stable branches. Signed-off-by: Alan

Re: [Mesa-dev] [PATCH] Fix _GNUC__ typo in check for gcc 3.x for _mesa_bitcount

2011-10-21 Thread Alan Coopersmith
for the mesa_bitcount checks. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH 1/2] Fix gcc version checks for _mesa_bitcount

2011-10-21 Thread Alan Coopersmith
-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/main/imports.c |2 +- src/mesa/main/imports.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 345a1c5..2469e42 100644 --- a/src/mesa/main/imports.c +++ b/src

[Mesa-dev] [PATCH 2/2] Convert additional GNUC_MINOR checks to multiplied version

2011-10-21 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/main/imports.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 9cb6c6c..797f357 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main

[Mesa-dev] [PATCH] gallium/auxiliary/util: Solaris also has standard Unix sockets

2011-10-21 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/gallium/auxiliary/util/u_network.c |9 ++--- src/gallium/auxiliary/util/u_network.h |3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/gallium/auxiliary/util/u_network.c b/src/gallium

[Mesa-dev] [PATCH] Fix _GNUC__ typo in check for gcc 3.x for _mesa_bitcount

2011-10-20 Thread Alan Coopersmith
Without this fix, builds with gcc 3.4.x end up depending on undefined _mesa_bitcount instead of gcc's __builtin_popcount. NOTE: This is a candidate for the stable branches. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/main/imports.c |2 +- src/mesa/main/imports.h

Re: [Mesa-dev] [PATCH] Only use gcc visibility support with gcc4+.

2011-10-19 Thread Alan Coopersmith
_X_INTERNAL #endif /* GNUC = 4 */ -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman

[Mesa-dev] [PATCH] Add solaris detection for PIPE_ARCH_LITTLE_ENDIAN/PIPE_ARCH_BIG_ENDIAN

2011-10-19 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/gallium/include/pipe/p_config.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h index b3a7b33..7cd42c6 100644 --- a/src

Re: [Mesa-dev] [RFC PATCH] automake: add support to src/glsl/

2011-09-28 Thread Alan Coopersmith
are willing to accept, and no amount of logic or arguments from outsiders can trump company policy. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list

Re: [Mesa-dev] [PATCH] egl_glx.c: use unsigned instead of uint

2011-09-19 Thread Alan Coopersmith
the C99 standard type names, uint8_t, uint32_t, etc., plus some common extensions such as uint_t, ulong_t, etc. unsigned of course works everywhere. Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Alan Coopersmith
suggested. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] S2TC - yet another attempt to solve the S3TC issue

2011-08-09 Thread Alan Coopersmith
them. Sadly, the much needed patent reform doesn't seem to be coming, while the patent trolls and lawsuits keep rising. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System

Re: [Mesa-dev] S2TC - yet another attempt to solve the S3TC issue

2011-08-08 Thread Alan Coopersmith
, or included as part of a preinstalled Linux bundle on a laptop, doing the wrong thing with patents is a good way to accomplish that. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System

Re: [Mesa-dev] threads and X.org/AIGLX drivers

2011-05-11 Thread Alan Coopersmith
afterwards: http://src.opensolaris.org/source/xref/x-cons/xnv-clone/open-src/driver/xf86-input-hotkey/sun-src/hotkey.c#224 -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa

[Mesa-dev] [PATCH] Fix GET_PROGRAM_NAME() on Solaris to not try to modify a read-only string

2011-04-08 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/drivers/dri/common/xmlconfig.c | 20 +++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c index 0312c07

Re: [Mesa-dev] [PATCH] Fix GET_PROGRAM_NAME() on Solaris to not try to modify a read-only string

2011-04-08 Thread Alan Coopersmith
On 04/ 8/11 01:18 PM, Jakob Bornecrantz wrote: On Fri, Apr 8, 2011 at 10:12 PM, Jakob Bornecrantz wallbra...@gmail.com wrote: On Fri, Apr 8, 2011 at 10:04 PM, Alan Coopersmith alan.coopersm...@oracle.com wrote: Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com Obvious question

[Mesa-dev] [PATCH] Make st_pipe_vertex_format return type in st_draw.h match st_draw.c

2011-04-08 Thread Alan Coopersmith
int, unsigned char) returning unsigned int : state_tracker/st_draw.h, line 73 Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/mesa/state_tracker/st_draw.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/state_tracker/st_draw.h b/src/mesa

Re: [Mesa-dev] libdri.a

2011-01-27 Thread Alan Coopersmith
-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev

[Mesa-dev] [PATCH:mesa-demos] Allow builders to specify GLEW_CFLAGS GLEW_LIBS

2010-12-30 Thread Alan Coopersmith
configure --help says that builders can set those variables to override pkgconfig settings, but configure.ac was overwriting those before calling PKG_CHECK_MODULES Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |8 +++- 1 files changed, 3 insertions(+), 5

Re: [Mesa-dev] [PATCH:mesa-demos] Allow builders to specify GLEW_CFLAGS GLEW_LIBS

2010-12-30 Thread Alan Coopersmith
On 12/30/10 09:27 AM, tom fogal wrote: Alan Coopersmith alan.coopersm...@oracle.com writes: configure --help says that builders can set those variables to override pkgconfig settings, but configure.ac was overwriting those before calling PKG_CHECK_MODULES Signed-off-by: Alan Coopersmith

Re: [Mesa-dev] TLS autodetection support in the X server

2010-12-22 Thread Alan Coopersmith
/ac_define_dir.m4 Is there any reason not to do that here? Why should we add multiple levels of indirection to keep in sync? -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System

Re: [Mesa-dev] Anonymous unions (Was: [Bug 30789] mesa git fails to build)

2010-10-12 Thread Alan Coopersmith
with repairing it. (I know git master has been broken for a few months, but haven't gotten around to fixing, sorry.) -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System ___ mesa-dev

Re: [Mesa-dev] Old toys [DRI1 drivers] .....

2010-09-26 Thread Alan Coopersmith
. -- -Alan Coopersmith-alan.coopersm...@oracle.com Oracle Solaris Platform Engineering: X Window System Member of the X.Org Foundation Board of Directors ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http