Re: Compile Errors on Itanium

2004-02-03 Thread Angus Leeming
On Monday 02 February 2004 7:54 pm, Jeremy Daily wrote:
 Angus et. al.,

 I was able to fix my problem by using the trial an error method. In
 other words I don't know what I did but it worked.

 In the file /boost/boost/detail/limits.hpp
 I added || defined(__ia64__) to the end of the line beginning 
 with #elif defined(__i386_)

 I guessed it right in terms of little endian vs big endian because
 it worked. Maybe a more formal fix can be incorporated into the
 next version??

 Jeremy

Thanks, Jeremy. Your fix is perfectly fine, but I've extended it to 
cover both the __ia64__ and __ia64 macros in line with the latest 
version of the boost library.

All should be fine, therefore, in future.

Angus




Re: Compile Errors on Itanium

2004-02-03 Thread Angus Leeming
On Monday 02 February 2004 7:54 pm, Jeremy Daily wrote:
 Angus et. al.,

 I was able to fix my problem by using the trial an error method. In
 other words I don't know what I did but it worked.

 In the file /boost/boost/detail/limits.hpp
 I added || defined(__ia64__) to the end of the line beginning 
 with #elif defined(__i386_)

 I guessed it right in terms of little endian vs big endian because
 it worked. Maybe a more formal fix can be incorporated into the
 next version??

 Jeremy

Thanks, Jeremy. Your fix is perfectly fine, but I've extended it to 
cover both the __ia64__ and __ia64 macros in line with the latest 
version of the boost library.

All should be fine, therefore, in future.

Angus




Re: Compile Errors on Itanium

2004-02-03 Thread Angus Leeming
On Monday 02 February 2004 7:54 pm, Jeremy Daily wrote:
> Angus et. al.,
>
> I was able to fix my problem by using the trial an error method. In
> other words I don't know what I did but it worked.
>
> In the file /boost/boost/detail/limits.hpp
> I added || defined(__ia64__) to the end of the line beginning 
> with #elif defined(__i386_)
>
> I guessed it right in terms of little endian vs big endian because
> it worked. Maybe a more formal fix can be incorporated into the
> next version??
>
> Jeremy

Thanks, Jeremy. Your fix is perfectly fine, but I've extended it to 
cover both the __ia64__ and __ia64 macros in line with the latest 
version of the boost library.

All should be fine, therefore, in future.

Angus




Re: Compile Errors on Itanium

2004-02-02 Thread Jeremy Daily
Angus et. al.,

I was able to fix my problem by using the trial an error method. In 
other words I don't know what I did but it worked.

In the file

/boost/boost/detail/limits.hpp

I added 

|| defined(__ia64__) 

to the end of the line beginning with 

#elif defined(__i386_)

I guessed it right in terms of little endian vs big endian because it 
worked.
Maybe a more formal fix can be incorporated into the next version??

Jeremy

Angus Leeming wrote:

Jeremy Daily wrote:

 

I just tried to compile lyx-1.3.3 on a dual Itanium machine running
RedHat Advance Workstation 2.1.  The configure script executed just
fine after
   

 

The results of make are attached.
P.S. I'm a user, not a developer (baby steps)
   

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
   defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
 defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
 



Re: Compile Errors on Itanium

2004-02-02 Thread Jeremy Daily
Angus et. al.,

I was able to fix my problem by using the trial an error method. In 
other words I don't know what I did but it worked.

In the file

/boost/boost/detail/limits.hpp

I added 

|| defined(__ia64__) 

to the end of the line beginning with 

#elif defined(__i386_)

I guessed it right in terms of little endian vs big endian because it 
worked.
Maybe a more formal fix can be incorporated into the next version??

Jeremy

Angus Leeming wrote:

Jeremy Daily wrote:

 

I just tried to compile lyx-1.3.3 on a dual Itanium machine running
RedHat Advance Workstation 2.1.  The configure script executed just
fine after
   

 

The results of make are attached.
P.S. I'm a user, not a developer (baby steps)
   

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
   defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
 defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
 



Re: Compile Errors on Itanium

2004-02-02 Thread Jeremy Daily
Angus et. al.,

I was able to fix my problem by using the trial an error method. In 
other words I don't know what I did but it worked.

In the file

/boost/boost/detail/limits.hpp

I added 

|| defined(__ia64__) 

to the end of the line beginning with 

#elif defined(__i386_)

I guessed it right in terms of little endian vs big endian because it 
worked.
Maybe a more formal fix can be incorporated into the next version??

Jeremy

Angus Leeming wrote:

Jeremy Daily wrote:

 

I just tried to compile lyx-1.3.3 on a dual Itanium machine running
RedHat Advance Workstation 2.1.  The configure script executed just
fine after
   

 

The results of "make" are attached.
P.S. I'm a user, not a developer (baby steps)
   

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
   defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
 defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
 



Re: Compile Errors on Itanium

2004-02-01 Thread Angus Leeming
Jeremy Daily wrote:

 I just tried to compile lyx-1.3.3 on a dual Itanium machine running
 RedHat Advance Workstation 2.1.  The configure script executed just
 fine after

 The results of make are attached.
 P.S. I'm a user, not a developer (baby steps)

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
  defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
-- 
Angus



Re: Compile Errors on Itanium

2004-02-01 Thread Angus Leeming
Jeremy Daily wrote:

 I just tried to compile lyx-1.3.3 on a dual Itanium machine running
 RedHat Advance Workstation 2.1.  The configure script executed just
 fine after

 The results of make are attached.
 P.S. I'm a user, not a developer (baby steps)

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
  defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
-- 
Angus



Re: Compile Errors on Itanium

2004-02-01 Thread Angus Leeming
Jeremy Daily wrote:

> I just tried to compile lyx-1.3.3 on a dual Itanium machine running
> RedHat Advance Workstation 2.1.  The configure script executed just
> fine after

> The results of "make" are attached.
> P.S. I'm a user, not a developer (baby steps)

Hi, Jeremy. Extracting the error itself:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.

You need to add something to the #if block in this file.

#if defined(big endian architecture 1) || 
defined(big endian architecture 2)
#define BOOST_BIG_ENDIAN
#elif defined(little endian architecture 1) ||
  defined(little endian architecture 2)
#define BOOST_LITTLE_ENDIAN
#else
#error The file boost/detail/limits.hpp needs to be set up for your 
CPU type.
#endif

Your task is to find the macro identifier used by your Itanium 
machine.

Regards,
-- 
Angus



Compile Errors on Itanium

2004-01-30 Thread Jeremy Daily
I just tried to compile lyx-1.3.3 on a dual Itanium machine running 
RedHat Advance Workstation 2.1.  The configure script executed just fine 
after

./configure --with-frontend=qt

The results of make are attached.

Does anyone know what I can do to make it complile.

P.S. I'm a user, not a developer (baby steps)

Thanks,
Jeremy
[EMAIL PROTECTED] lyx-1.3.2]# make
Making all in config
make[1]: Entering directory `/root/lyx-1.3.2/config'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/config'
Making all in development
make[1]: Entering directory `/root/lyx-1.3.2/development'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/development'
Making all in intl
make[1]: Entering directory `/root/lyx-1.3.2/intl'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/intl'
Making all in po
make[1]: Entering directory `/root/lyx-1.3.2/po'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/po'
Making all in boost
make[1]: Entering directory `/root/lyx-1.3.2/boost'
Making all in libs
make[2]: Entering directory `/root/lyx-1.3.2/boost/libs'
Making all in regex
make[3]: Entering directory `/root/lyx-1.3.2/boost/libs/regex'
Making all in src
make[4]: Entering directory `/root/lyx-1.3.2/boost/libs/regex/src'
source='cpp_regex_traits.cpp' object='cpp_regex_traits.lo' libtool=yes \
depfile='.deps/cpp_regex_traits.Plo' tmpdepfile='.deps/cpp_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cpp_regex_traits.lo `test -f 
'cpp_regex_traits.cpp' || echo './'`cpp_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cpp_regex_traits.cpp -MT cpp_regex_traits.lo -MD -MP -MF .deps/cpp_regex_traits.TPlo
echo timestamp  cpp_regex_traits.lo
source='c_regex_traits_common.cpp' object='c_regex_traits_common.lo' libtool=yes \
depfile='.deps/c_regex_traits_common.Plo' 
tmpdepfile='.deps/c_regex_traits_common.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits_common.lo `test -f 
'c_regex_traits_common.cpp' || echo './'`c_regex_traits_common.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits_common.cpp -MT c_regex_traits_common.lo -MD -MP -MF 
.deps/c_regex_traits_common.TPlo
echo timestamp  c_regex_traits_common.lo
source='c_regex_traits.cpp' object='c_regex_traits.lo' libtool=yes \
depfile='.deps/c_regex_traits.Plo' tmpdepfile='.deps/c_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits.lo `test -f 
'c_regex_traits.cpp' || echo './'`c_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits.cpp -MT c_regex_traits.lo -MD -MP -MF .deps/c_regex_traits.TPlo
echo timestamp  c_regex_traits.lo
source='cregex.cpp' object='cregex.lo' libtool=yes \
depfile='.deps/cregex.Plo' tmpdepfile='.deps/cregex.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cregex.lo `test -f 'cregex.cpp' || 
echo './'`cregex.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cregex.cpp -MT cregex.lo -MD -MP -MF .deps/cregex.TPlo
In file included from ../../../../boost/boost/limits.hpp:15,
 from ../../../../boost/boost/regex/detail/regex_match.hpp:33,
 from ../../../../boost/boost/regex.hpp:1576,
 from cregex.cpp:27:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.
make[4]: *** [cregex.lo] Error 1
make[4]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving 

Compile Errors on Itanium

2004-01-30 Thread Jeremy Daily
I just tried to compile lyx-1.3.3 on a dual Itanium machine running 
RedHat Advance Workstation 2.1.  The configure script executed just fine 
after

./configure --with-frontend=qt

The results of make are attached.

Does anyone know what I can do to make it complile.

P.S. I'm a user, not a developer (baby steps)

Thanks,
Jeremy
[EMAIL PROTECTED] lyx-1.3.2]# make
Making all in config
make[1]: Entering directory `/root/lyx-1.3.2/config'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/config'
Making all in development
make[1]: Entering directory `/root/lyx-1.3.2/development'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/development'
Making all in intl
make[1]: Entering directory `/root/lyx-1.3.2/intl'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/intl'
Making all in po
make[1]: Entering directory `/root/lyx-1.3.2/po'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/po'
Making all in boost
make[1]: Entering directory `/root/lyx-1.3.2/boost'
Making all in libs
make[2]: Entering directory `/root/lyx-1.3.2/boost/libs'
Making all in regex
make[3]: Entering directory `/root/lyx-1.3.2/boost/libs/regex'
Making all in src
make[4]: Entering directory `/root/lyx-1.3.2/boost/libs/regex/src'
source='cpp_regex_traits.cpp' object='cpp_regex_traits.lo' libtool=yes \
depfile='.deps/cpp_regex_traits.Plo' tmpdepfile='.deps/cpp_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cpp_regex_traits.lo `test -f 
'cpp_regex_traits.cpp' || echo './'`cpp_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cpp_regex_traits.cpp -MT cpp_regex_traits.lo -MD -MP -MF .deps/cpp_regex_traits.TPlo
echo timestamp  cpp_regex_traits.lo
source='c_regex_traits_common.cpp' object='c_regex_traits_common.lo' libtool=yes \
depfile='.deps/c_regex_traits_common.Plo' 
tmpdepfile='.deps/c_regex_traits_common.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits_common.lo `test -f 
'c_regex_traits_common.cpp' || echo './'`c_regex_traits_common.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits_common.cpp -MT c_regex_traits_common.lo -MD -MP -MF 
.deps/c_regex_traits_common.TPlo
echo timestamp  c_regex_traits_common.lo
source='c_regex_traits.cpp' object='c_regex_traits.lo' libtool=yes \
depfile='.deps/c_regex_traits.Plo' tmpdepfile='.deps/c_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits.lo `test -f 
'c_regex_traits.cpp' || echo './'`c_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits.cpp -MT c_regex_traits.lo -MD -MP -MF .deps/c_regex_traits.TPlo
echo timestamp  c_regex_traits.lo
source='cregex.cpp' object='cregex.lo' libtool=yes \
depfile='.deps/cregex.Plo' tmpdepfile='.deps/cregex.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cregex.lo `test -f 'cregex.cpp' || 
echo './'`cregex.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cregex.cpp -MT cregex.lo -MD -MP -MF .deps/cregex.TPlo
In file included from ../../../../boost/boost/limits.hpp:15,
 from ../../../../boost/boost/regex/detail/regex_match.hpp:33,
 from ../../../../boost/boost/regex.hpp:1576,
 from cregex.cpp:27:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.
make[4]: *** [cregex.lo] Error 1
make[4]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving 

Compile Errors on Itanium

2004-01-30 Thread Jeremy Daily
I just tried to compile lyx-1.3.3 on a dual Itanium machine running 
RedHat Advance Workstation 2.1.  The configure script executed just fine 
after

./configure --with-frontend=qt

The results of "make" are attached.

Does anyone know what I can do to make it complile.

P.S. I'm a user, not a developer (baby steps)

Thanks,
Jeremy
[EMAIL PROTECTED] lyx-1.3.2]# make
Making all in config
make[1]: Entering directory `/root/lyx-1.3.2/config'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/config'
Making all in development
make[1]: Entering directory `/root/lyx-1.3.2/development'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/development'
Making all in intl
make[1]: Entering directory `/root/lyx-1.3.2/intl'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/intl'
Making all in po
make[1]: Entering directory `/root/lyx-1.3.2/po'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/lyx-1.3.2/po'
Making all in boost
make[1]: Entering directory `/root/lyx-1.3.2/boost'
Making all in libs
make[2]: Entering directory `/root/lyx-1.3.2/boost/libs'
Making all in regex
make[3]: Entering directory `/root/lyx-1.3.2/boost/libs/regex'
Making all in src
make[4]: Entering directory `/root/lyx-1.3.2/boost/libs/regex/src'
source='cpp_regex_traits.cpp' object='cpp_regex_traits.lo' libtool=yes \
depfile='.deps/cpp_regex_traits.Plo' tmpdepfile='.deps/cpp_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cpp_regex_traits.lo `test -f 
'cpp_regex_traits.cpp' || echo './'`cpp_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cpp_regex_traits.cpp -MT cpp_regex_traits.lo -MD -MP -MF .deps/cpp_regex_traits.TPlo
echo timestamp > cpp_regex_traits.lo
source='c_regex_traits_common.cpp' object='c_regex_traits_common.lo' libtool=yes \
depfile='.deps/c_regex_traits_common.Plo' 
tmpdepfile='.deps/c_regex_traits_common.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits_common.lo `test -f 
'c_regex_traits_common.cpp' || echo './'`c_regex_traits_common.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits_common.cpp -MT c_regex_traits_common.lo -MD -MP -MF 
.deps/c_regex_traits_common.TPlo
echo timestamp > c_regex_traits_common.lo
source='c_regex_traits.cpp' object='c_regex_traits.lo' libtool=yes \
depfile='.deps/c_regex_traits.Plo' tmpdepfile='.deps/c_regex_traits.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o c_regex_traits.lo `test -f 
'c_regex_traits.cpp' || echo './'`c_regex_traits.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
c_regex_traits.cpp -MT c_regex_traits.lo -MD -MP -MF .deps/c_regex_traits.TPlo
echo timestamp > c_regex_traits.lo
source='cregex.cpp' object='cregex.lo' libtool=yes \
depfile='.deps/cregex.Plo' tmpdepfile='.deps/cregex.TPlo' \
depmode=gcc3 /bin/sh ../../../../config/depcomp \
/bin/sh ../../../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. 
-I../../../../src -I../../../../boost  -isystem /usr/X11R6/include  -O -fno-exceptions 
-ftemplate-depth-30 -Wno-non-template-friend -c -o cregex.lo `test -f 'cregex.cpp' || 
echo './'`cregex.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../../../../src -I../../../../boost -isystem 
/usr/X11R6/include -O -fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend -c 
cregex.cpp -MT cregex.lo -MD -MP -MF .deps/cregex.TPlo
In file included from ../../../../boost/boost/limits.hpp:15,
 from ../../../../boost/boost/regex/detail/regex_match.hpp:33,
 from ../../../../boost/boost/regex.hpp:1576,
 from cregex.cpp:27:
../../../../boost/boost/detail/limits.hpp:57:2: #error The file 
boost/detail/limits.hpp needs to be set up for your CPU type.
make[4]: *** [cregex.lo] Error 1
make[4]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/root/lyx-1.3.2/boost/libs/regex'
make[2]: *** [all-recursive] Error 1
make[2]: 

Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

 "Stefano" == Stefano Ghirlanda [EMAIL PROTECTED] writes:

Stefano Hi, I am getting the following errors, I presume because my
Stefano c++ libraries are too old (Slackware 7.0):

Stefano g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images
Stefano -I./../ -I../.. -I../.. -I../../boost -g -O2 -fno-rtti
Stefano -fno-exceptions -c formula.C -o formula.o In file included
Stefano from formula.C:18: ../../src/Lsstream.h:16: sstream: No such
Stefano file or directory In file included from
Stefano ../../src/support/DebugStream.h:19, from
Stefano ../../src/debug.h:108, from math_defs.h:30, from
Stefano math_iter.h:27, from math_cursor.h:26, from formula.C:26:
Stefano ../../src/support/LOstream.h:17: ostream: No such file or
Stefano directory

Stefano Here is my g++ version:

Stefano # g++ -v Reading specs from
Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

This version should work OK, and configure should have detected that
ostream ans sstream were not available... How did you run configure?
What does config.log say?

JMarc



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Stefano Ghirlanda

Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:

 Stefano # g++ -v Reading specs from
 Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
 Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
 
 This version should work OK, and configure should have detected that
 ostream ans sstream were not available... How did you run configure?
 What does config.log say?

It says that sstream is found... but:

# find /usr/include/ /usr/local/include -name '*sstream*'

nothing is found. As a confirmation:

# cattry.CEOF
 #include stream
 EOF
# g++ try.C 
try.C:1: stream: No such file or directory

Any easy way to fix this?
Thanks a lot
-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

 "Stefano" == Stefano Ghirlanda [EMAIL PROTECTED] writes:

Stefano It says that sstream is found... but:

Stefano # find /usr/include/ /usr/local/include -name '*sstream*'

Did you remove config.cache before running configure?

Stefano nothing is found. As a confirmation:

Stefano # cattry.CEOF
 #include stream EOF
Stefano # g++ try.C try.C:1: stream: No such file or directory

This should be sstream and not stream.

JMarc




Re: lyx-1.1.6 compile errors

2001-03-05 Thread Lars Gullik Bjønnes

Stefano Ghirlanda [EMAIL PROTECTED] writes:

| Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:
| 
|  Stefano # g++ -v Reading specs from
|  Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
|  Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
|  
|  This version should work OK, and configure should have detected that
|  ostream ans sstream were not available... How did you run configure?
|  What does config.log say?
| 
| It says that sstream is found... but:
| 
| # find /usr/include/ /usr/local/include -name '*sstream*'
| 
| nothing is found. As a confirmation:
| 
| # cattry.CEOF
|  #include stream
|  EOF
| # g++ try.C 
| try.C:1: stream: No such file or directory

The test should at least use "sstream"...

| Any easy way to fix this?

Figure out why configure thinks it exists, when it doesn't.

Lgb




Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

 "Stefano" == Stefano Ghirlanda [EMAIL PROTECTED] writes:

Stefano Hi, I am getting the following errors, I presume because my
Stefano c++ libraries are too old (Slackware 7.0):

Stefano g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images
Stefano -I./../ -I../.. -I../.. -I../../boost -g -O2 -fno-rtti
Stefano -fno-exceptions -c formula.C -o formula.o In file included
Stefano from formula.C:18: ../../src/Lsstream.h:16: sstream: No such
Stefano file or directory In file included from
Stefano ../../src/support/DebugStream.h:19, from
Stefano ../../src/debug.h:108, from math_defs.h:30, from
Stefano math_iter.h:27, from math_cursor.h:26, from formula.C:26:
Stefano ../../src/support/LOstream.h:17: ostream: No such file or
Stefano directory

Stefano Here is my g++ version:

Stefano # g++ -v Reading specs from
Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

This version should work OK, and configure should have detected that
ostream ans sstream were not available... How did you run configure?
What does config.log say?

JMarc



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Stefano Ghirlanda

Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:

 Stefano # g++ -v Reading specs from
 Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
 Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
 
 This version should work OK, and configure should have detected that
 ostream ans sstream were not available... How did you run configure?
 What does config.log say?

It says that sstream is found... but:

# find /usr/include/ /usr/local/include -name '*sstream*'

nothing is found. As a confirmation:

# cattry.CEOF
 #include stream
 EOF
# g++ try.C 
try.C:1: stream: No such file or directory

Any easy way to fix this?
Thanks a lot
-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

 "Stefano" == Stefano Ghirlanda [EMAIL PROTECTED] writes:

Stefano It says that sstream is found... but:

Stefano # find /usr/include/ /usr/local/include -name '*sstream*'

Did you remove config.cache before running configure?

Stefano nothing is found. As a confirmation:

Stefano # cattry.CEOF
 #include stream EOF
Stefano # g++ try.C try.C:1: stream: No such file or directory

This should be sstream and not stream.

JMarc




Re: lyx-1.1.6 compile errors

2001-03-05 Thread Lars Gullik Bjønnes

Stefano Ghirlanda [EMAIL PROTECTED] writes:

| Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:
| 
|  Stefano # g++ -v Reading specs from
|  Stefano /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
|  Stefano version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
|  
|  This version should work OK, and configure should have detected that
|  ostream ans sstream were not available... How did you run configure?
|  What does config.log say?
| 
| It says that sstream is found... but:
| 
| # find /usr/include/ /usr/local/include -name '*sstream*'
| 
| nothing is found. As a confirmation:
| 
| # cattry.CEOF
|  #include stream
|  EOF
| # g++ try.C 
| try.C:1: stream: No such file or directory

The test should at least use "sstream"...

| Any easy way to fix this?

Figure out why configure thinks it exists, when it doesn't.

Lgb




Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

> "Stefano" == Stefano Ghirlanda <[EMAIL PROTECTED]> writes:

Stefano> Hi, I am getting the following errors, I presume because my
Stefano> c++ libraries are too old (Slackware 7.0):

Stefano> g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images
Stefano> -I./../ -I../.. -I../.. -I../../boost -g -O2 -fno-rtti
Stefano> -fno-exceptions -c formula.C -o formula.o In file included
Stefano> from formula.C:18: ../../src/Lsstream.h:16: sstream: No such
Stefano> file or directory In file included from
Stefano> ../../src/support/DebugStream.h:19, from
Stefano> ../../src/debug.h:108, from math_defs.h:30, from
Stefano> math_iter.h:27, from math_cursor.h:26, from formula.C:26:
Stefano> ../../src/support/LOstream.h:17: ostream: No such file or
Stefano> directory

Stefano> Here is my g++ version:

Stefano> # g++ -v Reading specs from
Stefano> /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
Stefano> version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

This version should work OK, and configure should have detected that
ostream ans sstream were not available... How did you run configure?
What does config.log say?

JMarc



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Stefano Ghirlanda

Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

> Stefano> # g++ -v Reading specs from
> Stefano> /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
> Stefano> version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
> 
> This version should work OK, and configure should have detected that
> ostream ans sstream were not available... How did you run configure?
> What does config.log say?

It says that sstream is found... but:

# find /usr/include/ /usr/local/include -name '*sstream*'

nothing is found. As a confirmation:

# cat>try.C< #include 
> EOF
# g++ try.C 
try.C:1: stream: No such file or directory

Any easy way to fix this?
Thanks a lot
-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



Re: lyx-1.1.6 compile errors

2001-03-05 Thread Jean-Marc Lasgouttes

> "Stefano" == Stefano Ghirlanda <[EMAIL PROTECTED]> writes:

Stefano> It says that sstream is found... but:

Stefano> # find /usr/include/ /usr/local/include -name '*sstream*'

Did you remove config.cache before running configure?

Stefano> nothing is found. As a confirmation:

Stefano> # cat>try.C<> #include  EOF
Stefano> # g++ try.C try.C:1: stream: No such file or directory

This should be  and not .

JMarc




Re: lyx-1.1.6 compile errors

2001-03-05 Thread Lars Gullik Bjønnes

Stefano Ghirlanda <[EMAIL PROTECTED]> writes:

| Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
| 
| > Stefano> # g++ -v Reading specs from
| > Stefano> /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs gcc
| > Stefano> version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
| > 
| > This version should work OK, and configure should have detected that
| > ostream ans sstream were not available... How did you run configure?
| > What does config.log say?
| 
| It says that sstream is found... but:
| 
| # find /usr/include/ /usr/local/include -name '*sstream*'
| 
| nothing is found. As a confirmation:
| 
| # cat>try.C< #include 
| > EOF
| # g++ try.C 
| try.C:1: stream: No such file or directory

The test should at least use "sstream"...

| Any easy way to fix this?

Figure out why configure thinks it exists, when it doesn't.

Lgb




lyx-1.1.6 compile errors

2001-03-04 Thread Stefano Ghirlanda

Hi, I am getting the following errors, I presume because my c++
libraries are too old (Slackware 7.0):

g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images -I./../
-I../.. -I../.. -I../../boost -g -O2 -fno-rtti -fno-exceptions -c
formula.C -o formula.o 
In file included from formula.C:18:
../../src/Lsstream.h:16: sstream: No such file or directory
In file included from ../../src/support/DebugStream.h:19,
 from ../../src/debug.h:108,
 from math_defs.h:30,
 from math_iter.h:27,
 from math_cursor.h:26,
 from formula.C:26:
../../src/support/LOstream.h:17: ostream: No such file or directory

Here is my g++ version:

# g++ -v
Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs
gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

Should I installa a more recent one?
Thanks,

-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



lyx-1.1.6 compile errors

2001-03-04 Thread Stefano Ghirlanda

Hi, I am getting the following errors, I presume because my c++
libraries are too old (Slackware 7.0):

g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images -I./../
-I../.. -I../.. -I../../boost -g -O2 -fno-rtti -fno-exceptions -c
formula.C -o formula.o 
In file included from formula.C:18:
../../src/Lsstream.h:16: sstream: No such file or directory
In file included from ../../src/support/DebugStream.h:19,
 from ../../src/debug.h:108,
 from math_defs.h:30,
 from math_iter.h:27,
 from math_cursor.h:26,
 from formula.C:26:
../../src/support/LOstream.h:17: ostream: No such file or directory

Here is my g++ version:

# g++ -v
Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs
gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

Should I installa a more recent one?
Thanks,

-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



lyx-1.1.6 compile errors

2001-03-04 Thread Stefano Ghirlanda

Hi, I am getting the following errors, I presume because my c++
libraries are too old (Slackware 7.0):

g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images -I./../
-I../.. -I../.. -I../../boost -g -O2 -fno-rtti -fno-exceptions -c
formula.C -o formula.o 
In file included from formula.C:18:
../../src/Lsstream.h:16: sstream: No such file or directory
In file included from ../../src/support/DebugStream.h:19,
 from ../../src/debug.h:108,
 from math_defs.h:30,
 from math_iter.h:27,
 from math_cursor.h:26,
 from formula.C:26:
../../src/support/LOstream.h:17: ostream: No such file or directory

Here is my g++ version:

# g++ -v
Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/specs
gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)

Should I installa a more recent one?
Thanks,

-- 
Stefano Ghirlanda, Zoologiska Institutionen, Stockholms Universitet
  email: you know it already, tel: +46-8-164055, fax:+46-8-167715
 the free science campaign: http://ethology.zool.su.se/freescience



Re: Compile Errors

2000-01-04 Thread Jean-Marc Lasgouttes

 "Ian" == Ian Macdonald [EMAIL PROTECTED] writes:

Ian If anyone could help me to figure out why I am not able to
Ian compile LyX, I'd appreciate it. I have tried 1.0.4 and 1.1.2, and
Ian this error comes up on both of them. I have egcs 2.91.57 on PPC
Ian R4. I know that there were some problems with the version of egcs
Ian included with this linix version, but I upgraded to this version,
Ian which is supposed to be stable. 

Hello,

I guess this error is due to some strange definition of macros on your
system. The relevant lines are the following (correct me if I'm wrong):

fprintf(stderr, "GS [%ld] error %d E:%d %d S:%d %d\n", long(pid),
*status, WIFEXITED(*status), WEXITSTATUS(*status),
WIFSIGNALED(*status), WTERMSIG(*status));

The first possible fix is to just comment out these lines, since they
are just an error message. I'd like however to find a better fix...

Could you run the file through the preprocessor and tell me what the
relevant lines look like? Something like

* run 
  g++ -E -I. -I. -I../images -I/usr/X11R6/include figinset.C figinset.cpp

* search in figinset.cpp the lines corresponding to the lines above.

Hope this helps.

JMarc



Re: Compile Errors

2000-01-04 Thread Jean-Marc Lasgouttes

 "Ian" == Ian Macdonald [EMAIL PROTECTED] writes:

Ian If anyone could help me to figure out why I am not able to
Ian compile LyX, I'd appreciate it. I have tried 1.0.4 and 1.1.2, and
Ian this error comes up on both of them. I have egcs 2.91.57 on PPC
Ian R4. I know that there were some problems with the version of egcs
Ian included with this linix version, but I upgraded to this version,
Ian which is supposed to be stable. 

Hello,

I guess this error is due to some strange definition of macros on your
system. The relevant lines are the following (correct me if I'm wrong):

fprintf(stderr, "GS [%ld] error %d E:%d %d S:%d %d\n", long(pid),
*status, WIFEXITED(*status), WEXITSTATUS(*status),
WIFSIGNALED(*status), WTERMSIG(*status));

The first possible fix is to just comment out these lines, since they
are just an error message. I'd like however to find a better fix...

Could you run the file through the preprocessor and tell me what the
relevant lines look like? Something like

* run 
  g++ -E -I. -I. -I../images -I/usr/X11R6/include figinset.C figinset.cpp

* search in figinset.cpp the lines corresponding to the lines above.

Hope this helps.

JMarc



Re: Compile Errors

2000-01-04 Thread Jean-Marc Lasgouttes

> "Ian" == Ian Macdonald <[EMAIL PROTECTED]> writes:

Ian> If anyone could help me to figure out why I am not able to
Ian> compile LyX, I'd appreciate it. I have tried 1.0.4 and 1.1.2, and
Ian> this error comes up on both of them. I have egcs 2.91.57 on PPC
Ian> R4. I know that there were some problems with the version of egcs
Ian> included with this linix version, but I upgraded to this version,
Ian> which is supposed to be stable. 

Hello,

I guess this error is due to some strange definition of macros on your
system. The relevant lines are the following (correct me if I'm wrong):

fprintf(stderr, "GS [%ld] error %d E:%d %d S:%d %d\n", long(pid),
*status, WIFEXITED(*status), WEXITSTATUS(*status),
WIFSIGNALED(*status), WTERMSIG(*status));

The first possible fix is to just comment out these lines, since they
are just an error message. I'd like however to find a better fix...

Could you run the file through the preprocessor and tell me what the
relevant lines look like? Something like

* run 
  g++ -E -I. -I. -I../images -I/usr/X11R6/include figinset.C >figinset.cpp

* search in figinset.cpp the lines corresponding to the lines above.

Hope this helps.

JMarc



Compile Errors

2000-01-03 Thread Ian Macdonald

If anyone could help me to figure out why I am not able to compile LyX, I'd appreciate 
it. I have tried 1.0.4 and 1.1.2, and this error comes up on both of them. I have egcs 
2.91.57 on PPC R4. I know that there were some problems with the version of egcs 
included with this linix version, but I upgraded to this version, which is supposed to 
be stable.

I have tried running configure with just about all of the different option that are 
listed in the INSTALL file, and no matter what I do, this part of the compile fails. I 
know only a small amount of C and know nothing of C++, so I don't really understand 
the error.

Here is the error log:


g++ -c -g -02 -I. -I. -I../images -I/usr/X11R6/include figinset.C
figinset.C: In function `void sigchldchecker(pid_t, int *)':
figinset.C: `status' undeclared (first use this function)
figinset.C: (Each undeclared identifier is reported only once
figinset.C: for each function it appears in.)
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:849: warning: ANSI C++ forbids declaration `__in' with no type
make[1]: *** [figinset.o] Error 1


If anyone could point me in the right direction, I'd appreciate it. Thanks in advance!

-Ian

-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(440) 775-7606

Ahora escribamos este letrero en las paredes
   la vida es subversiva   -E. Cardenal



Compile Errors

2000-01-03 Thread Ian Macdonald

If anyone could help me to figure out why I am not able to compile LyX, I'd appreciate 
it. I have tried 1.0.4 and 1.1.2, and this error comes up on both of them. I have egcs 
2.91.57 on PPC R4. I know that there were some problems with the version of egcs 
included with this linix version, but I upgraded to this version, which is supposed to 
be stable.

I have tried running configure with just about all of the different option that are 
listed in the INSTALL file, and no matter what I do, this part of the compile fails. I 
know only a small amount of C and know nothing of C++, so I don't really understand 
the error.

Here is the error log:


g++ -c -g -02 -I. -I. -I../images -I/usr/X11R6/include figinset.C
figinset.C: In function `void sigchldchecker(pid_t, int *)':
figinset.C: `status' undeclared (first use this function)
figinset.C: (Each undeclared identifier is reported only once
figinset.C: for each function it appears in.)
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:849: warning: ANSI C++ forbids declaration `__in' with no type
make[1]: *** [figinset.o] Error 1


If anyone could point me in the right direction, I'd appreciate it. Thanks in advance!

-Ian

-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
(440) 775-7606

Ahora escribamos este letrero en las paredes
   la vida es subversiva   -E. Cardenal



Compile Errors

2000-01-03 Thread Ian Macdonald

If anyone could help me to figure out why I am not able to compile LyX, I'd appreciate 
it. I have tried 1.0.4 and 1.1.2, and this error comes up on both of them. I have egcs 
2.91.57 on PPC R4. I know that there were some problems with the version of egcs 
included with this linix version, but I upgraded to this version, which is supposed to 
be stable.

I have tried running configure with just about all of the different option that are 
listed in the INSTALL file, and no matter what I do, this part of the compile fails. I 
know only a small amount of C and know nothing of C++, so I don't really understand 
the error.

Here is the error log:


g++ -c -g -02 -I. -I. -I../images -I/usr/X11R6/include figinset.C
figinset.C: In function `void sigchldchecker(pid_t, int *)':
figinset.C: `status' undeclared (first use this function)
figinset.C: (Each undeclared identifier is reported only once
figinset.C: for each function it appears in.)
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:848: warning: ANSI C++ forbids declaration `__in' with no type
figinset.C:849: warning: ANSI C++ forbids declaration `__in' with no type
make[1]: *** [figinset.o] Error 1


If anyone could point me in the right direction, I'd appreciate it. Thanks in advance!

-Ian

-- 
<[EMAIL PROTECTED]>
<[EMAIL PROTECTED]>
(440) 775-7606

Ahora escribamos este letrero en las paredes
   la vida es subversiva   -E. Cardenal