Re: [Mesa-dev] [RFC] OES_external_image for i965

2013-03-05 Thread Pohjolainen, Topi
On Mon, Mar 04, 2013 at 10:55:07AM -0500, Kristian H?gsberg wrote: On Mon, Mar 4, 2013 at 10:11 AM, Pohjolainen, Topi topi.pohjolai...@intel.com wrote: On Mon, Mar 04, 2013 at 09:56:34AM -0500, Kristian H?gsberg wrote: On Mon, Mar 4, 2013 at 4:55 AM, Pohjolainen, Topi

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Jose Fonseca
I expected that when one sets TRACE_LIBGL env var with the path for the true libGL.so.1, then apitrace wouldn't be picking up symbols the overlay -- it would be taking symbols only from the true libGL.so, there avoiding infinite recursion. Jose - Original Message - Jose Fonseca

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Jose Fonseca
- Original Message - On Mon, 4 Mar 2013, Carl Worth wrote: I don't think it should be too hard to get this to work, (though it may require a source change to the Steam overlay). I'll do some more experiments tomorrow and see if I can't make a concrete recommendation to be

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Alexander Monakov
On Mon, 4 Mar 2013, Carl Worth wrote: I don't think it should be too hard to get this to work, (though it may require a source change to the Steam overlay). I'll do some more experiments tomorrow and see if I can't make a concrete recommendation to be able to give to Valve as a bug report.

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Alexander Monakov
On Tue, 5 Mar 2013, Jose Fonseca wrote: I expected that when one sets TRACE_LIBGL env var with the path for the true libGL.so.1, then apitrace wouldn't be picking up symbols the overlay -- it would be taking symbols only from the true libGL.so, there avoiding infinite recursion. ... unless

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Alexander Monakov
On Tue, 5 Mar 2013, Jose Fonseca wrote: $LIB is a neat idea. But does it work on debian/ubuntu systems, where mesa/NVIDIA libGL.so are put in different paths , which are then chosen via /etc/ld.so.conf*? I think Debian installs a symlink to the active libGL in /usr/lib. Not sure about

[Mesa-dev] [PATCH] Add missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions

2013-03-05 Thread Alan Hourihane
Add's the missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions. Signed-off-by: Alan Hourihane al...@vmware.com --- src/mesa/main/teximage.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index

Re: [Mesa-dev] [RFC] GLX_MESA_query_renderer

2013-03-05 Thread Henri Verbeet
On 2 March 2013 00:14, Ian Romanick i...@freedesktop.org wrote: I added some comments, but I think the extension is pretty much fine for at least Wine's purposes. GLX_ARB_create_context and GLX_ARB_create_context_profile are required. It's probably not a big deal since just about everyone

Re: [Mesa-dev] [PATCH] st/mesa: translate ir offset parameters for non-TXF opcodes.

2013-03-05 Thread Brian Paul
On 03/04/2013 06:03 PM, srol...@vmware.com wrote: From: Roland Scheideggersrol...@vmware.com Otherwise the state tracker will crash if the texture instructions have offsets. --- src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 20 ++-- 1 file changed, 18 insertions(+), 2

Re: [Mesa-dev] [PATCH] Add missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions

2013-03-05 Thread Brian Paul
On 03/05/2013 05:08 AM, Alan Hourihane wrote: Add's the missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions. Signed-off-by: Alan Hourihane al...@vmware.com --- src/mesa/main/teximage.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/teximage.c

Re: [Mesa-dev] [PATCH] texobj: add verbose api trace messages to several routines

2013-03-05 Thread Carl Worth
Alexander Monakov amona...@ispras.ru writes: 2) Specifically in order to work with the Steam overlay, the interposer *protects itself from dlsym interposition* by using real_dlsym = dlsym(dlopen(libdl.so.2), dlsym). Similar protection against dlopen interposition would also make sense.

Re: [Mesa-dev] [PATCH] mesa: don't allocate a texture if width or height is 0 in CopyTexImage

2013-03-05 Thread Brian Paul
On Mon, Mar 4, 2013 at 2:22 PM, Marek Olšák mar...@gmail.com wrote: --- src/mesa/main/teximage.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 0dcf88a..a7b88d1 100644 ---

[Mesa-dev] [PATCH 7/7] radeon/llvm: enable LICM and DCE pass

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- .../drivers/radeon/radeon_setup_tgsi_llvm.c|2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c

[Mesa-dev] [PATCH 6/7] radeonsi: add LLVMNoUnwindAttribute to intrinsic

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com So LLVM can better eliminate dead code. Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[Mesa-dev] [PATCH 1/7] radeonsi: switch to v*i8 for resources and samplers

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 31 +--- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git

[Mesa-dev] [PATCH 1/7] radeonsi: switch to v*i8 for resources and samplers

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 31 +--- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git

[Mesa-dev] [PATCH 4/7] radeonsi: remove SI.vs.load.buffer.index

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 21 +++-- src/gallium/drivers/radeonsi/radeonsi_shader.h |1 + 2 files changed, 12 insertions(+), 10 deletions(-)

[Mesa-dev] [PATCH 2/7] radeon/llvm: replace shader type intrinsic with function attribute

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeon/radeon_llvm_emit.cpp | 22 ++ src/gallium/drivers/radeon/radeon_llvm_emit.h |2 ++ src/gallium/drivers/radeonsi/radeonsi_shader.c |

[Mesa-dev] [PATCH 5/7] radeonsi: rework input interpolation

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 88 +++- src/gallium/drivers/radeonsi/radeonsi_shader.h | 18 - 2 files changed, 72 insertions(+), 34

[Mesa-dev] [PATCH 3/7] radeon/llvm: make SGPRs proper function arguments

2013-03-05 Thread Christian König
From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/r600/r600_llvm.c |1 + src/gallium/drivers/radeon/radeon_llvm.h |3 + .../drivers/radeon/radeon_setup_tgsi_llvm.c| 32 +++---

[Mesa-dev] [PATCH] tgsi: handle projection modifier for array textures.

2013-03-05 Thread sroland
From: Roland Scheidegger srol...@vmware.com This partly reverts 6ace2e41da7dded630d932d03bacb7e14a93d47a. Apparently with GL_MESA_texture_array fixed-function texturing with texture arrays is possible, and hence we have to handle TXP. (Though noone seems to know the semantics, softpipe now does

Re: [Mesa-dev] [PATCH] Add missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions

2013-03-05 Thread Ian Romanick
On 03/05/2013 07:09 AM, Brian Paul wrote: On 03/05/2013 05:08 AM, Alan Hourihane wrote: Add's the missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions. Signed-off-by: Alan Hourihane al...@vmware.com --- src/mesa/main/teximage.c | 1 + 1 files changed, 1 insertions(+), 0

Re: [Mesa-dev] [PATCH] tgsi: handle projection modifier for array textures.

2013-03-05 Thread Brian Paul
On 03/05/2013 09:25 AM, srol...@vmware.com wrote: From: Roland Scheideggersrol...@vmware.com This partly reverts 6ace2e41da7dded630d932d03bacb7e14a93d47a. Apparently with GL_MESA_texture_array fixed-function texturing with texture arrays is possible, and hence we have to handle TXP. (Though

Re: [Mesa-dev] [PATCH 7/7] radeon/llvm: enable LICM and DCE pass

2013-03-05 Thread Vincent Lejeune
Reviewed-by: Vincent Lejeune vljn at ovi.com - Mail original - De : Christian König deathsim...@vodafone.de À : mesa-dev@lists.freedesktop.org Cc : mic...@daenzer.net Envoyé le : Mardi 5 mars 2013 15h27 Objet : [Mesa-dev] [PATCH 7/7] radeon/llvm: enable LICM and DCE pass From:

Re: [Mesa-dev] [PATCH 1/7] radeonsi: switch to v*i8 for resources and samplers

2013-03-05 Thread Michel Dänzer
On Die, 2013-03-05 at 15:27 +0100, Christian König wrote: From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 31 +--- 1 file changed, 12 insertions(+), 19

Re: [Mesa-dev] [PATCH 7/7] radeon/llvm: enable LICM and DCE pass

2013-03-05 Thread Michel Dänzer
On Die, 2013-03-05 at 15:27 +0100, Christian König wrote: From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com This could use a little more information, e.g.: What are LICM and DCE? Why is it a good idea to enable them? -- Earthling Michel

Re: [Mesa-dev] [PATCH] Add missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions

2013-03-05 Thread Alan Hourihane
On 03/05/13 15:09, Brian Paul wrote: On 03/05/2013 05:08 AM, Alan Hourihane wrote: Add's the missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions. Signed-off-by: Alan Hourihane al...@vmware.com --- src/mesa/main/teximage.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)

Re: [Mesa-dev] [PATCH] Add missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions

2013-03-05 Thread Alan Hourihane
On 03/05/13 16:36, Ian Romanick wrote: On 03/05/2013 07:09 AM, Brian Paul wrote: On 03/05/2013 05:08 AM, Alan Hourihane wrote: Add's the missing GL_TEXTURE_CUBE_MAP entry in _mesa_legal_texture_dimensions. Signed-off-by: Alan Hourihane al...@vmware.com --- src/mesa/main/teximage.c | 1 + 1

Re: [Mesa-dev] [PATCH 7/7] radeon/llvm: enable LICM and DCE pass

2013-03-05 Thread Vincent Lejeune
LICM stands for Loop Invariant Code Motion. Instructions that does not depend of loop index are moved outside of loop body. (This solves one of llvm generated code Vadim pointed in another thread) DCE is DeadCodeElimination...I don't know the difference between classic DCE and aggressive DCE

Re: [Mesa-dev] [PATCH] Fix build of swrast only without libdrm

2013-03-05 Thread Kevin H. Hobbs
On 03/04/2013 01:32 PM, Matt Turner wrote: Committed. Thanks! Before this change ( at least this is the most reasonable change from last night ) I would configure mesa with : ./autogen.sh \ --prefix=/home/kevin/mesa_nightly \ --enable-glx \ --with-dri-drivers=swrast \

Re: [Mesa-dev] [PATCH 1/7] radeonsi: switch to v*i8 for resources and samplers

2013-03-05 Thread Tom Stellard
On Tue, Mar 05, 2013 at 03:27:19PM +0100, Christian König wrote: From: Christian König christian.koe...@amd.com Signed-off-by: Christian König christian.koe...@amd.com This series has my r-b, but I'd like to test it on r600, before you push it. -Tom ---

[Mesa-dev] [PATCH 1/2] configure.ac: Remove redundant checks of enable_dri.

2013-03-05 Thread Matt Turner
The whole block is enclosed inside if test x$enable_dri = xyes. --- configure.ac | 34 -- 1 files changed, 16 insertions(+), 18 deletions(-) diff --git a/configure.ac b/configure.ac index ea56a04..925dc6b 100644 --- a/configure.ac +++ b/configure.ac @@ -1062,26

[Mesa-dev] [PATCH 2/2] configure.ac: Build dricommon when dri is enabled

2013-03-05 Thread Matt Turner
Commit 67ef7559 added an || test x$enable_dri check, which was just wrong since the whole block was enclosed in if test x$enable_dri. The comment added with it stated the actual intent: to enable when any DRI drivers were built. --- configure.ac |2 +- 1 files changed, 1 insertions(+), 1

Re: [Mesa-dev] [PATCH] Fix build of swrast only without libdrm

2013-03-05 Thread Matt Turner
On Tue, Mar 5, 2013 at 9:37 AM, Kevin H. Hobbs hob...@ohio.edu wrote: On 03/04/2013 01:32 PM, Matt Turner wrote: Committed. Thanks! Before this change ( at least this is the most reasonable change from last night ) I would configure mesa with : ./autogen.sh \

[Mesa-dev] [Bug 61828] [softpipe] tgsi/tgsi_exec.c:1936:exec_tex: Assertion `modifier != 1' failed.

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61828 --- Comment #2 from Roland Scheidegger srol...@vmware.com --- Fixed by b9eb573600ff6d654bbc27d1fc5e935e5a74b071. Though either llvmpipe or softpipe handle TXP wrong... -- You are receiving this mail because: You are the assignee for the bug.

[Mesa-dev] [Bug 61821] src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error: xmlpool/options.h

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61821 Vinson Lee v...@freedesktop.org changed: What|Removed |Added CC||marvi...@gmx.de --

Re: [Mesa-dev] [PATCH] Fix build of swrast only without libdrm

2013-03-05 Thread Kevin H. Hobbs
On 03/05/2013 01:58 PM, Matt Turner wrote: On Tue, Mar 5, 2013 at 9:37 AM, Kevin H. Hobbs hob...@ohio.edu wrote: so now configure is giving me exactly what I asked for which is good :-) Unfortunately it isn't what I want :-( and the swrast driver gives me more vtk test errors than the

Re: [Mesa-dev] [PATCH] Fix build of swrast only without libdrm

2013-03-05 Thread Matt Turner
On Tue, Mar 5, 2013 at 11:43 AM, Kevin H. Hobbs hob...@ohio.edu wrote: The problem I have is: I do not see any way to configure Mesa to build the llvmpipe driver. Ah. To do this you enable the gallium swrast driver and LLVM. --with-gallium-drivers=swrast,... --enable--llvm

[Mesa-dev] [Bug 61821] src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error: xmlpool/options.h

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61821 Vinson Lee v...@freedesktop.org changed: What|Removed |Added CC||flo...@shadowice.org

Re: [Mesa-dev] [PATCH 04/14] mesa: Fix _mesa_problem() on context destroy after application debug output

2013-03-05 Thread Eric Anholt
Jordan Justen jljus...@gmail.com writes: On Fri, Feb 22, 2013 at 7:52 PM, Eric Anholt e...@anholt.net wrote: This was apparently not noticed because we don't have any testing of application-generated debug output. However, as I'm changing the GL-generated debug output to use the same path as

[Mesa-dev] [Bug 61455] Feature request: implement wglMakeContextCurrentARB in Gallium

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61455 --- Comment #5 from Keith Kriewall keith.kriew...@attachmate.com --- Created attachment 75990 -- https://bugs.freedesktop.org/attachment.cgi?id=75990action=edit Zip of wincopy for Windows Wincopy ported to Windows is attached, as a Dev Studio

[Mesa-dev] [Bug 61821] src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error: xmlpool/options.h

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61821 Matt Turner matts...@gmail.com changed: What|Removed |Added Status|NEW |ASSIGNED

[Mesa-dev] [Bug 61821] src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error: xmlpool/options.h

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61821 Matt Turner matts...@gmail.com changed: What|Removed |Added Status|NEW |ASSIGNED

[Mesa-dev] Mesa 9.1.1 picks

2013-03-05 Thread Ian Romanick
I've just cherry-picked almost everything from master that was marked. I had to modify the get-pick-list script to catch a couple commits that had ill-formed notes. I didn't pick this commit because there were conflicts, and I was lazy. :) c77917d35fdf64d9f194fbecc4748213621eefc8 r600g: pad

[Mesa-dev] [Bug 61821] src/mesa/drivers/dri/common/xmlpool.h:96:29: fatal error: xmlpool/options.h

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61821 --- Comment #1 from Carl Worth cwo...@cworth.org --- *** Bug 59261 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are on the CC list for the bug. ___

[Mesa-dev] [PATCH] i965/blorp: Use LRP instruction to do manual blending.

2013-03-05 Thread Matt Turner
Replaces (samples - 1) ADDs and a MUL with (samples - 1) LRPs. --- src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 31 +++-- 1 files changed, 14 insertions(+), 17 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp

Re: [Mesa-dev] [PATCH] i965/blorp: Use LRP instruction to do manual blending.

2013-03-05 Thread Paul Berry
On 5 March 2013 15:56, Matt Turner matts...@gmail.com wrote: Replaces (samples - 1) ADDs and a MUL with (samples - 1) LRPs. --- src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 31 +++-- 1 files changed, 14 insertions(+), 17 deletions(-) diff --git

Re: [Mesa-dev] [PATCH 2/2] configure.ac: Build dricommon when dri is enabled

2013-03-05 Thread Carl Worth
Matt Turner matts...@gmail.com writes: Commit 67ef7559 added an || test x$enable_dri check, which was just wrong since the whole block was enclosed in if test x$enable_dri. The comment added with it stated the actual intent: to enable when any DRI drivers were built. Thanks, Matt. I've

Re: [Mesa-dev] [PATCH] i965/blorp: Use LRP instruction to do manual blending.

2013-03-05 Thread Matt Turner
On Tue, Mar 5, 2013 at 3:56 PM, Matt Turner matts...@gmail.com wrote: Replaces (samples - 1) ADDs and a MUL with (samples - 1) LRPs. --- NAK this. LRP is a 3-src operand instruction, which means 16-wide needs to double the instructions. In the best case, this might be slightly better but we

Re: [Mesa-dev] Mesa 9.1.1 picks

2013-03-05 Thread Brian Paul
On 03/05/2013 04:26 PM, Ian Romanick wrote: I've just cherry-picked almost everything from master that was marked. I had to modify the get-pick-list script to catch a couple commits that had ill-formed notes. I didn't pick this commit because there were conflicts, and I was lazy. :)

Re: [Mesa-dev] [PATCH 2/2] configure.ac: Build dricommon when dri is enabled

2013-03-05 Thread Matt Turner
On Tue, Mar 5, 2013 at 4:08 PM, Carl Worth cwo...@cworth.org wrote: Matt Turner matts...@gmail.com writes: Commit 67ef7559 added an || test x$enable_dri check, which was just wrong since the whole block was enclosed in if test x$enable_dri. The comment added with it stated the actual intent:

[Mesa-dev] [PATCH] llvmpipe: fix incorrect 'j' array index in dummy texture code

2013-03-05 Thread Brian Paul
Use 0 instead. --- src/gallium/drivers/llvmpipe/lp_setup.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/llvmpipe/lp_setup.c b/src/gallium/drivers/llvmpipe/lp_setup.c index 4529775..299fd65 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup.c

[Mesa-dev] [Bug 58210] vmwgfx freezes system when starting Xorg

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58210 --- Comment #3 from John Kåre Alsaker john.kare.alsa...@gmail.com --- It works with non-debug builds too. It could be that this is fixed in 9.1. I tried building the 9.0 branch, but I think I hit some 2D fallback mode in GDM and couldn't trigger

[Mesa-dev] [Bug 58210] vmwgfx freezes system when starting Xorg

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58210 --- Comment #4 from Zack Rusin za...@vmware.com --- Is this Fedora or are you using gnome-shell or anything clutter based? If so then, we know about this and it's already been fixed in master and backported to stable branches:

[Mesa-dev] [Bug 58210] vmwgfx freezes system when starting Xorg

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58210 John Kåre Alsaker john.kare.alsa...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Mesa-dev] [Bug 58210] vmwgfx freezes system when starting Xorg

2013-03-05 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58210 --- Comment #6 from Zack Rusin za...@vmware.com --- I haven't tested Cinnamon, but iirc it was using Clutter and since Clutter uses GLX_INTEL_swap_event it had to be broken (all GLX_INTEL_swap_event using apps were freezing waiting for the sync

Re: [Mesa-dev] [PATCH] Fix build of swrast only without libdrm

2013-03-05 Thread Michel Dänzer
On Die, 2013-03-05 at 14:43 -0500, Kevin H. Hobbs wrote: On 03/05/2013 01:58 PM, Matt Turner wrote: On Tue, Mar 5, 2013 at 9:37 AM, Kevin H. Hobbs hob...@ohio.edu wrote: so now configure is giving me exactly what I asked for which is good :-) Unfortunately it isn't what I want :-( and