From: "zlman on
Hello @ALL!

is there anything special to pay attention while building wx with VS
2005?? i've tried now several times but the only thing i get are a lot
of build errors :-(
with VS 2003 i have no problems - but now i obtained VS 2005 and it
doesn't work...

does anybody know a HOWTO ? or something similar ?

thx
Alis

---------------------------------------------------------------------
To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org

From: chris elliott on
Hi, can you let us know which file you downloaded, and what the (first
few) errors are

thanks
chris

zlman(a)gmx.de wrote:
> Hello @ALL!
>
> is there anything special to pay attention while building wx with VS
> 2005?? i've tried now several times but the only thing i get are a lot
> of build errors :-(
> with VS 2003 i have no problems - but now i obtained VS 2005 and it
> doesn't work...
>
> does anybody know a HOWTO ? or something similar ?
>
> thx
> Alis
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org

From: "zlman on
Hi, i've now downloaded the File "wxMSW-2.8.0-Setup.exe" from the
wxWidgets website and also tried to compile - but it fails with the same
errors. Before i tried with wx2.8.0 i downloaded the wx2.8.1 from
http://biolpc22.york.ac.uk/pub/2.8.1/wxMSW-2.8.1-Setup.exe . Now i
decided to use the wx2.8.0 Version of wx..but as said before, it doesn't
compile...

Here is a part of the compiler messages:
-----
1>------ Erstellen gestartet: Projekt: gl, Konfiguration: Debug Win32 ------
2>------ Erstellen gestartet: Projekt: richtext, Konfiguration: Debug
Win32 ------
1>Compiling...
2>Compiling...
1>dummy.cpp
2>dummy.cpp
1>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
not found
1>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
from previous error(s); stopping compilation
1>Build log was saved at "file://d:\wx\build\msw\vc_mswd\gl\BuildLog.htm"
1>gl - 2 error(s), 0 warning(s)
2>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
not found
2>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
from previous error(s); stopping compilation
2>Build log was saved at
"file://d:\wx\build\msw\vc_mswd\richtext\BuildLog.htm"
2>richtext - 2 error(s), 0 warning(s)
3>------ Erstellen gestartet: Projekt: aui, Konfiguration: Debug Win32
------
3>Compiling...
3>dummy.cpp
3>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
not found
3>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
from previous error(s); stopping compilation
3>Build log was saved at "file://d:\wx\build\msw\vc_mswd\aui\BuildLog.htm"
3>aui - 2 error(s), 0 warning(s)
4>------ Erstellen gestartet: Projekt: xrc, Konfiguration: Debug Win32
------
4>Compiling...
4>dummy.cpp
5>------ Erstellen gestartet: Projekt: xml, Konfiguration: Debug Win32
------
....
....
-----


chris elliott schrieb:
> Hi, can you let us know which file you downloaded, and what the (first
> few) errors are
>
> thanks
> chris
>
> zlman(a)gmx.de wrote:
>> Hello @ALL!
>>
>> is there anything special to pay attention while building wx with VS
>> 2005?? i've tried now several times but the only thing i get are a
>> lot of build errors :-(
>> with VS 2003 i have no problems - but now i obtained VS 2005 and it
>> doesn't work...
>>
>> does anybody know a HOWTO ? or something similar ?
>>
>> thx
>> Alis
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
>> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org

From: Tim Stahlhut on
Here's a section of the batch file I use to build wxWidget 2.8 cvs head.
Note, one of the times I tried to build wxWidgets it error out because
it was missing Direct X SDK header.

Tim S

REM SET INCLUDE=C:\SourceCode\Libraries\DX_SDK\Include;%INCLUDE%
REM CALL "%VS71COMNTOOLS%vsvars32.bat"
CALL "%VS80COMNTOOLS%vsvars32.bat"

CD wxWidgets\build\msw
nmake -f makefile.vc USE_XRC=1 SHARED=0 MONOLITHIC=0 BUILD=debug UNICODE=0 USE_GUI=1 USE_OPENGL=1 clean
nmake -f makefile.vc USE_XRC=1 SHARED=0 MONOLITHIC=0 BUILD=debug UNICODE=0 USE_GUI=1 USE_OPENGL=1



---------------------------------------------------------------------
To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org

From: chris elliott on
_strdup should come from the vs2005 SDK headers; it suggests that the
include path is incorrect, or that there is some mangled code, or
previous compiled files lying around. I'd look for it in the headers firts

chris

zlman(a)gmx.de wrote:
> Hi, i've now downloaded the File "wxMSW-2.8.0-Setup.exe" from the
> wxWidgets website and also tried to compile - but it fails with the same
> errors. Before i tried with wx2.8.0 i downloaded the wx2.8.1 from
> http://biolpc22.york.ac.uk/pub/2.8.1/wxMSW-2.8.1-Setup.exe . Now i
> decided to use the wx2.8.0 Version of wx..but as said before, it doesn't
> compile...
>
> Here is a part of the compiler messages:
> -----
> 1>------ Erstellen gestartet: Projekt: gl, Konfiguration: Debug Win32
> ------
> 2>------ Erstellen gestartet: Projekt: richtext, Konfiguration: Debug
> Win32 ------
> 1>Compiling...
> 2>Compiling...
> 1>dummy.cpp
> 2>dummy.cpp
> 1>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
> not found
> 1>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
> from previous error(s); stopping compilation
> 1>Build log was saved at "file://d:\wx\build\msw\vc_mswd\gl\BuildLog.htm"
> 1>gl - 2 error(s), 0 warning(s)
> 2>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
> not found
> 2>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
> from previous error(s); stopping compilation
> 2>Build log was saved at
> "file://d:\wx\build\msw\vc_mswd\richtext\BuildLog.htm"
> 2>richtext - 2 error(s), 0 warning(s)
> 3>------ Erstellen gestartet: Projekt: aui, Konfiguration: Debug Win32
> ------
> 3>Compiling...
> 3>dummy.cpp
> 3>d:\wx\include\wx/buffer.h(114) : error C3861: '_strdup': identifier
> not found
> 3>d:\wx\include\wx/buffer.h(114) : fatal error C1903: unable to recover
> from previous error(s); stopping compilation
> 3>Build log was saved at "file://d:\wx\build\msw\vc_mswd\aui\BuildLog.htm"
> 3>aui - 2 error(s), 0 warning(s)
> 4>------ Erstellen gestartet: Projekt: xrc, Konfiguration: Debug Win32
> ------
> 4>Compiling...
> 4>dummy.cpp
> 5>------ Erstellen gestartet: Projekt: xml, Konfiguration: Debug Win32
> ------
> ...
> ...
> -----
>
>
> chris elliott schrieb:
>> Hi, can you let us know which file you downloaded, and what the (first
>> few) errors are
>>
>> thanks
>> chris
>>
>> zlman(a)gmx.de wrote:
>>> Hello @ALL!
>>>
>>> is there anything special to pay attention while building wx with VS
>>> 2005?? i've tried now several times but the only thing i get are a
>>> lot of build errors :-(
>>> with VS 2003 i have no problems - but now i obtained VS 2005 and it
>>> doesn't work...
>>>
>>> does anybody know a HOWTO ? or something similar ?
>>>
>>> thx
>>> Alis
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
>>> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
>> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org
For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org