public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] Problems building configtool for Cygwin (again)
@ 2008-05-01 13:47 David Fernandez
  2008-05-01 14:14 ` Andy Jackson
  2008-05-01 17:59 ` John Dallaway
  0 siblings, 2 replies; 7+ messages in thread
From: David Fernandez @ 2008-05-01 13:47 UTC (permalink / raw)
  To: ecos-discuss

Hi there,

Here it is again the same old problem... Seems that something is not
quite right with the cygwin instructions, the configtool sources, or
just myself...

I've picked the eCoscentric snapshot today (01/05/2008) from the web page.

I've configured wxWindows-2.4.2 with:

$ /cygdrive/c/local/wxWindows-2.4.2/configure --disable-shared
--disable-socket s --disable-protocols --disable-fs_inet
--disable-compat22 --with-libpng --without-libjpeg --without-libtiff
--prefix=/cygdrive/c/local

at /cygdrive/c/local/build/wxWindows/2.4.2, then "make" & "make
install". I had to add the additional switches to avoid some compile
errors building wxWindows itself.

I've configured the eCos host tools with:

$ /cygdrive/c/local/ecos/host/configure --prefix=/cygdrive/c/local

at /cygdrive/c/local/build/ecos/host, then "make" & "make install" them.

When doing:

$ make -f /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/makefile.gnu
install WXDIR=/cygdrive/c/local ECOSSRCDIR=/cygdrive/c/local/ecos/host
IN STALLDIR=/cygdrive/c/local

at /cygdrive/c/local/build/ecos/configtool, I get this:
...
c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
-I/cygdrive/c/local/ecos/host/tools/configtool/common/common
-I/cygdrive/c/local/ecos/host/to ols/Utils/common
-I/cygdrive/c/local/ecos/host/tools/ecostest/common
-DecUSE_EXPERIMENTAL_CODE=1 `/cygdrive/c/local/bin/wx-config
--cppflags` -D_WIN32 -D__WIN32 __ -DSTRICT -D__USE_W32_SOCKETS -o
/cygdrive/c/local/build/ecos/configtool/ecutils.o
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
In static member function `static const wxString
ecUtils::NativeToPosixPath(const wxString&)':
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
error: `MAXPATHLEN' undeclared (first use this function)
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
error: (Each undeclared identifier is reported only once for each
function it app ears in.)
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
In static member function `static const wxString
ecUtils::PosixToNativePath(const wxString&)':
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:290:
error: `MAXPATHLEN' undeclared (first use this function)
make: *** [/cygdrive/c/local/build/ecos/configtool/ecutils.o] Error 1

What could possibly be wrong this time?

Cheers
David Fernandez

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [ECOS] Problems building configtool for Cygwin (again)
  2008-05-01 13:47 [ECOS] Problems building configtool for Cygwin (again) David Fernandez
@ 2008-05-01 14:14 ` Andy Jackson
  2008-05-01 14:38   ` David Fernandez
  2008-05-01 17:59 ` John Dallaway
  1 sibling, 1 reply; 7+ messages in thread
From: Andy Jackson @ 2008-05-01 14:14 UTC (permalink / raw)
  To: David Fernandez; +Cc: ecos-discuss

Hello David,

I loose track, but I think the fix to this one is to change the include 
at the top of ecutils.cpp to something like this:

#ifdef __CYGWIN__
#ifdef ORIGINAL_CODE
#include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
#else
#include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
#include <sys/param.h> // For MAXPATHLEN
#endif
#endif

Hope that helps,

    Andy


David Fernandez wrote:
> Hi there,
>
> Here it is again the same old problem... Seems that something is not
> quite right with the cygwin instructions, the configtool sources, or
> just myself...
>
> I've picked the eCoscentric snapshot today (01/05/2008) from the web page.
>
> I've configured wxWindows-2.4.2 with:
>
> $ /cygdrive/c/local/wxWindows-2.4.2/configure --disable-shared
> --disable-socket s --disable-protocols --disable-fs_inet
> --disable-compat22 --with-libpng --without-libjpeg --without-libtiff
> --prefix=/cygdrive/c/local
>
> at /cygdrive/c/local/build/wxWindows/2.4.2, then "make" & "make
> install". I had to add the additional switches to avoid some compile
> errors building wxWindows itself.
>
> I've configured the eCos host tools with:
>
> $ /cygdrive/c/local/ecos/host/configure --prefix=/cygdrive/c/local
>
> at /cygdrive/c/local/build/ecos/host, then "make" & "make install" them.
>
> When doing:
>
> $ make -f /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/makefile.gnu
> install WXDIR=/cygdrive/c/local ECOSSRCDIR=/cygdrive/c/local/ecos/host
> IN STALLDIR=/cygdrive/c/local
>
> at /cygdrive/c/local/build/ecos/configtool, I get this:
> ...
> c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
> -I/cygdrive/c/local/ecos/host/tools/configtool/common/common
> -I/cygdrive/c/local/ecos/host/to ols/Utils/common
> -I/cygdrive/c/local/ecos/host/tools/ecostest/common
> -DecUSE_EXPERIMENTAL_CODE=1 `/cygdrive/c/local/bin/wx-config
> --cppflags` -D_WIN32 -D__WIN32 __ -DSTRICT -D__USE_W32_SOCKETS -o
> /cygdrive/c/local/build/ecos/configtool/ecutils.o
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> In static member function `static const wxString
> ecUtils::NativeToPosixPath(const wxString&)':
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> error: `MAXPATHLEN' undeclared (first use this function)
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> error: (Each undeclared identifier is reported only once for each
> function it app ears in.)
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> In static member function `static const wxString
> ecUtils::PosixToNativePath(const wxString&)':
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:290:
> error: `MAXPATHLEN' undeclared (first use this function)
> make: *** [/cygdrive/c/local/build/ecos/configtool/ecutils.o] Error 1
>
> What could possibly be wrong this time?
>
> Cheers
> David Fernandez
>
>   

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [ECOS] Problems building configtool for Cygwin (again)
  2008-05-01 14:14 ` Andy Jackson
@ 2008-05-01 14:38   ` David Fernandez
       [not found]     ` <4819DA55.4070404@xylanta.com>
  2008-05-01 18:55     ` [ECOS] " Grant Edwards
  0 siblings, 2 replies; 7+ messages in thread
From: David Fernandez @ 2008-05-01 14:38 UTC (permalink / raw)
  To: ecos-discuss; +Cc: andy

I think this list doesn't want toppost... find my answer at the end

On 5/1/08, Andy Jackson <andy@xylanta.com> wrote:
> Hello David,
>
> I loose track, but I think the fix to this one is to change the include at
> the top of ecutils.cpp to something like this:
>
> #ifdef __CYGWIN__
> #ifdef ORIGINAL_CODE
> #include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
> #else
> #include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
> #include <sys/param.h> // For MAXPATHLEN
> #endif
> #endif
>
> Hope that helps,
>
>   Andy
>
>
>
> David Fernandez wrote:
> > Hi there,
> >
> > Here it is again the same old problem... Seems that something is not
> > quite right with the cygwin instructions, the configtool sources, or
> > just myself...
> >
> > I've picked the eCoscentric snapshot today (01/05/2008) from the web page.
> >
> > I've configured wxWindows-2.4.2 with:
> >
> > $ /cygdrive/c/local/wxWindows-2.4.2/configure
> --disable-shared
> > --disable-socket s --disable-protocols --disable-fs_inet
> > --disable-compat22 --with-libpng --without-libjpeg --without-libtiff
> > --prefix=/cygdrive/c/local
> >
> > at /cygdrive/c/local/build/wxWindows/2.4.2, then "make" &
> "make
> > install". I had to add the additional switches to avoid some compile
> > errors building wxWindows itself.
> >
> > I've configured the eCos host tools with:
> >
> > $ /cygdrive/c/local/ecos/host/configure
> --prefix=/cygdrive/c/local
> >
> > at /cygdrive/c/local/build/ecos/host, then "make" & "make
> install" them.
> >
> > When doing:
> >
> > $ make -f
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/makefile.gnu
> > install WXDIR=/cygdrive/c/local
> ECOSSRCDIR=/cygdrive/c/local/ecos/host
> > IN STALLDIR=/cygdrive/c/local
> >
> > at /cygdrive/c/local/build/ecos/configtool, I get this:
> > ...
> > c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
> >
> -I/cygdrive/c/local/ecos/host/tools/configtool/common/common
> > -I/cygdrive/c/local/ecos/host/to ols/Utils/common
> > -I/cygdrive/c/local/ecos/host/tools/ecostest/common
> > -DecUSE_EXPERIMENTAL_CODE=1
> `/cygdrive/c/local/bin/wx-config
> > --cppflags` -D_WIN32 -D__WIN32 __ -DSTRICT -D__USE_W32_SOCKETS -o
> > /cygdrive/c/local/build/ecos/configtool/ecutils.o
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> > In static member function `static const wxString
> > ecUtils::NativeToPosixPath(const wxString&)':
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> > error: `MAXPATHLEN' undeclared (first use this function)
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> > error: (Each undeclared identifier is reported only once for each
> > function it app ears in.)
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> > In static member function `static const wxString
> > ecUtils::PosixToNativePath(const wxString&)':
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:290:
> > error: `MAXPATHLEN' undeclared (first use this function)
> > make: ***
> [/cygdrive/c/local/build/ecos/configtool/ecutils.o] Error 1
> >
> > What could possibly be wrong this time?
> >
> > Cheers
> > David Fernandez
> >
> >
> >
>

Now I get:

c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
-I/cygdrive/c/local/ecos/host/tools/configtool/common/common
-I/cygdrive/c/local/ecos/host/tools/Utils/common
-I/cygdrive/c/local/ecos/host/tools/ecostest/common
-DecUSE_EXPERIMENTAL_CODE=1 `/cygdrive/c/local/bin/wx-config
--cppflags` -D_WIN32 -D__WIN32__ -DSTRICT -D__USE_W32_SOCKETS -o
/cygdrive/c/local/build/ecos/configtool/folderdlg.o
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp:
In member function `void
ecFolderDialog::OnInitDialog(wxInitDialogEvent&)':
/cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp:106:
 error: 'class wxComboBox' has no member named 'Number'
make: *** [/cygdrive/c/local/build/ecos/configtool/folderdlg.o] Error 1

I thought this thing was stable, specially after what was mentioned in
the ecoscentric page about the cygwin bug fixed... I even was able to
build it some time ago!... I guess either this get broken quite easily
or there is something more fundamental I'm doing wrong.

Cheers

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [ECOS] Problems building configtool for Cygwin (again)
       [not found]     ` <4819DA55.4070404@xylanta.com>
@ 2008-05-01 16:32       ` David Fernandez
  0 siblings, 0 replies; 7+ messages in thread
From: David Fernandez @ 2008-05-01 16:32 UTC (permalink / raw)
  To: ecos-discuss; +Cc: andy

I tried with 2.6, but I got even more worrying things like the last
one I've just shown...

Is ithere any desync among ecoscentric snapshots and the anoncvs? I've
been using ecoscentric snapshots by now, but may be I'll try the cvs
this weekend (can't do at work due to proxy :-( )

Cheers

On 5/1/08, Andy Jackson <andy@xylanta.com> wrote:
> If you are building using wxWidgets-2.4.2, then it used to compile and I
> don't see why that should of changed in this particular instance.
>
> The latest CVS version should build with wxWidgets-2.6.2 and you might be
> better off using that?
>
> Sorry I can't be more help.
>
>
> David Fernandez wrote:
> > I think this list doesn't want toppost... find my answer at the end
> >
> > On 5/1/08, Andy Jackson <andy@xylanta.com> wrote:
> >
> >
> > > Hello David,
> > >
> > > I loose track, but I think the fix to this one is to change the include
> at
> > > the top of ecutils.cpp to something like this:
> > >
> > > #ifdef __CYGWIN__
> > > #ifdef ORIGINAL_CODE
> > > #include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
> > > #else
> > > #include <sys/cygwin.h> /* for cygwin_conv_to_*_path() */
> > > #include <sys/param.h> // For MAXPATHLEN
> > > #endif
> > > #endif
> > >
> > > Hope that helps,
> > >
> > >  Andy
> > >
> > >
> > >
> > > David Fernandez wrote:
> > >
> > >
> > > > Hi there,
> > > >
> > > > Here it is again the same old problem... Seems that something is not
> > > > quite right with the cygwin instructions, the configtool sources, or
> > > > just myself...
> > > >
> > > > I've picked the eCoscentric snapshot today (01/05/2008) from the web
> page.
> > > >
> > > > I've configured wxWindows-2.4.2 with:
> > > >
> > > > $ /cygdrive/c/local/wxWindows-2.4.2/configure
> > > >
> > > >
> > > --disable-shared
> > >
> > >
> > > > --disable-socket s --disable-protocols --disable-fs_inet
> > > > --disable-compat22 --with-libpng --without-libjpeg --without-libtiff
> > > > --prefix=/cygdrive/c/local
> > > >
> > > > at /cygdrive/c/local/build/wxWindows/2.4.2, then
> "make" &
> > > >
> > > >
> > > "make
> > >
> > >
> > > > install". I had to add the additional switches to avoid some compile
> > > > errors building wxWindows itself.
> > > >
> > > > I've configured the eCos host tools with:
> > > >
> > > > $ /cygdrive/c/local/ecos/host/configure
> > > >
> > > >
> > > --prefix=/cygdrive/c/local
> > >
> > >
> > > > at /cygdrive/c/local/build/ecos/host, then "make" &
> "make
> > > >
> > > >
> > > install" them.
> > >
> > >
> > > > When doing:
> > > >
> > > > $ make -f
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/makefile.gnu
> > >
> > >
> > > > install WXDIR=/cygdrive/c/local
> > > >
> > > >
> > > ECOSSRCDIR=/cygdrive/c/local/ecos/host
> > >
> > >
> > > > IN STALLDIR=/cygdrive/c/local
> > > >
> > > > at /cygdrive/c/local/build/ecos/configtool, I get
> this:
> > > > ...
> > > > c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
> > > >
> > > >
> > > >
> > >
> -I/cygdrive/c/local/ecos/host/tools/configtool/common/common
> > >
> > >
> > > > -I/cygdrive/c/local/ecos/host/to ols/Utils/common
> > > > -I/cygdrive/c/local/ecos/host/tools/ecostest/common
> > > > -DecUSE_EXPERIMENTAL_CODE=1
> > > >
> > > >
> > > `/cygdrive/c/local/bin/wx-config
> > >
> > >
> > > > --cppflags` -D_WIN32 -D__WIN32 __ -DSTRICT -D__USE_W32_SOCKETS -o
> > > > /cygdrive/c/local/build/ecos/configtool/ecutils.o
> > > >
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> > >
> > >
> > > > In static member function `static const wxString
> > > > ecUtils::NativeToPosixPath(const wxString&)':
> > > >
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> > >
> > >
> > > > error: `MAXPATHLEN' undeclared (first use this function)
> > > >
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> > >
> > >
> > > > error: (Each undeclared identifier is reported only once for each
> > > > function it app ears in.)
> > > >
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:
> > >
> > >
> > > > In static member function `static const wxString
> > > > ecUtils::PosixToNativePath(const wxString&)':
> > > >
> > > >
> > > >
> > >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:290:
> > >
> > >
> > > > error: `MAXPATHLEN' undeclared (first use this function)
> > > > make: ***
> > > >
> > > >
> > > [/cygdrive/c/local/build/ecos/configtool/ecutils.o]
> Error 1
> > >
> > >
> > > > What could possibly be wrong this time?
> > > >
> > > > Cheers
> > > > David Fernandez
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> >
> > Now I get:
> >
> > c++ -O2 -c -ITCLDIR_use_system/include -I/cygdrive/c/local/include
> >
> -I/cygdrive/c/local/ecos/host/tools/configtool/common/common
> > -I/cygdrive/c/local/ecos/host/tools/Utils/common
> > -I/cygdrive/c/local/ecos/host/tools/ecostest/common
> > -DecUSE_EXPERIMENTAL_CODE=1
> `/cygdrive/c/local/bin/wx-config
> > --cppflags` -D_WIN32 -D__WIN32__ -DSTRICT -D__USE_W32_SOCKETS -o
> > /cygdrive/c/local/build/ecos/configtool/folderdlg.o
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp:
> > In member function `void
> > ecFolderDialog::OnInitDialog(wxInitDialogEvent&)':
> >
> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/folderdlg.cpp:106:
> >  error: 'class wxComboBox' has no member named 'Number'
> > make: ***
> [/cygdrive/c/local/build/ecos/configtool/folderdlg.o] Error
> 1
> >
> > I thought this thing was stable, specially after what was mentioned in
> > the ecoscentric page about the cygwin bug fixed... I even was able to
> > build it some time ago!... I guess either this get broken quite easily
> > or there is something more fundamental I'm doing wrong.
> >
> > Cheers
> >
> >
> >
> >
>

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [ECOS] Re: Problems building configtool for Cygwin (again)
  2008-05-01 13:47 [ECOS] Problems building configtool for Cygwin (again) David Fernandez
  2008-05-01 14:14 ` Andy Jackson
@ 2008-05-01 17:59 ` John Dallaway
  2008-05-02  7:44   ` David Fernandez
  1 sibling, 1 reply; 7+ messages in thread
From: John Dallaway @ 2008-05-01 17:59 UTC (permalink / raw)
  To: David Fernandez; +Cc: ecos-discuss

Hi David

David Fernandez wrote:

> /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> error: `MAXPATHLEN' undeclared (first use this function)

This is explained by the following post:

  http://www.cygwin.com/ml/newlib/2007/msg01121.html

Cygwin is a moving target. I will fix the resulting configtool build issue.

John Dallaway
eCosCentric Limited

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [ECOS]  Re: Problems building configtool for Cygwin (again)
  2008-05-01 14:38   ` David Fernandez
       [not found]     ` <4819DA55.4070404@xylanta.com>
@ 2008-05-01 18:55     ` Grant Edwards
  1 sibling, 0 replies; 7+ messages in thread
From: Grant Edwards @ 2008-05-01 18:55 UTC (permalink / raw)
  To: ecos-discuss

On 2008-05-01, David Fernandez <david.fernandez.work@googlemail.com> wrote:

> I thought this thing was stable, specially after what was
> mentioned in the ecoscentric page about the cygwin bug
> fixed...

In my experience, nothing running on top of Cygwin is stable.
IMO, it's a major engineering triumph (or perhaps a minor
miracle) that Cygwin works as well as it does. Expecting
stability for anything complex is probably futile.

> I even was able to build it some time ago!... I guess either
> this get broken quite easily

That's a property of Windows/Cygwin

> or there is something more fundamental I'm doing wrong.

Aside from trying to run Unix apps on Windows? ;)

If you want stability, the sure bet is using ecosconfig instead
of configtool and Linux instead of Windows.  Not the answer you
wanted, but...

-- 
Grant Edwards                   grante             Yow! Loni Anderson's hair
                                  at               should be LEGALIZED!!
                               visi.com            


-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [ECOS] Re: Problems building configtool for Cygwin (again)
  2008-05-01 17:59 ` John Dallaway
@ 2008-05-02  7:44   ` David Fernandez
  0 siblings, 0 replies; 7+ messages in thread
From: David Fernandez @ 2008-05-02  7:44 UTC (permalink / raw)
  To: ecos-discuss; +Cc: John Dallaway

On 5/1/08, John Dallaway <jld@ecoscentric.com> wrote:
> Hi David
>
> David Fernandez wrote:
>
> > /cygdrive/c/local/ecos/host/tools/configtool/standalone/wxwin/ecutils.cpp:273:
> > error: `MAXPATHLEN' undeclared (first use this function)
>
> This is explained by the following post:
>
>  http://www.cygwin.com/ml/newlib/2007/msg01121.html
>
> Cygwin is a moving target. I will fix the resulting configtool build issue.
>
> John Dallaway
> eCosCentric Limited
>

Hi mate,

What you mentioned makes sense, and either, the code suggested there
or the one suggested by Andy cures the problem.

But then I get this nonexistent members (see bottom of my last
e-mail), and that seems as if either, the wxWidgets version I'm using
is wrong (at least the cygwin port of it). I got many of this last
when I tried to use wxWidgets-2.6 and 2.8, uninstalled, and using 2.4
now, but it still complains of similar things...

Any Idea? Anything you want me to send for diagnosis?

Cheers

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-05-02  7:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-01 13:47 [ECOS] Problems building configtool for Cygwin (again) David Fernandez
2008-05-01 14:14 ` Andy Jackson
2008-05-01 14:38   ` David Fernandez
     [not found]     ` <4819DA55.4070404@xylanta.com>
2008-05-01 16:32       ` David Fernandez
2008-05-01 18:55     ` [ECOS] " Grant Edwards
2008-05-01 17:59 ` John Dallaway
2008-05-02  7:44   ` David Fernandez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).