Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-29 Thread Jean-Marc Lasgouttes

 "Allan" == Allan Rae [EMAIL PROTECTED] writes:

Allan On 28 Feb 2000, Lars Gullik Bjønnes wrote:
 Allan Rae [EMAIL PROTECTED] writes:
 
 | Also, which system are you compiling on? It seems some platforms
 have a | missing fl_gc while others don't.
 
 No, it is different versions of xforms-0.89 (look at the fixlevel
 in forms.h)

Allan Then different platforms are at different revision levels ;-)
Allan It seems there must be a couple of different revision levels
Allan for Linux floating around -- as you've found yourself in your
Allan other email in this thread.

Yes, because 0.89 is not a stable release. 0.90 should be.

That's why we should wait until 0.90 before deciding that 0.88 is too
old.

JMarc



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-29 Thread Jean-Marc Lasgouttes

 "Allan" == Allan Rae [EMAIL PROTECTED] writes:

Allan On 28 Feb 2000, Lars Gullik Bjønnes wrote:
 Allan Rae [EMAIL PROTECTED] writes:
 
 | Also, which system are you compiling on? It seems some platforms
 have a | missing fl_gc while others don't.
 
 No, it is different versions of xforms-0.89 (look at the fixlevel
 in forms.h)

Allan Then different platforms are at different revision levels ;-)
Allan It seems there must be a couple of different revision levels
Allan for Linux floating around -- as you've found yourself in your
Allan other email in this thread.

Yes, because 0.89 is not a stable release. 0.90 should be.

That's why we should wait until 0.90 before deciding that 0.88 is too
old.

JMarc



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-29 Thread Jean-Marc Lasgouttes

> "Allan" == Allan Rae <[EMAIL PROTECTED]> writes:

Allan> On 28 Feb 2000, Lars Gullik Bjønnes wrote:
>> Allan Rae <[EMAIL PROTECTED]> writes:
>> 
>> | Also, which system are you compiling on? It seems some platforms
>> have a | missing fl_gc while others don't.
>> 
>> No, it is different versions of xforms-0.89 (look at the fixlevel
>> in forms.h)

Allan> Then different platforms are at different revision levels ;-)
Allan> It seems there must be a couple of different revision levels
Allan> for Linux floating around -- as you've found yourself in your
Allan> other email in this thread.

Yes, because 0.89 is not a stable release. 0.90 should be.

That's why we should wait until 0.90 before deciding that 0.88 is too
old.

JMarc



installation glitch (was: compilation/linking error (undefined reference to `fl_gc'))

2000-02-28 Thread Arcady Genkin

Allan Rae [EMAIL PROTECTED] writes:

 fl_gc is a wrapped version of X11's graphics context GC.  It's supposed to
 be in the xforms library.  I think Lars has removed our use of fl_gc in
 the latest cvs however there are still problems with 0.89.

Thanks, Allan, installing .88 Xforms took care of that. However, there
was another glitch during installation.

Somehow lib/reLyX/Makefile had "prefix = ./reLyX", which of course
caused an error during "make install". Manually changing it to
"prefix = /usr/local" took care of the problem.

FWIW, I didn't specify any options during running `configure'.

This is kinda funny, because I recently compiled LyX 1.1.4 on another
machine with xforms .89 without *any* problems.
-- 
Arcady Genkin 
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Arcady Genkin [EMAIL PROTECTED] writes:

| Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
| 
| screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
|int)':
| /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
| collect2: ld returned 1 exit status
| make[3]: *** [lyx] Error 1

Yes, I got this one myself this weekend when installing LyX on my
brothers machine.

Jean Marc, this fix should probably bo into fix2 if it is ever
released.

in screen.C:

- delete the line with "extern fl_gc" in it.
- replace all occurences of "fl_gc" with "fl_get_gc()"

Now recompile and everything should work.

Jean Marc, I have not verified that fl_get_gc exists in 0.88. For
1.1.5cvs none of this is needed.

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Allan Rae [EMAIL PROTECTED] writes:

| On 27 Feb 2000, Arcady Genkin wrote:
| 
|  Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
|  
|  screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
|long, int)':
|  /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
|  collect2: ld returned 1 exit status
|  make[3]: *** [lyx] Error 1
| 
| xforms-0.89 is experimental and should not be used with LyX at this time.
| Get 0.88 instead.
| 
| Also,  which system are you compiling on?  It seems some platforms have a
| missing fl_gc while others don't.

No, it is different versions of xforms-0.89 (look at the fixlevel in
forms.h)

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Jean-Marc Lasgouttes

 "Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes:

Lars Yes, I got this one myself this weekend when installing LyX on
Lars my brothers machine.

Lars Jean Marc, this fix should probably bo into fix2 if it is ever
Lars released.

It will be. I'd like also to settle the problems with bibtex in fix2.

Lars Jean Marc, I have not verified that fl_get_gc exists in 0.88.
Lars For 1.1.5cvs none of this is needed.

It does exist in 0.88.

JMarc



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Allan Rae

On 28 Feb 2000, Lars Gullik Bjønnes wrote:

 Allan Rae [EMAIL PROTECTED] writes:
 
 | Also,  which system are you compiling on?  It seems some platforms have a
 | missing fl_gc while others don't.
 
 No, it is different versions of xforms-0.89 (look at the fixlevel in
 forms.h)

Then different platforms are at different revision levels ;-)
It seems there must be a couple of different revision levels for Linux
floating around -- as you've found yourself in your other email in this
thread.

Allan. (ARRae)



installation glitch (was: compilation/linking error (undefined reference to `fl_gc'))

2000-02-28 Thread Arcady Genkin

Allan Rae [EMAIL PROTECTED] writes:

 fl_gc is a wrapped version of X11's graphics context GC.  It's supposed to
 be in the xforms library.  I think Lars has removed our use of fl_gc in
 the latest cvs however there are still problems with 0.89.

Thanks, Allan, installing .88 Xforms took care of that. However, there
was another glitch during installation.

Somehow lib/reLyX/Makefile had "prefix = ./reLyX", which of course
caused an error during "make install". Manually changing it to
"prefix = /usr/local" took care of the problem.

FWIW, I didn't specify any options during running `configure'.

This is kinda funny, because I recently compiled LyX 1.1.4 on another
machine with xforms .89 without *any* problems.
-- 
Arcady Genkin 
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Arcady Genkin [EMAIL PROTECTED] writes:

| Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
| 
| screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
|int)':
| /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
| collect2: ld returned 1 exit status
| make[3]: *** [lyx] Error 1

Yes, I got this one myself this weekend when installing LyX on my
brothers machine.

Jean Marc, this fix should probably bo into fix2 if it is ever
released.

in screen.C:

- delete the line with "extern fl_gc" in it.
- replace all occurences of "fl_gc" with "fl_get_gc()"

Now recompile and everything should work.

Jean Marc, I have not verified that fl_get_gc exists in 0.88. For
1.1.5cvs none of this is needed.

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Allan Rae [EMAIL PROTECTED] writes:

| On 27 Feb 2000, Arcady Genkin wrote:
| 
|  Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
|  
|  screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
|long, int)':
|  /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
|  /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
|  collect2: ld returned 1 exit status
|  make[3]: *** [lyx] Error 1
| 
| xforms-0.89 is experimental and should not be used with LyX at this time.
| Get 0.88 instead.
| 
| Also,  which system are you compiling on?  It seems some platforms have a
| missing fl_gc while others don't.

No, it is different versions of xforms-0.89 (look at the fixlevel in
forms.h)

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Jean-Marc Lasgouttes

 "Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes:

Lars Yes, I got this one myself this weekend when installing LyX on
Lars my brothers machine.

Lars Jean Marc, this fix should probably bo into fix2 if it is ever
Lars released.

It will be. I'd like also to settle the problems with bibtex in fix2.

Lars Jean Marc, I have not verified that fl_get_gc exists in 0.88.
Lars For 1.1.5cvs none of this is needed.

It does exist in 0.88.

JMarc



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Allan Rae

On 28 Feb 2000, Lars Gullik Bjønnes wrote:

 Allan Rae [EMAIL PROTECTED] writes:
 
 | Also,  which system are you compiling on?  It seems some platforms have a
 | missing fl_gc while others don't.
 
 No, it is different versions of xforms-0.89 (look at the fixlevel in
 forms.h)

Then different platforms are at different revision levels ;-)
It seems there must be a couple of different revision levels for Linux
floating around -- as you've found yourself in your other email in this
thread.

Allan. (ARRae)



installation glitch (was: compilation/linking error (undefined reference to `fl_gc'))

2000-02-28 Thread Arcady Genkin

Allan Rae <[EMAIL PROTECTED]> writes:

> fl_gc is a wrapped version of X11's graphics context GC.  It's supposed to
> be in the xforms library.  I think Lars has removed our use of fl_gc in
> the latest cvs however there are still problems with 0.89.

Thanks, Allan, installing .88 Xforms took care of that. However, there
was another glitch during installation.

Somehow lib/reLyX/Makefile had "prefix = ./reLyX", which of course
caused an error during "make install". Manually changing it to
"prefix = /usr/local" took care of the problem.

FWIW, I didn't specify any options during running `configure'.

This is kinda funny, because I recently compiled LyX 1.1.4 on another
machine with xforms .89 without *any* problems.
-- 
Arcady Genkin 
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Arcady Genkin <[EMAIL PROTECTED]> writes:

| Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
| 
| screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
|int)':
| /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
| /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
| collect2: ld returned 1 exit status
| make[3]: *** [lyx] Error 1

Yes, I got this one myself this weekend when installing LyX on my
brothers machine.

Jean Marc, this fix should probably bo into fix2 if it is ever
released.

in screen.C:

- delete the line with "extern fl_gc" in it.
- replace all occurences of "fl_gc" with "fl_get_gc()"

Now recompile and everything should work.

Jean Marc, I have not verified that fl_get_gc exists in 0.88. For
1.1.5cvs none of this is needed.

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Lars Gullik Bjønnes

Allan Rae <[EMAIL PROTECTED]> writes:

| On 27 Feb 2000, Arcady Genkin wrote:
| 
| > Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
| > 
| > screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
|long, int)':
| > /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
| > /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
| > /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
| > /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
| > collect2: ld returned 1 exit status
| > make[3]: *** [lyx] Error 1
| 
| xforms-0.89 is experimental and should not be used with LyX at this time.
| Get 0.88 instead.
| 
| Also,  which system are you compiling on?  It seems some platforms have a
| missing fl_gc while others don't.

No, it is different versions of xforms-0.89 (look at the fixlevel in
forms.h)

Lgb



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Jean-Marc Lasgouttes

> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:

Lars> Yes, I got this one myself this weekend when installing LyX on
Lars> my brothers machine.

Lars> Jean Marc, this fix should probably bo into fix2 if it is ever
Lars> released.

It will be. I'd like also to settle the problems with bibtex in fix2.

Lars> Jean Marc, I have not verified that fl_get_gc exists in 0.88.
Lars> For 1.1.5cvs none of this is needed.

It does exist in 0.88.

JMarc



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-28 Thread Allan Rae

On 28 Feb 2000, Lars Gullik Bjønnes wrote:

> Allan Rae <[EMAIL PROTECTED]> writes:
> 
> | Also,  which system are you compiling on?  It seems some platforms have a
> | missing fl_gc while others don't.
> 
> No, it is different versions of xforms-0.89 (look at the fixlevel in
> forms.h)

Then different platforms are at different revision levels ;-)
It seems there must be a couple of different revision levels for Linux
floating around -- as you've found yourself in your other email in this
thread.

Allan. (ARRae)



compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Trying to compile 1.1.4fix with xforms .89 I'm getting the following:

screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
int)':
/usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1

Thanks!
-- 
Arcady Genkin
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Allan Rae

On 27 Feb 2000, Arcady Genkin wrote:

 Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
 
 screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
int)':
 /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
 collect2: ld returned 1 exit status
 make[3]: *** [lyx] Error 1

xforms-0.89 is experimental and should not be used with LyX at this time.
Get 0.88 instead.

Also,  which system are you compiling on?  It seems some platforms have a
missing fl_gc while others don't.

Allan. (ARRae)



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Allan Rae [EMAIL PROTECTED] writes:

 On 27 Feb 2000, Arcady Genkin wrote:
 
  Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
  
  screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
long, int)':
  /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
  collect2: ld returned 1 exit status
  make[3]: *** [lyx] Error 1
 
 xforms-0.89 is experimental and should not be used with LyX at this time.
 Get 0.88 instead.
 
 Also,  which system are you compiling on?  It seems some platforms have a
 missing fl_gc while others don't.

The system is a new installation of Slackware 7.

It has libc 2.1.2 and egc 2.91.66. XFree 3.3.5.

What is fl_gc and where is it supposed to be?

Thanks!
-- 
Arcady Genkin http://www.thpoon.com
Nostalgia isn't what it used to be.



compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Trying to compile 1.1.4fix with xforms .89 I'm getting the following:

screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
int)':
/usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1

Thanks!
-- 
Arcady Genkin
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Allan Rae

On 27 Feb 2000, Arcady Genkin wrote:

 Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
 
 screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
int)':
 /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
 /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
 collect2: ld returned 1 exit status
 make[3]: *** [lyx] Error 1

xforms-0.89 is experimental and should not be used with LyX at this time.
Get 0.88 instead.

Also,  which system are you compiling on?  It seems some platforms have a
missing fl_gc while others don't.

Allan. (ARRae)



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Allan Rae [EMAIL PROTECTED] writes:

 On 27 Feb 2000, Arcady Genkin wrote:
 
  Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
  
  screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
long, int)':
  /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
  /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
  collect2: ld returned 1 exit status
  make[3]: *** [lyx] Error 1
 
 xforms-0.89 is experimental and should not be used with LyX at this time.
 Get 0.88 instead.
 
 Also,  which system are you compiling on?  It seems some platforms have a
 missing fl_gc while others don't.

The system is a new installation of Slackware 7.

It has libc 2.1.2 and egc 2.91.66. XFree 3.3.5.

What is fl_gc and where is it supposed to be?

Thanks!
-- 
Arcady Genkin http://www.thpoon.com
Nostalgia isn't what it used to be.



compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Trying to compile 1.1.4fix with xforms .89 I'm getting the following:

screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
int)':
/usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
/usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1

Thanks!
-- 
Arcady Genkin
Nostalgia isn't what it used to be.



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Allan Rae

On 27 Feb 2000, Arcady Genkin wrote:

> Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
> 
> screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned long, 
>int)':
> /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
> /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
> /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
> /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
> collect2: ld returned 1 exit status
> make[3]: *** [lyx] Error 1

xforms-0.89 is experimental and should not be used with LyX at this time.
Get 0.88 instead.

Also,  which system are you compiling on?  It seems some platforms have a
missing fl_gc while others don't.

Allan. (ARRae)



Re: compilation/linking error (undefined reference to `fl_gc')

2000-02-27 Thread Arcady Genkin

Allan Rae <[EMAIL PROTECTED]> writes:

> On 27 Feb 2000, Arcady Genkin wrote:
> 
> > Trying to compile 1.1.4fix with xforms .89 I'm getting the following:
> > 
> > screen.o: In function `LyXScreen::drawFrame(int, int, int, int, int, unsigned 
>long, int)':
> > /usr/local/src/lyx-1.1.4/src/screen.C:809: undefined reference to `fl_gc'
> > /usr/local/src/lyx-1.1.4/src/screen.C:812: undefined reference to `fl_gc'
> > /usr/local/src/lyx-1.1.4/src/screen.C:831: undefined reference to `fl_gc'
> > /usr/local/src/lyx-1.1.4/src/screen.C:836: undefined reference to `fl_gc'
> > collect2: ld returned 1 exit status
> > make[3]: *** [lyx] Error 1
> 
> xforms-0.89 is experimental and should not be used with LyX at this time.
> Get 0.88 instead.
> 
> Also,  which system are you compiling on?  It seems some platforms have a
> missing fl_gc while others don't.

The system is a new installation of Slackware 7.

It has libc 2.1.2 and egc 2.91.66. XFree 3.3.5.

What is fl_gc and where is it supposed to be?

Thanks!
-- 
Arcady Genkin http://www.thpoon.com
Nostalgia isn't what it used to be.