public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* FYI: GNU Smalltalk 2.1.5 on Cygwin
@ 2004-05-19 11:31 tuin01
  2004-05-19 19:15 ` Igor Pechtchanski
  0 siblings, 1 reply; 10+ messages in thread
From: tuin01 @ 2004-05-19 11:31 UTC (permalink / raw)
  To: cygwin

Concerning Cygwin dll: 1.5.9 (Complete install may 16, 2004)
GNU Smalltalk version 2.1.5
Windows XP (v 5.1) Professional SP1.

In directory where I've unpacked the smalltalk source package. 
./configure

changed following files.
1.  smalltalk-2.1.5/i18n/i18n.c
        - added  #include <windows.h>
2. libgst/Makefile
        changed  -lgmp to /lib/libgmp.la in these lines

libgst_la_LIBADD=libgst_la_LIBADD = $(top_builddir)/lib-src/library.la 
$(LIBSIGSEGV) \
        ${top_builddir}/libltdl/libltdlc.la 
${top_builddir}/snprintfv/snprintfv/libsnprintfvc.la -lreadline 
/lib/libgmp.la

libgst_la_DEPENDENCIES = $(top_builddir)/lib-src/library.la $(LIBSIGSEGV) 
\
        ${top_builddir}/libltdl/libltdlc.la 
${top_builddir}/snprintfv/snprintfv/libsnprintfvc.la -lreadline 
/lib/libgmp.la

ran
make
make install

gst must be up and running.

Patrick.

I'll try and get 2.1.7 running, but has problem finding Glibc which is not 
available on cygwin. 

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 11:31 FYI: GNU Smalltalk 2.1.5 on Cygwin tuin01
@ 2004-05-19 19:15 ` Igor Pechtchanski
  2004-05-19 19:34   ` tuin01
  2004-05-21 14:29   ` Gerrit P. Haase
  0 siblings, 2 replies; 10+ messages in thread
From: Igor Pechtchanski @ 2004-05-19 19:15 UTC (permalink / raw)
  To: tuin01; +Cc: cygwin

On Wed, 19 May 2004, tuin01 wrote:

> Concerning Cygwin dll: 1.5.9 (Complete install may 16, 2004)
> GNU Smalltalk version 2.1.5
> Windows XP (v 5.1) Professional SP1.
>
> In directory where I've unpacked the smalltalk source package.
> ./configure
>
> changed following files.
> 1.  smalltalk-2.1.5/i18n/i18n.c
>         - added  #include <windows.h>

I'm assuming this was for some typedefs or macros.  If they are standard
POSIX ones that are present in the Linux headers but missing in the Cygwin
ones, it'd be interesting to know.

> 2. libgst/Makefile
>         changed  -lgmp to /lib/libgmp.la in these lines
>
> libgst_la_LIBADD=libgst_la_LIBADD = $(top_builddir)/lib-src/library.la $(LIBSIGSEGV) \
>         ${top_builddir}/libltdl/libltdlc.la ${top_builddir}/snprintfv/snprintfv/libsnprintfvc.la -lreadline /lib/libgmp.la
>
> libgst_la_DEPENDENCIES = $(top_builddir)/lib-src/library.la $(LIBSIGSEGV) \
>         ${top_builddir}/libltdl/libltdlc.la ${top_builddir}/snprintfv/snprintfv/libsnprintfvc.la -lreadline /lib/libgmp.la

This should not be needed...  What was the error that prompted this
change?
	Igor

> ran
> make
> make install
>
> gst must be up and running.
>
> Patrick.
>
> I'll try and get 2.1.7 running, but has problem finding Glibc which is not
> available on cygwin.

-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski, Ph.D.
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"I have since come to realize that being between your mentor and his route
to the bathroom is a major career booster."  -- Patrick Naughton

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 19:15 ` Igor Pechtchanski
@ 2004-05-19 19:34   ` tuin01
  2004-05-19 19:54     ` Brian Ford
  2004-05-21 14:29   ` Gerrit P. Haase
  1 sibling, 1 reply; 10+ messages in thread
From: tuin01 @ 2004-05-19 19:34 UTC (permalink / raw)
  To: cygwin

> > changed following files.
> > 1.  smalltalk-2.1.5/i18n/i18n.c
> >         - added  #include <windows.h>
> 
> I'm assuming this was for some typedefs or macros.  If they are standard
> POSIX ones that are present in the Linux headers but missing in the 
Cygwin
> ones, it'd be interesting to know.
> 

This were indeed some typedefs/macros. don't know exactly, but it were 
LANG_XXXX typedefs, mainly because the macro MAKELANGID was not available.

> > 2. libgst/Makefile
> >         changed  -lgmp to /lib/libgmp.la in these lines
> >
> > libgst_la_LIBADD=libgst_la_LIBADD = $(top_builddir)/lib-
> src/library.la $(LIBSIGSEGV) \
> >         ${top_builddir}/libltdl/libltdlc.la ${top_builddir}
> /snprintfv/snprintfv/libsnprintfvc.la -lreadline /lib/libgmp.la
> >
> > libgst_la_DEPENDENCIES = $(top_builddir)/lib-src/library.la 
$(LIBSIGSEGV) \
> >         ${top_builddir}/libltdl/libltdlc.la ${top_builddir}
> /snprintfv/snprintfv/libsnprintfvc.la -lreadline /lib/libgmp.la
> 
> This should not be needed...  What was the error that prompted this
> change?
>    Igor
> 
this happened, because make quit on the error "no rule to make target 
-lgmp", so maybe the gmp library from cygwin is out of date.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 19:34   ` tuin01
@ 2004-05-19 19:54     ` Brian Ford
  2004-05-19 19:58       ` tuin01
  0 siblings, 1 reply; 10+ messages in thread
From: Brian Ford @ 2004-05-19 19:54 UTC (permalink / raw)
  To: tuin01; +Cc: cygwin

On Wed, 19 May 2004, tuin01 wrote:

> > > libgst_la_DEPENDENCIES = $(top_builddir)/lib-src/library.la
> $(LIBSIGSEGV) \
> > >         ${top_builddir}/libltdl/libltdlc.la ${top_builddir}
> > /snprintfv/snprintfv/libsnprintfvc.la -lreadline /lib/libgmp.la
> >
> > This should not be needed...  What was the error that prompted this
> > change?
> >    Igor
> >
> this happened, because make quit on the error "no rule to make target
> -lgmp", so maybe the gmp library from cygwin is out of date.

No, AFAIK, -lsomelib should never be in an automake _DEPENDENCIES target.
That's a Makefile.am bug in GNU Smalltalk.  Removing it from there should have
been all that was required.

-- 
Brian Ford
Senior Realtime Software Engineer
VITAL - Visual Simulation Systems
FlightSafety International
the best safety device in any aircraft is a well-trained pilot...

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 19:54     ` Brian Ford
@ 2004-05-19 19:58       ` tuin01
  2004-05-21 11:02         ` Gerrit P. Haase
  0 siblings, 1 reply; 10+ messages in thread
From: tuin01 @ 2004-05-19 19:58 UTC (permalink / raw)
  To: cygwin

Brian Ford <ford@vss.fsi.com> wrote on 19-05-2004 21:34:37:

> 
> No, AFAIK, -lsomelib should never be in an automake _DEPENDENCIES 
target.
> That's a Makefile.am bug in GNU Smalltalk.  Removing it from there 
should have
> been all that was required.
> 

You're absolutely right I tried again without the /lib/libgst.la line and 
it works like a charm. I'm no make expert and I was a bit afraid I took 
away to much if I deleted it there's also a -lreadline in the 
dependencies. I'll try and find out how the Makefile.am should be changed 
to avoid this in later builds, I'm 99% sure it's still there in 2.1.7

patrick

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 19:58       ` tuin01
@ 2004-05-21 11:02         ` Gerrit P. Haase
  0 siblings, 0 replies; 10+ messages in thread
From: Gerrit P. Haase @ 2004-05-21 11:02 UTC (permalink / raw)
  To: tuin01; +Cc: cygwin

tuin01 wrote:

> Brian Ford <ford@vss.fsi.com> wrote on 19-05-2004 21:34:37:

>> 
>> No, AFAIK, -lsomelib should never be in an automake _DEPENDENCIES 
> target.
>> That's a Makefile.am bug in GNU Smalltalk.  Removing it from there 
> should have
>> been all that was required.
>> 

> You're absolutely right I tried again without the /lib/libgst.la line and
> it works like a charm. I'm no make expert and I was a bit afraid I took
> away to much if I deleted it there's also a -lreadline in the 
> dependencies. I'll try and find out how the Makefile.am should be changed
> to avoid this in later builds, I'm 99% sure it's still there in 2.1.7

Have you or someone else actually tried to compile 2.1.7?
I have problems with the snprintfv directory, getting this error:

if sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv -I..  -I/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv    -O2 -MT libsnprintfvc_la-format.lo -MD -MP -MF ".deps/libsnprintfvc_la-format.Tpo" -c -o libsnprintfvc_la-format.lo `test -f 'format.c' || echo '/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/'`format.c; \
then mv -f ".deps/libsnprintfvc_la-format.Tpo" ".deps/libsnprintfvc_la-format.Plo"; else rm -f ".deps/libsnprintfvc_la-format.Tpo"; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv -I.. -I/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv -O2 -MT libsnprintfvc_la-format.lo -MD -MP -MF .deps/libsnprintfvc_la-format.Tpo -c /p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c  -DPIC -o .libs/libsnprintfvc_la-format.o
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c: In function `copysignl':
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:85: error: storage class specified for parameter `fetch_uintmax'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:85: error: syntax error before '{' token
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:187: error: parameter `gformat' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:191: error: syntax error before "prec"
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:499: error: parameter `found' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:500: error: parameter `position' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:500: error: parameter `skipped_args' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:503: error: syntax error before '(' token
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:703: error: parameter `ch' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:705: error: syntax error before '(' token
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:752: error: parameter `count_or_errorcode' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:754: error: parameter `p' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:754: error: redeclaration of `p'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:185: error: `p' previously declared here
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:759: error: syntax error before '(' token
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:843: error: storage class specified for parameter `digits_upper'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:843: error: parameter `digits_upper' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:846: error: parameter `base' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:846: error: `pinfo' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:846: error: (Each undeclared identifier is reported only once
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:846: error: for each function it appears in.)
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:847: error: parameter `value' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:847: error: conflicting types for `value'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:501: error: previous declaration of `value'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:848: error: parameter `count_or_errorcode' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:848: error: redeclaration of `count_or_errorcode'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:752: error: `count_or_errorcode' previously declared here
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:849: error: redeclaration of `buffer'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:754: error: `buffer' previously declared here
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:849: error: redeclaration of `p'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:754: error: `p' previously declared here
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:850: error: parameter `is_negative' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:852: error: syntax error before '(' token
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:1037: error: parameter `p' is initialized
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:1037: error: conflicting types for `p'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:849: error: previous declaration of `p'
/p/instsoft/smalltalk/smalltalk-2.1.7/snprintfv/snprintfv/format.c:1039: error: syntax error before '(' token
make[5]: *** [libsnprintfvc_la-format.lo] Error 1
make[5]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/snprintfv/snprintfv'
make[4]: *** [all] Error 2
make[4]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/snprintfv/snprintfv'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/snprintfv'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/snprintfv'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build'
make: *** [all] Error 2


Gerrit
-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-19 19:15 ` Igor Pechtchanski
  2004-05-19 19:34   ` tuin01
@ 2004-05-21 14:29   ` Gerrit P. Haase
  2004-05-21 14:59     ` Gerrit P. Haase
  1 sibling, 1 reply; 10+ messages in thread
From: Gerrit P. Haase @ 2004-05-21 14:29 UTC (permalink / raw)
  To: Igor Pechtchanski; +Cc: cygwin

Igor wrote:

> On Wed, 19 May 2004, tuin01 wrote:

>> Concerning Cygwin dll: 1.5.9 (Complete install may 16, 2004)
>> GNU Smalltalk version 2.1.5
>> Windows XP (v 5.1) Professional SP1.
>>
>> In directory where I've unpacked the smalltalk source package.
>> ./configure
>>
>> changed following files.
>> 1.  smalltalk-2.1.5/i18n/i18n.c
>>         - added  #include <windows.h>

> I'm assuming this was for some typedefs or macros.  If they are standard
> POSIX ones that are present in the Linux headers but missing in the Cygwin
> ones, it'd be interesting to know.

make[2]: Entering directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/i18n'
if sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I/p/instsoft/smalltalk/smalltalk-2.1.7/i18n -I.. -I/p/instsoft/smalltalk/smalltalk-2.1.7 -I/p/instsoft/smalltalk/smalltalk-2.1.7/libgst -I/p/instsoft/smalltalk/smalltalk-2.1.7/lib-src -DLOCALEDIR="\"/usr/share/locale\"" -DLIBDIR="\"/usr/lib\""   -O2 -Wall -fstrict-aliasing -fno-gcse -Wno-strict-aliasing -Wno-switch -Wno-format -Wno-parentheses -Wpointer-arith  -MT i18n.lo -MD -MP -MF ".deps/i18n.Tpo" -c -o i18n.lo /p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c; \
then mv -f ".deps/i18n.Tpo" ".deps/i18n.Plo"; else rm -f ".deps/i18n.Tpo"; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I/p/instsoft/smalltalk/smalltalk-2.1.7/i18n -I.. -I/p/instsoft/smalltalk/smalltalk-2.1.7 -I/p/instsoft/smalltalk/smalltalk-2.1.7/libgst -I/p/instsoft/smalltalk/smalltalk-2.1.7/lib-src -DLOCALEDIR=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" -O2 -Wall -fstrict-aliasing -fno-gcse -Wno-strict-aliasing -Wno-switch -Wno-format -Wno-parentheses -Wpointer-arith -MT i18n.lo -MD -MP -MF .deps/i18n.Tpo -c /p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c  -DPIC -o .libs/i18n.o
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c: In function `iconvWrapper':
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:267: warning: passing arg 2 of `libiconv' from incompatible pointer type
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c: In function `gst_initModule':
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: warning: implicit declaration of function `MAKELANGID'
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: `LANG_NEUTRAL' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: (Each undeclared identifier is reported only once
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: for each function it appears in.)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: `SUBLANG_NEUTRAL' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: (near initialization for `langids[0].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:291: error: (near initialization for `langids[0]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: `LANG_CHINESE' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: `SUBLANG_CHINESE_SIMPLIFIED' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: (near initialization for `langids[1].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:292: error: (near initialization for `langids[1]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:293: error: `SUBLANG_CHINESE_TRADITIONAL' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:293: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:293: error: (near initialization for `langids[2].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:293: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:293: error: (near initialization for `langids[2]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:294: error: `LANG_CZECH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:294: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:294: error: (near initialization for `langids[3].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:294: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:294: error: (near initialization for `langids[3]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:295: error: `LANG_DANISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:295: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:295: error: (near initialization for `langids[4].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:295: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:295: error: (near initialization for `langids[4]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: `LANG_DUTCH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: `SUBLANG_DUTCH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: (near initialization for `langids[5].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:296: error: (near initialization for `langids[5]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:297: error: `SUBLANG_DUTCH_BELGIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:297: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:297: error: (near initialization for `langids[6].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:297: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:297: error: (near initialization for `langids[6]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: `LANG_ENGLISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: `SUBLANG_ENGLISH_US' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: (near initialization for `langids[7].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:298: error: (near initialization for `langids[7]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:299: error: `SUBLANG_ENGLISH_UK' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:299: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:299: error: (near initialization for `langids[8].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:299: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:299: error: (near initialization for `langids[8]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:300: error: `SUBLANG_ENGLISH_AUS' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:300: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:300: error: (near initialization for `langids[9].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:300: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:300: error: (near initialization for `langids[9]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:301: error: `SUBLANG_ENGLISH_CAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:301: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:301: error: (near initialization for `langids[10].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:301: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:301: error: (near initialization for `langids[10]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:302: error: `SUBLANG_ENGLISH_NZ' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:302: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:302: error: (near initialization for `langids[11].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:302: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:302: error: (near initialization for `langids[11]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:303: error: `LANG_FINNISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:303: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:303: error: (near initialization for `langids[12].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:303: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:303: error: (near initialization for `langids[12]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: `LANG_FRENCH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: `SUBLANG_FRENCH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: (near initialization for `langids[13].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:304: error: (near initialization for `langids[13]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:305: error: `SUBLANG_FRENCH_BELGIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:305: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:305: error: (near initialization for `langids[14].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:305: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:305: error: (near initialization for `langids[14]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:306: error: `SUBLANG_FRENCH_CANADIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:306: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:306: error: (near initialization for `langids[15].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:306: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:306: error: (near initialization for `langids[15]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:307: error: `SUBLANG_FRENCH_SWISS' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:307: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:307: error: (near initialization for `langids[16].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:307: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:307: error: (near initialization for `langids[16]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: `LANG_GERMAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: `SUBLANG_GERMAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: (near initialization for `langids[17].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:308: error: (near initialization for `langids[17]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:309: error: `SUBLANG_GERMAN_SWISS' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:309: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:309: error: (near initialization for `langids[18].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:309: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:309: error: (near initialization for `langids[18]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:310: error: `SUBLANG_GERMAN_AUSTRIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:310: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:310: error: (near initialization for `langids[19].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:310: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:310: error: (near initialization for `langids[19]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:311: error: `LANG_GREEK' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:311: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:311: error: (near initialization for `langids[20].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:311: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:311: error: (near initialization for `langids[20]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:312: error: `LANG_HUNGARIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:312: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:312: error: (near initialization for `langids[21].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:312: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:312: error: (near initialization for `langids[21]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:313: error: `LANG_ICELANDIC' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:313: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:313: error: (near initialization for `langids[22].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:313: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:313: error: (near initialization for `langids[22]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: `LANG_ITALIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: `SUBLANG_ITALIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: (near initialization for `langids[23].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:314: error: (near initialization for `langids[23]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:315: error: `SUBLANG_ITALIAN_SWISS' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:315: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:315: error: (near initialization for `langids[24].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:315: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:315: error: (near initialization for `langids[24]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:316: error: `LANG_JAPANESE' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:316: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:316: error: (near initialization for `langids[25].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:316: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:316: error: (near initialization for `langids[25]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:317: error: `LANG_KOREAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:317: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:317: error: (near initialization for `langids[26].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:317: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:317: error: (near initialization for `langids[26]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: `LANG_NORWEGIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: `SUBLANG_NORWEGIAN_BOKMAL' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: (near initialization for `langids[27].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:318: error: (near initialization for `langids[27]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:319: error: `SUBLANG_NORWEGIAN_NYNORSK' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:319: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:319: error: (near initialization for `langids[28].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:319: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:319: error: (near initialization for `langids[28]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:320: error: `LANG_POLISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:320: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:320: error: (near initialization for `langids[29].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:320: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:320: error: (near initialization for `langids[29]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: `LANG_PORTUGUESE' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: `SUBLANG_PORTUGUESE' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: (near initialization for `langids[30].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:321: error: (near initialization for `langids[30]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:322: error: `SUBLANG_PORTUGUESE_BRAZILIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:322: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:322: error: (near initialization for `langids[31].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:322: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:322: error: (near initialization for `langids[31]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:323: error: `LANG_RUSSIAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:323: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:323: error: (near initialization for `langids[32].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:323: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:323: error: (near initialization for `langids[32]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:324: error: `LANG_SLOVAK' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:324: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:324: error: (near initialization for `langids[33].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:324: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:324: error: (near initialization for `langids[33]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: `LANG_SPANISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: `SUBLANG_SPANISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: (near initialization for `langids[34].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:325: error: (near initialization for `langids[34]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:326: error: `SUBLANG_SPANISH_MEXICAN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:326: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:326: error: (near initialization for `langids[35].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:326: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:326: error: (near initialization for `langids[35]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:327: error: `SUBLANG_SPANISH_MODERN' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:327: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:327: error: (near initialization for `langids[36].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:327: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:327: error: (near initialization for `langids[36]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:328: error: `LANG_SWEDISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:328: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:328: error: (near initialization for `langids[37].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:328: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:328: error: (near initialization for `langids[37]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:329: error: `LANG_TURKISH' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:329: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:329: error: (near initialization for `langids[38].langid')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:329: error: initializer element is not constant
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:329: error: (near initialization for `langids[38]')
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:333: error: `LCID' undeclared (first use in this function)
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:333: error: syntax error before "lcid"
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:334: warning: implicit declaration of function `LANGIDFROMLCID'
/p/instsoft/smalltalk/smalltalk-2.1.7/i18n/i18n.c:334: error: `lcid' undeclared (first use in this function)
make[2]: *** [i18n.lo] Error 1
make[2]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build/i18n'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/p/instsoft/smalltalk/smalltalk-2.1.7/.build'
make: *** [all] Error 2

-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
  2004-05-21 14:29   ` Gerrit P. Haase
@ 2004-05-21 14:59     ` Gerrit P. Haase
  2004-05-27 14:24       ` GNU Smalltalk 2.1.7 (was: Re: FYI: GNU Smalltalk 2.1.5 on Cygwin) Gerrit P. Haase
  0 siblings, 1 reply; 10+ messages in thread
From: Gerrit P. Haase @ 2004-05-21 14:59 UTC (permalink / raw)
  To: cygwin; +Cc: Igor Pechtchanski

Gerrit wrote:

> Igor wrote:

>> On Wed, 19 May 2004, tuin01 wrote:

>>> Concerning Cygwin dll: 1.5.9 (Complete install may 16, 2004)
>>> GNU Smalltalk version 2.1.5
>>> Windows XP (v 5.1) Professional SP1.
>>>
>>> In directory where I've unpacked the smalltalk source package.
>>> ./configure
>>>
>>> changed following files.
>>> 1.  smalltalk-2.1.5/i18n/i18n.c
>>>         - added  #include <windows.h>

>> I'm assuming this was for some typedefs or macros.  If they are standard
>> POSIX ones that are present in the Linux headers but missing in the Cygwin
>> ones, it'd be interesting to know.

I wonder why they define WIN32 if platform is Cygwin.  I try to remove
this and build without windows.h dependency and WIN32 defines.


Gerrit
-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* GNU Smalltalk 2.1.7 (was: Re: FYI: GNU Smalltalk 2.1.5 on Cygwin)
  2004-05-21 14:59     ` Gerrit P. Haase
@ 2004-05-27 14:24       ` Gerrit P. Haase
  0 siblings, 0 replies; 10+ messages in thread
From: Gerrit P. Haase @ 2004-05-27 14:24 UTC (permalink / raw)
  To: cygwin; +Cc: tuin01

Hi,

I have uploaded GNU smalltalk 2.1.7 for testing purposes.

http://anfaenger.de/cygwin/cygwin-1.5/smalltalk/

* This Smalltalk binary needs this GMP 4.1.3:
http://anfaenger.de/cygwin/cygwin-1.5/gmp/


Gerrit
-- 
=^..^=                                     http://nyckelpiga.de/donate.html


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: FYI: GNU Smalltalk 2.1.5 on Cygwin
       [not found] <OF6AFE3F21.73FC230B-ONC1256E9B.00393A1D-C1256E9B.00395B3E@home.nl>
@ 2004-05-21 13:38 ` Gerrit P. Haase
  0 siblings, 0 replies; 10+ messages in thread
From: Gerrit P. Haase @ 2004-05-21 13:38 UTC (permalink / raw)
  To: tuin01; +Cc: cygwin

Hi Patrick,

> "Gerrit P. Haase" <freeweb@nyckelpiga.de> wrote on 21-05-2004 11:08:54:

>> Have you or someone else actually tried to compile 2.1.7?
>> I have problems with the snprintfv directory, getting this error:

> I tried it, it's due to a missing semicolon in a forward declaration of
> copysignl in format.c

I see now, what a stupid bug.


Gerrit
-- 
=^..^=


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

end of thread, other threads:[~2004-05-27 13:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-19 11:31 FYI: GNU Smalltalk 2.1.5 on Cygwin tuin01
2004-05-19 19:15 ` Igor Pechtchanski
2004-05-19 19:34   ` tuin01
2004-05-19 19:54     ` Brian Ford
2004-05-19 19:58       ` tuin01
2004-05-21 11:02         ` Gerrit P. Haase
2004-05-21 14:29   ` Gerrit P. Haase
2004-05-21 14:59     ` Gerrit P. Haase
2004-05-27 14:24       ` GNU Smalltalk 2.1.7 (was: Re: FYI: GNU Smalltalk 2.1.5 on Cygwin) Gerrit P. Haase
     [not found] <OF6AFE3F21.73FC230B-ONC1256E9B.00393A1D-C1256E9B.00395B3E@home.nl>
2004-05-21 13:38 ` FYI: GNU Smalltalk 2.1.5 on Cygwin Gerrit P. Haase

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).