Re: problem compiling (linking) trunk

2008-08-03 Thread Kornel Benko
Am Saturday 02 August 2008 schrieb Dov Feldstern: Pavel Sanda wrote: Dov Feldstern wrote: Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()':

Re: problem compiling (linking) trunk

2008-08-03 Thread Abdelrazak Younes
Kornel Benko wrote: Am Saturday 02 August 2008 schrieb Dov Feldstern: OK, the problem is this: it doesn't compile with the --disable-nls flag; without this flag it compiles cleanly. I always compile with this flag, though I don't know if it still has any significance? But I guess it should

Re: problem compiling (linking) trunk

2008-08-03 Thread Kornel Benko
Am Saturday 02 August 2008 schrieb Dov Feldstern: > Pavel Sanda wrote: > > Dov Feldstern wrote: > >> Abdelrazak Younes wrote: > >>> Dov Feldstern wrote: > Hi! > > Linux, Qt 4.2.1: > > frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function >

Re: problem compiling (linking) trunk

2008-08-03 Thread Abdelrazak Younes
Kornel Benko wrote: Am Saturday 02 August 2008 schrieb Dov Feldstern: OK, the problem is this: it doesn't compile with the --disable-nls flag; without this flag it compiles cleanly. I always compile with this flag, though I don't know if it still has any significance? But I guess it should

Re: problem compiling (linking) trunk

2008-08-02 Thread Dov Feldstern
Pavel Sanda wrote: Dov Feldstern wrote: Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031:

Re: problem compiling (linking) trunk

2008-08-02 Thread Dov Feldstern
Pavel Sanda wrote: Dov Feldstern wrote: Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031:

problem compiling (linking) trunk

2008-08-01 Thread Dov Feldstern
Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031: undefined reference to `lyx::Messages::main_lang_' collect2: ld returned 1 exit status

Re: problem compiling (linking) trunk

2008-08-01 Thread Dov Feldstern
Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031: undefined reference to

Re: problem compiling (linking) trunk

2008-08-01 Thread Pavel Sanda
Dov Feldstern wrote: Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031: undefined

Re: problem compiling (linking) trunk

2008-08-01 Thread Kornel Benko
Am Friday 01 August 2008 schrieb Pavel Sanda: Dov Feldstern wrote: Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()':

Re: problem compiling (linking) trunk

2008-08-01 Thread Kornel Benko
Am Friday 01 August 2008 schrieb Kornel Benko: You have to define somewhere (in e.g. GuiApplication.cpp) namespace lyx {     std::string Message::main_lang_; } because this variable is declared static in class mMessage Grrrm ... I meant class Messages of course --

problem compiling (linking) trunk

2008-08-01 Thread Dov Feldstern
Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031: undefined reference to `lyx::Messages::main_lang_' collect2: ld returned 1 exit status

Re: problem compiling (linking) trunk

2008-08-01 Thread Dov Feldstern
Abdelrazak Younes wrote: Dov Feldstern wrote: Hi! Linux, Qt 4.2.1: frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function `lyx::frontend::GuiApplication::setGuiLanguage()': /home/dovf/lyx-trunk-new/src/frontends/qt4/GuiApplication.cpp:1031: undefined reference to

Re: problem compiling (linking) trunk

2008-08-01 Thread Pavel Sanda
Dov Feldstern wrote: > Abdelrazak Younes wrote: >> Dov Feldstern wrote: >>> Hi! >>> >>> Linux, Qt 4.2.1: >>> >>> frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function >>> `lyx::frontend::GuiApplication::setGuiLanguage()': >>>

Re: problem compiling (linking) trunk

2008-08-01 Thread Kornel Benko
Am Friday 01 August 2008 schrieb Pavel Sanda: > Dov Feldstern wrote: > > Abdelrazak Younes wrote: > >> Dov Feldstern wrote: > >>> Hi! > >>> > >>> Linux, Qt 4.2.1: > >>> > >>> frontends/qt4/.libs/liblyxqt4.a(GuiApplication.o): In function > >>> `lyx::frontend::GuiApplication::setGuiLanguage()': >

Re: problem compiling (linking) trunk

2008-08-01 Thread Kornel Benko
Am Friday 01 August 2008 schrieb Kornel Benko: > You have to define somewhere (in e.g. GuiApplication.cpp) > namespace lyx { >     std::string Message::main_lang_; > } > > because this variable is declared static in class mMessage Grrrm ... I meant class Messages of