Re: Installation of XForms

2002-02-24 Thread Christoph Bugel

On Sat 2002-02-23, Brian Flangsmythe wrote:
 I am trying to install XForms in order to compile LyX. I am working in a 
 linux system but I don't have root acces, so I want to install it in my home 
 directory, so this is what I tried:

I do have root access, but I am usually suspicious, so what I did,
IIRC, is to untar the tar file, and manually copy forms.h to
/usr/local/include and libforms.a to /usr/local/lib (I didn't even
copy the shared library, to keep it simple)

 ** Cannot find libforms or libxforms. Please check that the xforms library 
 is correctly installed on your system.

So the question is how to tell configure where to find forms.h and
libform.a. 

hmm.. I tried (lyx) ./configure --help and found these options:
--with-extra-lib and --with-extra-inc. I think I use those two it
should work.





Compilation (linking) troubles

2002-02-24 Thread Brian Flangsmythe

I finally managed to get the LyX configure to work without complaints. Now I 
have troubles when compiling instead. There seems to be something wrong with 
the linking of libraries, because I get the following message (in the end of 
the compilation):

(I'm trying to install lyx-1.2.0 with XForms 89)

(...a lot of similar lines *cut*)
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
reference to `fl_set_object_callback'
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
reference to `fl_end_form'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1
make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make: *** [all-recursive] Error 1

Does anybody recognise this error? I think all libraries and headers are 
right, but a don't have root access, and perhaps there are some global 
libraries that are needed, and that I can't do anything about?

Thanks for you help,
Brian F.


_
Chat with friends online, try MSN Messenger: http://messenger.msn.com




Re: Compilation (linking) troubles

2002-02-24 Thread Christoph Bugel

On Sun 2002-02-24, Brian Flangsmythe wrote:
 I finally managed to get the LyX configure to work without complaints. Now I 
 have troubles when compiling instead. There seems to be something wrong with 
 the linking of libraries, because I get the following message (in the end of 
 the compilation):
 
 (I'm trying to install lyx-1.2.0 with XForms 89)
 
 (...a lot of similar lines *cut*)

maybe we need to see some more lines. see below.

 ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
 reference to `fl_set_object_callback'
 ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
 reference to `fl_end_form'
 collect2: ld returned 1 exit status
 make[3]: *** [lyx] Error 1
 make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make[1]: *** [all-recursive-am] Error 2
 make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make: *** [all-recursive] Error 1

hmmm, I looked in my forms.h, and the fl_set_object_callback function is
defined there. I even checked nm libforms.a | grep fl_set_object_callback,
to make sure, and yes, the function does live there, inside the libforms.a

Your compiler complains that it cannot find the symbol, even though it *is*
defined inside libforms.a. I would like to see the actual compiler
commandline that fails, and the error that appear *immedialtel* after that.
It should appear when you do 'make'. 
Also, can you send the options you gave to ./configure?



Re: Installation of XForms

2002-02-24 Thread John Levon

On Sun, Feb 24, 2002 at 01:45:40PM +0200, Christoph Bugel wrote:

  ** Cannot find libforms or libxforms. Please check that the xforms library 
  is correctly installed on your system.
 
 So the question is how to tell configure where to find forms.h and
 libform.a. 

You shouldn't need to, if they really are in /usr/local/include / lib

Can we see your config.log after you do a configure ? The problem
must be elsewhere

regards
john

-- 
Yes, I understand your point, but This Is UA, and not some fluffy creche.
- Topper



More bibliography question

2002-02-24 Thread Wayan


Dear LyX-users,
I have set the following command in preamble
to reduce the space between bibitem, but nothing
to happen.

\renewcommand{\@openbib@code}{\setlength{\itemsep}{0pt}}

I have modify the unit from 0pt to negative values,
but the result is the same... Is there another possibility
to change the space of bibitem?

TIA,

Wayan




Re: Installation of XForms

2002-02-24 Thread Christoph Bugel

On Sat 2002-02-23, Brian Flangsmythe wrote:
 I am trying to install XForms in order to compile LyX. I am working in a 
 linux system but I don't have root acces, so I want to install it in my home 
 directory, so this is what I tried:

I do have root access, but I am usually suspicious, so what I did,
IIRC, is to untar the tar file, and manually copy forms.h to
/usr/local/include and libforms.a to /usr/local/lib (I didn't even
copy the shared library, to keep it simple)

 ** Cannot find libforms or libxforms. Please check that the xforms library 
 is correctly installed on your system.

So the question is how to tell configure where to find forms.h and
libform.a. 

hmm.. I tried (lyx) ./configure --help and found these options:
--with-extra-lib and --with-extra-inc. I think I use those two it
should work.





Compilation (linking) troubles

2002-02-24 Thread Brian Flangsmythe

I finally managed to get the LyX configure to work without complaints. Now I 
have troubles when compiling instead. There seems to be something wrong with 
the linking of libraries, because I get the following message (in the end of 
the compilation):

(I'm trying to install lyx-1.2.0 with XForms 89)

(...a lot of similar lines *cut*)
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
reference to `fl_set_object_callback'
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
reference to `fl_end_form'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1
make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make: *** [all-recursive] Error 1

Does anybody recognise this error? I think all libraries and headers are 
right, but a don't have root access, and perhaps there are some global 
libraries that are needed, and that I can't do anything about?

Thanks for you help,
Brian F.


_
Chat with friends online, try MSN Messenger: http://messenger.msn.com




Re: Compilation (linking) troubles

2002-02-24 Thread Christoph Bugel

On Sun 2002-02-24, Brian Flangsmythe wrote:
 I finally managed to get the LyX configure to work without complaints. Now I 
 have troubles when compiling instead. There seems to be something wrong with 
 the linking of libraries, because I get the following message (in the end of 
 the compilation):
 
 (I'm trying to install lyx-1.2.0 with XForms 89)
 
 (...a lot of similar lines *cut*)

maybe we need to see some more lines. see below.

 ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
 reference to `fl_set_object_callback'
 ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
 reference to `fl_end_form'
 collect2: ld returned 1 exit status
 make[3]: *** [lyx] Error 1
 make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make[1]: *** [all-recursive-am] Error 2
 make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
 make: *** [all-recursive] Error 1

hmmm, I looked in my forms.h, and the fl_set_object_callback function is
defined there. I even checked nm libforms.a | grep fl_set_object_callback,
to make sure, and yes, the function does live there, inside the libforms.a

Your compiler complains that it cannot find the symbol, even though it *is*
defined inside libforms.a. I would like to see the actual compiler
commandline that fails, and the error that appear *immedialtel* after that.
It should appear when you do 'make'. 
Also, can you send the options you gave to ./configure?



Re: Installation of XForms

2002-02-24 Thread John Levon

On Sun, Feb 24, 2002 at 01:45:40PM +0200, Christoph Bugel wrote:

  ** Cannot find libforms or libxforms. Please check that the xforms library 
  is correctly installed on your system.
 
 So the question is how to tell configure where to find forms.h and
 libform.a. 

You shouldn't need to, if they really are in /usr/local/include / lib

Can we see your config.log after you do a configure ? The problem
must be elsewhere

regards
john

-- 
Yes, I understand your point, but This Is UA, and not some fluffy creche.
- Topper



More bibliography question

2002-02-24 Thread Wayan


Dear LyX-users,
I have set the following command in preamble
to reduce the space between bibitem, but nothing
to happen.

\renewcommand{\@openbib@code}{\setlength{\itemsep}{0pt}}

I have modify the unit from 0pt to negative values,
but the result is the same... Is there another possibility
to change the space of bibitem?

TIA,

Wayan




Re: Installation of XForms

2002-02-24 Thread Christoph Bugel

On Sat 2002-02-23, Brian Flangsmythe wrote:
> I am trying to install XForms in order to compile LyX. I am working in a 
> linux system but I don't have root acces, so I want to install it in my home 
> directory, so this is what I tried:

I do have root access, but I am usually suspicious, so what I did,
IIRC, is to untar the tar file, and manually copy forms.h to
/usr/local/include and libforms.a to /usr/local/lib (I didn't even
copy the shared library, to keep it simple)

> ** Cannot find libforms or libxforms. Please check that the xforms library 
> is correctly installed on your system.

So the question is how to tell configure where to find forms.h and
libform.a. 

hmm.. I tried (lyx) ./configure --help and found these options:
--with-extra-lib and --with-extra-inc. I think I use those two it
should work.





Compilation (linking) troubles

2002-02-24 Thread Brian Flangsmythe

I finally managed to get the LyX configure to work without complaints. Now I 
have troubles when compiling instead. There seems to be something wrong with 
the linking of libraries, because I get the following message (in the end of 
the compilation):

(I'm trying to install lyx-1.2.0 with XForms 89)

(...a lot of similar lines *cut*)
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
reference to `fl_set_object_callback'
~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
reference to `fl_end_form'
collect2: ld returned 1 exit status
make[3]: *** [lyx] Error 1
make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
make: *** [all-recursive] Error 1

Does anybody recognise this error? I think all libraries and headers are 
right, but a don't have root access, and perhaps there are some global 
libraries that are needed, and that I can't do anything about?

Thanks for you help,
Brian F.


_
Chat with friends online, try MSN Messenger: http://messenger.msn.com




Re: Compilation (linking) troubles

2002-02-24 Thread Christoph Bugel

On Sun 2002-02-24, Brian Flangsmythe wrote:
> I finally managed to get the LyX configure to work without complaints. Now I 
> have troubles when compiling instead. There seems to be something wrong with 
> the linking of libraries, because I get the following message (in the end of 
> the compilation):
> 
> (I'm trying to install lyx-1.2.0 with XForms 89)
> 
> (...a lot of similar lines *cut*)

maybe we need to see some more lines. see below.

> ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:75: undefined 
> reference to `fl_set_object_callback'
> ~/lyx-1.2.0cvs/src/frontends/xforms/form_maths_matrix.C:76: undefined 
> reference to `fl_end_form'
> collect2: ld returned 1 exit status
> make[3]: *** [lyx] Error 1
> make[3]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
> make[1]: *** [all-recursive-am] Error 2
> make[1]: Leaving directory `/merlot/pg/pmxas/lyx-1.2.0cvs/src'
> make: *** [all-recursive] Error 1

hmmm, I looked in my forms.h, and the fl_set_object_callback function is
defined there. I even checked nm libforms.a | grep fl_set_object_callback,
to make sure, and yes, the function does live there, inside the libforms.a

Your compiler complains that it cannot find the symbol, even though it *is*
defined inside libforms.a. I would like to see the actual compiler
commandline that fails, and the error that appear *immedialtel* after that.
It should appear when you do 'make'. 
Also, can you send the options you gave to ./configure?



Re: Installation of XForms

2002-02-24 Thread John Levon

On Sun, Feb 24, 2002 at 01:45:40PM +0200, Christoph Bugel wrote:

> > ** Cannot find libforms or libxforms. Please check that the xforms library 
> > is correctly installed on your system.
> 
> So the question is how to tell configure where to find forms.h and
> libform.a. 

You shouldn't need to, if they really are in /usr/local/include / lib

Can we see your config.log after you do a configure ? The problem
must be elsewhere

regards
john

-- 
"Yes, I understand your point, but This Is UA, and not some fluffy creche."
- Topper



More bibliography question

2002-02-24 Thread Wayan


Dear LyX-users,
I have set the following command in preamble
to reduce the space between bibitem, but nothing
to happen.

\renewcommand{\@openbib@code}{\setlength{\itemsep}{0pt}}

I have modify the unit from 0pt to negative values,
but the result is the same... Is there another possibility
to change the space of bibitem?

TIA,

Wayan