Re: I can´ t to compile lyx

2010-03-21 Thread Enrico Forestieri
On Sat, Mar 20, 2010 at 05:37:36PM -0700, Marcelo Acuña wrote:

 This file was generated using the moc from
  4.5.1. It

inside lyx tree:
find . -name '*moc*' | xargs rm 
   
   Before compiler error I found only one *moc*.
   I run make clean and is deleted.
   I run configure and make produces the error again.
  
  In case you compiled Qt by yourself and you also have the
  system Qt installed,
  then, most probably, the wrong moc is being picked up by
  the configure script.
  Supposing that you installed Qt in /usr/local/qt, try the
  following:
  $ cd /usr/local/qt/bin
  $ ln -s moc moc-qt4
  $ ln -s uic uic-qt4
  and then try to configure again. If I guessed right, it
  should now work.
 
  Thanks Enrico. This solved the problem.
  I gave a look to output of the configure and I noticed that also it find for
 
  rcc-qt4
 
  without finding it.
  It will be necessary to also make a link to that file?

That doesn't hurt but should not be necessary. The configure script looks
in the PATH first for xxx-qt4 and then xxx. This is because you can also
have Qt3 installed and it has to be sure to pick up the Qt4 version.
For this reason, distributions rename the Qt4 xxx compilers as xxx-qt4.
This is done for moc and uic, but not for rcc (as Qt3 doesn't have it).
What happens is that when looking for moc-qt4 and uic-qt4, they are not
found in the bin dir of the specified Qt4 location (which is prepended to
the PATH) but they are found in the system Qt4 bin dir. So, the check for
moc and uic (without '-qt4') is not performed. Instead, rcc-qt4 is not
found neither in the system Qt4 bin dir nor in the specified Qt4 dir, so
configure now looks for rcc and finds it in the right place.

-- 
Enrico


Re: I can´t to compile lyx

2010-03-21 Thread Marcelo Acuña
   Thanks Enrico. This solved the problem.
   I gave a look to output of the configure and I
 noticed that also it find for
  
   rcc-qt4
  
   without finding it.
   It will be necessary to also make a link to that
 file?
 
 That doesn't hurt but should not be necessary. The
 configure script looks
 in the PATH first for xxx-qt4 and then xxx. This is because
 you can also
 have Qt3 installed and it has to be sure to pick up the Qt4
 version.
 For this reason, distributions rename the Qt4 xxx compilers
 as xxx-qt4.
 This is done for moc and uic, but not for rcc (as Qt3
 doesn't have it).
 What happens is that when looking for moc-qt4 and uic-qt4,
 they are not
 found in the bin dir of the specified Qt4 location (which
 is prepended to
 the PATH) but they are found in the system Qt4 bin dir. So,
 the check for
 moc and uic (without '-qt4') is not performed. Instead,
 rcc-qt4 is not
 found neither in the system Qt4 bin dir nor in the
 specified Qt4 dir, so
 configure now looks for rcc and finds it in the right
 place.

 The problem was solved, but lyx now not take colors (like color bakground for 
outline) from qtconfig.
 Others changes, like fonts are taked.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-21 Thread Enrico Forestieri
On Sat, Mar 20, 2010 at 05:37:36PM -0700, Marcelo Acuña wrote:

 This file was generated using the moc from
  4.5.1. It

inside lyx tree:
find . -name '*moc*' | xargs rm 
   
   Before compiler error I found only one *moc*.
   I run make clean and is deleted.
   I run configure and make produces the error again.
  
  In case you compiled Qt by yourself and you also have the
  system Qt installed,
  then, most probably, the wrong moc is being picked up by
  the configure script.
  Supposing that you installed Qt in /usr/local/qt, try the
  following:
  $ cd /usr/local/qt/bin
  $ ln -s moc moc-qt4
  $ ln -s uic uic-qt4
  and then try to configure again. If I guessed right, it
  should now work.
 
  Thanks Enrico. This solved the problem.
  I gave a look to output of the configure and I noticed that also it find for
 
  rcc-qt4
 
  without finding it.
  It will be necessary to also make a link to that file?

That doesn't hurt but should not be necessary. The configure script looks
in the PATH first for xxx-qt4 and then xxx. This is because you can also
have Qt3 installed and it has to be sure to pick up the Qt4 version.
For this reason, distributions rename the Qt4 xxx compilers as xxx-qt4.
This is done for moc and uic, but not for rcc (as Qt3 doesn't have it).
What happens is that when looking for moc-qt4 and uic-qt4, they are not
found in the bin dir of the specified Qt4 location (which is prepended to
the PATH) but they are found in the system Qt4 bin dir. So, the check for
moc and uic (without '-qt4') is not performed. Instead, rcc-qt4 is not
found neither in the system Qt4 bin dir nor in the specified Qt4 dir, so
configure now looks for rcc and finds it in the right place.

-- 
Enrico


Re: I can´t to compile lyx

2010-03-21 Thread Marcelo Acuña
   Thanks Enrico. This solved the problem.
   I gave a look to output of the configure and I
 noticed that also it find for
  
   rcc-qt4
  
   without finding it.
   It will be necessary to also make a link to that
 file?
 
 That doesn't hurt but should not be necessary. The
 configure script looks
 in the PATH first for xxx-qt4 and then xxx. This is because
 you can also
 have Qt3 installed and it has to be sure to pick up the Qt4
 version.
 For this reason, distributions rename the Qt4 xxx compilers
 as xxx-qt4.
 This is done for moc and uic, but not for rcc (as Qt3
 doesn't have it).
 What happens is that when looking for moc-qt4 and uic-qt4,
 they are not
 found in the bin dir of the specified Qt4 location (which
 is prepended to
 the PATH) but they are found in the system Qt4 bin dir. So,
 the check for
 moc and uic (without '-qt4') is not performed. Instead,
 rcc-qt4 is not
 found neither in the system Qt4 bin dir nor in the
 specified Qt4 dir, so
 configure now looks for rcc and finds it in the right
 place.

 The problem was solved, but lyx now not take colors (like color bakground for 
outline) from qtconfig.
 Others changes, like fonts are taked.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-21 Thread Enrico Forestieri
On Sat, Mar 20, 2010 at 05:37:36PM -0700, Marcelo Acuña wrote:

> > > > > This file was generated using the moc from
> > 4.5.1. It
> > > > 
> > > > inside lyx tree:
> > > > find . -name '*moc*' | xargs rm 
> > > 
> > > Before compiler error I found only one *moc*.
> > > I run make clean and is deleted.
> > > I run configure and make produces the error again.
> > 
> > In case you compiled Qt by yourself and you also have the
> > system Qt installed,
> > then, most probably, the wrong moc is being picked up by
> > the configure script.
> > Supposing that you installed Qt in /usr/local/qt, try the
> > following:
> > $ cd /usr/local/qt/bin
> > $ ln -s moc moc-qt4
> > $ ln -s uic uic-qt4
> > and then try to configure again. If I guessed right, it
> > should now work.
> 
>  Thanks Enrico. This solved the problem.
>  I gave a look to output of the configure and I noticed that also it find for
> 
>  rcc-qt4
> 
>  without finding it.
>  It will be necessary to also make a link to that file?

That doesn't hurt but should not be necessary. The configure script looks
in the PATH first for xxx-qt4 and then xxx. This is because you can also
have Qt3 installed and it has to be sure to pick up the Qt4 version.
For this reason, distributions rename the Qt4 xxx compilers as xxx-qt4.
This is done for moc and uic, but not for rcc (as Qt3 doesn't have it).
What happens is that when looking for moc-qt4 and uic-qt4, they are not
found in the bin dir of the specified Qt4 location (which is prepended to
the PATH) but they are found in the system Qt4 bin dir. So, the check for
moc and uic (without '-qt4') is not performed. Instead, rcc-qt4 is not
found neither in the system Qt4 bin dir nor in the specified Qt4 dir, so
configure now looks for rcc and finds it in the right place.

-- 
Enrico


Re: I can´t to compile lyx

2010-03-21 Thread Marcelo Acuña
> >  Thanks Enrico. This solved the problem.
> >  I gave a look to output of the configure and I
> noticed that also it find for
> > 
> >  rcc-qt4
> > 
> >  without finding it.
> >  It will be necessary to also make a link to that
> file?
 
> That doesn't hurt but should not be necessary. The
> configure script looks
> in the PATH first for xxx-qt4 and then xxx. This is because
> you can also
> have Qt3 installed and it has to be sure to pick up the Qt4
> version.
> For this reason, distributions rename the Qt4 xxx compilers
> as xxx-qt4.
> This is done for moc and uic, but not for rcc (as Qt3
> doesn't have it).
> What happens is that when looking for moc-qt4 and uic-qt4,
> they are not
> found in the bin dir of the specified Qt4 location (which
> is prepended to
> the PATH) but they are found in the system Qt4 bin dir. So,
> the check for
> moc and uic (without '-qt4') is not performed. Instead,
> rcc-qt4 is not
> found neither in the system Qt4 bin dir nor in the
> specified Qt4 dir, so
> configure now looks for rcc and finds it in the right
> place.

 The problem was solved, but lyx now not take colors (like color bakground for 
outline) from qtconfig.
 Others changes, like fonts are taked.
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
   Before compiler error I found only one *moc*.
   I run make clean and is deleted.
   I run configure and make produces the error
 again.
  
 1. post the error here.
 2. try fresh svn checkout, what happens?
 
 pavel
 
 Problem solved with links.
 Error here:
 g++ -DHAVE_CONFIG_H -I. -I../.. -I./.. -I../../boost
 -DQT_NO_STL 
 -DQT_NO_KEYWORDS -DQT_SHARED -I/usr/share/qt4/include 
 -I/usr/share/qt4/include/QtCore -O3 -MT
 SignalSlotPrivate.lo -MD 
 -MP -MF .deps/SignalSlotPrivate.Tpo -c
 SignalSlotPrivate.cpp -o 
 SignalSlotPrivate.o
 
 In file included from SignalSlotPrivate.cpp:15:
 
 SignalSlotPrivate_moc.cpp:14:2: error: #error This file
 was generated using the moc from 4.5.1. It
 
 SignalSlotPrivate_moc.cpp:15:2: error: #error cannot be
 used with the include files from this version of Qt.
 
 SignalSlotPrivate_moc.cpp:16:2: error: #error (The moc has
 
 changed too much.)
 
 make[5]: *** [SignalSlotPrivate.lo] Error 1
 
 
 
  
 
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
  Before compiler error I found only one *moc*.
  I run make clean and is deleted.
  I run configure and make produces the error
again.
 
  In case you compiled Qt by yourself and you also have
  the system Qt installed,
  then, most probably, the wrong moc is being picked up
  by the configure script.
  Supposing that you installed Qt in /usr/local/qt, try
  the following:
  $ cd /usr/local/qt/bin
  $ ln -s moc moc-qt4
  $ ln -s uic uic-qt4
  and then try to configure again. If I guessed right,
  it should now work.
  
  Thanks Enrico. This solved the problem.
  I gave a look to output of the configure and I noticed
 that also it find for
 
  rcc-qt4
 
  without finding it.
  It will be necessary to also make a link to that file?
 Marcelo
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
   Before compiler error I found only one *moc*.
   I run make clean and is deleted.
   I run configure and make produces the error
 again.
  
 1. post the error here.
 2. try fresh svn checkout, what happens?
 
 pavel
 
 Problem solved with links.
 Error here:
 g++ -DHAVE_CONFIG_H -I. -I../.. -I./.. -I../../boost
 -DQT_NO_STL 
 -DQT_NO_KEYWORDS -DQT_SHARED -I/usr/share/qt4/include 
 -I/usr/share/qt4/include/QtCore -O3 -MT
 SignalSlotPrivate.lo -MD 
 -MP -MF .deps/SignalSlotPrivate.Tpo -c
 SignalSlotPrivate.cpp -o 
 SignalSlotPrivate.o
 
 In file included from SignalSlotPrivate.cpp:15:
 
 SignalSlotPrivate_moc.cpp:14:2: error: #error This file
 was generated using the moc from 4.5.1. It
 
 SignalSlotPrivate_moc.cpp:15:2: error: #error cannot be
 used with the include files from this version of Qt.
 
 SignalSlotPrivate_moc.cpp:16:2: error: #error (The moc has
 
 changed too much.)
 
 make[5]: *** [SignalSlotPrivate.lo] Error 1
 
 
 
  
 
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
  Before compiler error I found only one *moc*.
  I run make clean and is deleted.
  I run configure and make produces the error
again.
 
  In case you compiled Qt by yourself and you also have
  the system Qt installed,
  then, most probably, the wrong moc is being picked up
  by the configure script.
  Supposing that you installed Qt in /usr/local/qt, try
  the following:
  $ cd /usr/local/qt/bin
  $ ln -s moc moc-qt4
  $ ln -s uic uic-qt4
  and then try to configure again. If I guessed right,
  it should now work.
  
  Thanks Enrico. This solved the problem.
  I gave a look to output of the configure and I noticed
 that also it find for
 
  rcc-qt4
 
  without finding it.
  It will be necessary to also make a link to that file?
 Marcelo
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
> > > Before compiler error I found only one *moc*.
> > > I run make clean and is deleted.
> > > I run configure and make produces the error
> again.
>  
> 1. post the error here.
> 2. try fresh svn checkout, what happens?
> 
> pavel
 
 Problem solved with links.
 Error here:
 g++ -DHAVE_CONFIG_H -I. -I../.. -I./.. -I../../boost
 -DQT_NO_STL 
 -DQT_NO_KEYWORDS -DQT_SHARED -I/usr/share/qt4/include 
 -I/usr/share/qt4/include/QtCore -O3 -MT
 SignalSlotPrivate.lo -MD 
 -MP -MF .deps/SignalSlotPrivate.Tpo -c
 SignalSlotPrivate.cpp -o 
 SignalSlotPrivate.o
 
 In file included from SignalSlotPrivate.cpp:15:
 
 SignalSlotPrivate_moc.cpp:14:2: error: #error "This file
 was generated using the moc from 4.5.1. It"
 
 SignalSlotPrivate_moc.cpp:15:2: error: #error "cannot be
 used with the include files from this version of Qt."
 
 SignalSlotPrivate_moc.cpp:16:2: error: #error "(The moc has
 
 changed too much.)"
 
 make[5]: *** [SignalSlotPrivate.lo] Error 1
 
 
 
  
 
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-20 Thread Marcelo Acuña
> > inside lyx tree:
> > find . -name '*moc*' | xargs rm 
 
> > Before compiler error I found only one *moc*.
> > I run make clean and is deleted.
> > I run configure and make produces the error
>again.
 
 > In case you compiled Qt by yourself and you also have
 > the system Qt installed,
 > then, most probably, the wrong moc is being picked up
 > by the configure script.
 > Supposing that you installed Qt in /usr/local/qt, try
 > the following:
 > $ cd /usr/local/qt/bin
 > $ ln -s moc moc-qt4
 > $ ln -s uic uic-qt4
 > and then try to configure again. If I guessed right,
 > it should now work.
  
  Thanks Enrico. This solved the problem.
  I gave a look to output of the configure and I noticed
 that also it find for
 
  rcc-qt4
 
  without finding it.
  It will be necessary to also make a link to that file?
 Marcelo
 



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
  This file was generated using the moc from 4.5.1. It
 
 inside lyx tree:
 find . -name '*moc*' | xargs rm 

Before compiler error I found only one *moc*.
I run make clean and is deleted.
I run configure and make produces the error again.

Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-19 Thread Pavel Sanda
Marcelo Acu?a wrote:
   This file was generated using the moc from 4.5.1. It
  
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
 Before compiler error I found only one *moc*.
 I run make clean and is deleted.
 I run configure and make produces the error again.

1. post the error here.
2. try fresh svn checkout, what happens?

pavel


Re: I can´t to compile lyx

2010-03-19 Thread Enrico Forestieri
Marcelo Acuña writes:
 
   This file was generated using the moc from 4.5.1. It
  
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
 Before compiler error I found only one *moc*.
 I run make clean and is deleted.
 I run configure and make produces the error again.

In case you compiled Qt by yourself and you also have the system Qt installed,
then, most probably, the wrong moc is being picked up by the configure script.
Supposing that you installed Qt in /usr/local/qt, try the following:
$ cd /usr/local/qt/bin
$ ln -s moc moc-qt4
$ ln -s uic uic-qt4
and then try to configure again. If I guessed right, it should now work.

-- 
Enrico



Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
This file was generated using the moc from
 4.5.1. It
   
   inside lyx tree:
   find . -name '*moc*' | xargs rm 
  
  Before compiler error I found only one *moc*.
  I run make clean and is deleted.
  I run configure and make produces the error again.
 
 In case you compiled Qt by yourself and you also have the
 system Qt installed,

Yes. I had installed qt 4.5.1. Then I compiled the new version.
The new version is recongnized for configure.

 then, most probably, the wrong moc is being picked up by
 the configure script.
 Supposing that you installed Qt in /usr/local/qt, try the
 following:
 $ cd /usr/local/qt/bin
 $ ln -s moc moc-qt4
 $ ln -s uic uic-qt4
 and then try to configure again. If I guessed right, it
 should now work.

Ok. I will try this.
Thanks.
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
  This file was generated using the moc from 4.5.1. It
 
 inside lyx tree:
 find . -name '*moc*' | xargs rm 

Before compiler error I found only one *moc*.
I run make clean and is deleted.
I run configure and make produces the error again.

Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-19 Thread Pavel Sanda
Marcelo Acu?a wrote:
   This file was generated using the moc from 4.5.1. It
  
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
 Before compiler error I found only one *moc*.
 I run make clean and is deleted.
 I run configure and make produces the error again.

1. post the error here.
2. try fresh svn checkout, what happens?

pavel


Re: I can´t to compile lyx

2010-03-19 Thread Enrico Forestieri
Marcelo Acuña writes:
 
   This file was generated using the moc from 4.5.1. It
  
  inside lyx tree:
  find . -name '*moc*' | xargs rm 
 
 Before compiler error I found only one *moc*.
 I run make clean and is deleted.
 I run configure and make produces the error again.

In case you compiled Qt by yourself and you also have the system Qt installed,
then, most probably, the wrong moc is being picked up by the configure script.
Supposing that you installed Qt in /usr/local/qt, try the following:
$ cd /usr/local/qt/bin
$ ln -s moc moc-qt4
$ ln -s uic uic-qt4
and then try to configure again. If I guessed right, it should now work.

-- 
Enrico



Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
This file was generated using the moc from
 4.5.1. It
   
   inside lyx tree:
   find . -name '*moc*' | xargs rm 
  
  Before compiler error I found only one *moc*.
  I run make clean and is deleted.
  I run configure and make produces the error again.
 
 In case you compiled Qt by yourself and you also have the
 system Qt installed,

Yes. I had installed qt 4.5.1. Then I compiled the new version.
The new version is recongnized for configure.

 then, most probably, the wrong moc is being picked up by
 the configure script.
 Supposing that you installed Qt in /usr/local/qt, try the
 following:
 $ cd /usr/local/qt/bin
 $ ln -s moc moc-qt4
 $ ln -s uic uic-qt4
 and then try to configure again. If I guessed right, it
 should now work.

Ok. I will try this.
Thanks.
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
> > This file was generated using the moc from 4.5.1. It
> 
> inside lyx tree:
> find . -name '*moc*' | xargs rm 

Before compiler error I found only one *moc*.
I run make clean and is deleted.
I run configure and make produces the error again.

Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-19 Thread Pavel Sanda
Marcelo Acu?a wrote:
> > > This file was generated using the moc from 4.5.1. It
> > 
> > inside lyx tree:
> > find . -name '*moc*' | xargs rm 
> 
> Before compiler error I found only one *moc*.
> I run make clean and is deleted.
> I run configure and make produces the error again.

1. post the error here.
2. try fresh svn checkout, what happens?

pavel


Re: I can´t to compile lyx

2010-03-19 Thread Enrico Forestieri
Marcelo Acuña writes:
> 
> > > This file was generated using the moc from 4.5.1. It
> > 
> > inside lyx tree:
> > find . -name '*moc*' | xargs rm 
> 
> Before compiler error I found only one *moc*.
> I run make clean and is deleted.
> I run configure and make produces the error again.

In case you compiled Qt by yourself and you also have the system Qt installed,
then, most probably, the wrong moc is being picked up by the configure script.
Supposing that you installed Qt in /usr/local/qt, try the following:
$ cd /usr/local/qt/bin
$ ln -s moc moc-qt4
$ ln -s uic uic-qt4
and then try to configure again. If I guessed right, it should now work.

-- 
Enrico



Re: I can´t to compile lyx

2010-03-19 Thread Marcelo Acuña
> > > > This file was generated using the moc from
> 4.5.1. It
> > > 
> > > inside lyx tree:
> > > find . -name '*moc*' | xargs rm 
> > 
> > Before compiler error I found only one *moc*.
> > I run make clean and is deleted.
> > I run configure and make produces the error again.
> 
> In case you compiled Qt by yourself and you also have the
> system Qt installed,

Yes. I had installed qt 4.5.1. Then I compiled the new version.
The new version is recongnized for configure.

> then, most probably, the wrong moc is being picked up by
> the configure script.
> Supposing that you installed Qt in /usr/local/qt, try the
> following:
> $ cd /usr/local/qt/bin
> $ ln -s moc moc-qt4
> $ ln -s uic uic-qt4
> and then try to configure again. If I guessed right, it
> should now work.

Ok. I will try this.
Thanks.
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
Hello,
 I can´t to compile lyx 1.6.5 with qt 4.6.2.
 How I can solve it?

 


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
 Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:14 PM, Pavel Sanda wrote:

Marcelo Acu?a wrote:
   

Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?
 

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.

   
I can compile branch with Qt 4.6.2, so it isn't 4.6.2. What's the gcc 
version? And, as Pavel said, what's the error?


rh



RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
 Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?
 
 What is the problem ?
 
 I have linux lenny and qt 4.6.2.
 When I try to compile lyx I get a message that say that moc
 is too different.
 
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
I have linux lenny and qt 4.6.2.
When I try to compile lyx I get a message that say
 that moc is too different.

 Then, there are still moc_*.cpp files left that were
 generated during a previous build with an older
 version of qt. 
 
 Please try clean up your sources and/or explicitly
 remove
 to moc_*.cpp files and other files generated during
 compilation.
 
 Ok. But, previous to ./configure I run make clean and get
 same error.
 Regards.
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
 Ok. But, previous to ./configure I run make clean and
 get same error.
 
 
 Maybe not everything is cleaned. 
 
 Please manually remove the following *_moc.cpp files:
 src/support/SignalSlotPrivate_moc.cpp
 Src/frontends/qt4/Action_moc.cpp
 Src/frontends/qt4/BulletsModule_moc.cpp
 Src/frontends/qt4/CustomizedWidgets_moc.cpp
 Src/frontends/qt4/EmptyTable_moc.cpp
 .. Etc.
 
 And all other files ending with _moc.cpp in the
 src/frontends/qt4/ directory.
 
 If you open one of these files you'll see the following:
 
 #error This file was generated using the moc from 4.5.1.
 It
 #error cannot be used with the include files from this
 version of Qt.
 #error (The moc has changed too much.)
 
 Which is probably the error message you get.
 
 Vincent

Yes! This is the error message.
Thanks!
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
  Hello,
   I can´t to compile lyx 1.6.5 with qt 4.6.2.
   How I can solve it?
 
 by fixing it? :)
 seriously, when you dont report the exact error there is no
 way how to help.
 pavel

Excuse me. When I responded to Vincent I believed to do it with copy to the 
list.
As Vincent says the error message is:
This file was generated using the moc from 4.5.1. It
cannot be used with the include files from this
version of Qt.
(The moc has changed too much.)

Before ./configure I put
make clean

my gcc is 4.3.x if my memory does not fail to me (I am not in front of my 
computer now).
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
 This file was generated using the moc from 4.5.1. It

inside lyx tree:
find . -name '*moc*' | xargs rm 
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:48 PM, Marcelo Acuña wrote:

Ok. But, previous to ./configure I run make clean and
   

get same error.
 
   

Maybe not everything is cleaned.

Please manually remove the following *_moc.cpp files:
src/support/SignalSlotPrivate_moc.cpp
Src/frontends/qt4/Action_moc.cpp
Src/frontends/qt4/BulletsModule_moc.cpp
Src/frontends/qt4/CustomizedWidgets_moc.cpp
Src/frontends/qt4/EmptyTable_moc.cpp
.. Etc.

And all other files ending with _moc.cpp in the
src/frontends/qt4/ directory.

If you open one of these files you'll see the following:

#error This file was generated using the moc from 4.5.1.
It
#error cannot be used with the include files from this
version of Qt.
#error (The moc has changed too much.)

Which is probably the error message you get.

Vincent
 

Yes! This is the error message.

   

Try make clean  make distclean, or even try a fresh checkout.

rh



I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
Hello,
 I can´t to compile lyx 1.6.5 with qt 4.6.2.
 How I can solve it?

 


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
 Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:14 PM, Pavel Sanda wrote:

Marcelo Acu?a wrote:
   

Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?
 

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.

   
I can compile branch with Qt 4.6.2, so it isn't 4.6.2. What's the gcc 
version? And, as Pavel said, what's the error?


rh



RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
 Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?
 
 What is the problem ?
 
 I have linux lenny and qt 4.6.2.
 When I try to compile lyx I get a message that say that moc
 is too different.
 
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
I have linux lenny and qt 4.6.2.
When I try to compile lyx I get a message that say
 that moc is too different.

 Then, there are still moc_*.cpp files left that were
 generated during a previous build with an older
 version of qt. 
 
 Please try clean up your sources and/or explicitly
 remove
 to moc_*.cpp files and other files generated during
 compilation.
 
 Ok. But, previous to ./configure I run make clean and get
 same error.
 Regards.
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
 Ok. But, previous to ./configure I run make clean and
 get same error.
 
 
 Maybe not everything is cleaned. 
 
 Please manually remove the following *_moc.cpp files:
 src/support/SignalSlotPrivate_moc.cpp
 Src/frontends/qt4/Action_moc.cpp
 Src/frontends/qt4/BulletsModule_moc.cpp
 Src/frontends/qt4/CustomizedWidgets_moc.cpp
 Src/frontends/qt4/EmptyTable_moc.cpp
 .. Etc.
 
 And all other files ending with _moc.cpp in the
 src/frontends/qt4/ directory.
 
 If you open one of these files you'll see the following:
 
 #error This file was generated using the moc from 4.5.1.
 It
 #error cannot be used with the include files from this
 version of Qt.
 #error (The moc has changed too much.)
 
 Which is probably the error message you get.
 
 Vincent

Yes! This is the error message.
Thanks!
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
  Hello,
   I can´t to compile lyx 1.6.5 with qt 4.6.2.
   How I can solve it?
 
 by fixing it? :)
 seriously, when you dont report the exact error there is no
 way how to help.
 pavel

Excuse me. When I responded to Vincent I believed to do it with copy to the 
list.
As Vincent says the error message is:
This file was generated using the moc from 4.5.1. It
cannot be used with the include files from this
version of Qt.
(The moc has changed too much.)

Before ./configure I put
make clean

my gcc is 4.3.x if my memory does not fail to me (I am not in front of my 
computer now).
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
 This file was generated using the moc from 4.5.1. It

inside lyx tree:
find . -name '*moc*' | xargs rm 
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:48 PM, Marcelo Acuña wrote:

Ok. But, previous to ./configure I run make clean and
   

get same error.
 
   

Maybe not everything is cleaned.

Please manually remove the following *_moc.cpp files:
src/support/SignalSlotPrivate_moc.cpp
Src/frontends/qt4/Action_moc.cpp
Src/frontends/qt4/BulletsModule_moc.cpp
Src/frontends/qt4/CustomizedWidgets_moc.cpp
Src/frontends/qt4/EmptyTable_moc.cpp
.. Etc.

And all other files ending with _moc.cpp in the
src/frontends/qt4/ directory.

If you open one of these files you'll see the following:

#error This file was generated using the moc from 4.5.1.
It
#error cannot be used with the include files from this
version of Qt.
#error (The moc has changed too much.)

Which is probably the error message you get.

Vincent
 

Yes! This is the error message.

   

Try make clean  make distclean, or even try a fresh checkout.

rh



I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
Hello,
 I can´t to compile lyx 1.6.5 with qt 4.6.2.
 How I can solve it?

 


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
> Hello,
>  I can´t to compile lyx 1.6.5 with qt 4.6.2.
>  How I can solve it?

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:14 PM, Pavel Sanda wrote:

Marcelo Acu?a wrote:
   

Hello,
  I can´t to compile lyx 1.6.5 with qt 4.6.2.
  How I can solve it?
 

by fixing it? :)
seriously, when you dont report the exact error there is no way how to help.

   
I can compile branch with Qt 4.6.2, so it isn't 4.6.2. What's the gcc 
version? And, as Pavel said, what's the error?


rh



RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
> >Hello,
> > I can´t to compile lyx 1.6.5 with qt 4.6.2.
> > How I can solve it?
 
> What is the problem ?
 
 I have linux lenny and qt 4.6.2.
 When I try to compile lyx I get a message that say that moc
 is too different.
 
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
>>I have linux lenny and qt 4.6.2.
>>When I try to compile lyx I get a message that say
>> that moc is too different.

> Then, there are still moc_*.cpp files left that were
> generated during a previous build with an older
> version of qt. 
> 
> Please try clean up your sources and/or explicitly
> remove
> to moc_*.cpp files and other files generated during
> compilation.
 
 Ok. But, previous to ./configure I run make clean and get
 same error.
 Regards.
 Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


RE: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
> >Ok. But, previous to ./configure I run make clean and
> get same error.
> >
> 
> Maybe not everything is cleaned. 
> 
> Please manually remove the following *_moc.cpp files:
> src/support/SignalSlotPrivate_moc.cpp
> Src/frontends/qt4/Action_moc.cpp
> Src/frontends/qt4/BulletsModule_moc.cpp
> Src/frontends/qt4/CustomizedWidgets_moc.cpp
> Src/frontends/qt4/EmptyTable_moc.cpp
> .. Etc.
> 
> And all other files ending with _moc.cpp in the
> src/frontends/qt4/ directory.
> 
> If you open one of these files you'll see the following:
> 
> #error "This file was generated using the moc from 4.5.1.
> It"
> #error "cannot be used with the include files from this
> version of Qt."
> #error "(The moc has changed too much.)"
> 
> Which is probably the error message you get.
> 
> Vincent

Yes! This is the error message.
Thanks!
Marcelo


  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´t to compile lyx

2010-03-17 Thread Marcelo Acuña
> > Hello,
> >  I can´t to compile lyx 1.6.5 with qt 4.6.2.
> >  How I can solve it?
> 
> by fixing it? :)
> seriously, when you dont report the exact error there is no
> way how to help.
> pavel

Excuse me. When I responded to Vincent I believed to do it with copy to the 
list.
As Vincent says the error message is:
This file was generated using the moc from 4.5.1. It
cannot be used with the include files from this
version of Qt.
(The moc has changed too much.)

Before ./configure I put
make clean

my gcc is 4.3.x if my memory does not fail to me (I am not in front of my 
computer now).
Marcelo



  Yahoo! Cocina

Encontra las mejores recetas con Yahoo! Cocina.


http://ar.mujer.yahoo.com/cocina/


Re: I can´ t to compile lyx

2010-03-17 Thread Pavel Sanda
Marcelo Acu?a wrote:
> This file was generated using the moc from 4.5.1. It

inside lyx tree:
find . -name '*moc*' | xargs rm 
pavel


Re: I can´t to compile lyx

2010-03-17 Thread rgheck

On 03/17/2010 07:48 PM, Marcelo Acuña wrote:

Ok. But, previous to ./configure I run make clean and
   

get same error.
 
   

Maybe not everything is cleaned.

Please manually remove the following *_moc.cpp files:
src/support/SignalSlotPrivate_moc.cpp
Src/frontends/qt4/Action_moc.cpp
Src/frontends/qt4/BulletsModule_moc.cpp
Src/frontends/qt4/CustomizedWidgets_moc.cpp
Src/frontends/qt4/EmptyTable_moc.cpp
.. Etc.

And all other files ending with _moc.cpp in the
src/frontends/qt4/ directory.

If you open one of these files you'll see the following:

#error "This file was generated using the moc from 4.5.1.
It"
#error "cannot be used with the include files from this
version of Qt."
#error "(The moc has changed too much.)"

Which is probably the error message you get.

Vincent
 

Yes! This is the error message.

   

Try make clean && make distclean, or even try a fresh checkout.

rh