> Svn works for me again. There is probably a way to test the version, but
> it might require more thinking about.
>
> Andrew


Hi Andrew,

I actually have 8 different versions of wxWidgets on my Linux box - 
2.6.4 (debug (non-)unicode, release (non-)unicode) and 2.8.7 (debug 
(non-)unicode, release (non-)unicode). The install directory resides in 
the corresponding build directory and before I start to use wxWidgets I 
have written a little script "setupwx" which enables one of the versions:

#!/bin/sh

# configuration
DEVDIR=/home/smekal/DevZone

echo "Setting up wxGTK DE (Usage: setupwx [6|8] [d|uni|unid])"
if [ $1 -eq 8 ]; then WXPATH=wxGTK-2.8.7; else WXPATH=wxGTK-2.6.3; fi

echo "Using: $WXPATH"
echo "Build: $2"

export LD_LIBRARY_PATH=$DEVDIR/$WXPATH/buildgtk$2/local/lib:$LD_LIBRARY_PATH
export PATH=$DEVDIR/$WXPATH/buildgtk$2/local/bin:$PATH

so ". setupwx 6 unid" would enable the unicode debug version of wxGTK 
2.6.3. Works ok, but still you need to reconfigure cmake therefore I'm 
sometimes to lazy to test it against other versions, if I think there 
were just minor changes :)

Regards,
Werner

Andrew Ross wrote:
>
> On Fri, Feb 01, 2008 at 08:34:42PM +0100, Werner Smekal wrote:
>   
>> Hi Andrew,
>>
>> sorry, didn't test my changes with wxWidgets 2.6.4. Latest svn should 
>> work again (didn't test that either :), but it should work.
>>
>> Regards,
>> Werner
>>
>> Andrew Ross wrote:
>>     
>>> Werner,
>>>
>>> Your recent changes to the wxwidgets driver to support transparency seem
>>> to have broken the wxwidgets support on my Ubuntu system. This still has
>>> wxwidgets 2.6 (oldstable). The alpha transparency support for wxColour
>>> only appears to be present in the latest stable release 2.8. This is
>>> likely to break the build for a lot of users. Can you add a test for the
>>> wxwidgets version and disable transparency support for the old version?
>>> I think this is important ahead of the planned 5.9.0 release next week.
>>> Ubuntu tends to be fairly up to date so I imagine a lot of users won't
>>> yet have 2.8.
>>>
>>> Cheers
>>>
>>> Andrew
>>>
>>> -------------------------------------------------------------------------
>>> This SF.net email is sponsored by: Microsoft
>>> Defy all challenges. Microsoft(R) Visual Studio 2008.
>>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
>>> _______________________________________________
>>> Plplot-devel mailing list
>>> [email protected]
>>> https://lists.sourceforge.net/lists/listinfo/plplot-devel
>>>       
>> -- 
>> Dr. Werner Smekal
>> Institut fuer Allgemeine Physik
>> Technische Universitaet Wien
>> Wiedner Hauptstr 8-10
>> A-1040 Wien
>> Austria
>>
>> email: [EMAIL PROTECTED]
>> web:   http://www.iap.tuwien.ac.at/~smekal
>> phone: +43-(0)1-58801-13463 (office)
>>         +43-(0)1-58801-13469 (laboratory)
>> fax:   +43-(0)1-58801-13499
>>
>> -------------------------------------------------------------------------
>> This SF.net email is sponsored by: Microsoft
>> Defy all challenges. Microsoft(R) Visual Studio 2008.
>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
>> _______________________________________________
>> Plplot-devel mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/plplot-devel
>>
>>     
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> Plplot-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/plplot-devel
>   


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Plplot-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to