Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Angus Leeming
Anand wrote: How do you enforce compiling without STL? Qt's STL compatibility mode means that QString can be converted implicitly to/from std::string. -- Angus

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Jean-Marc Lasgouttes
Angus == Angus Leeming [EMAIL PROTECTED] writes: Angus Anand wrote: How do you enforce compiling without STL? Angus Qt's STL compatibility mode means that QString can be converted Angus implicitly to/from std::string. Yes, and it is disabled by defining QT_NO_STL. Jarc

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Angus Leeming
Anand wrote: How do you enforce compiling without STL? Qt's STL compatibility mode means that QString can be converted implicitly to/from std::string. -- Angus

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Jean-Marc Lasgouttes
Angus == Angus Leeming [EMAIL PROTECTED] writes: Angus Anand wrote: How do you enforce compiling without STL? Angus Qt's STL compatibility mode means that QString can be converted Angus implicitly to/from std::string. Yes, and it is disabled by defining QT_NO_STL. Jarc

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Angus Leeming
Anand wrote: > How do you enforce compiling without STL? Qt's STL compatibility mode means that QString can be converted implicitly to/from std::string. -- Angus

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-18 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: Angus> Anand wrote: >> How do you enforce compiling without STL? Angus> Qt's STL compatibility mode means that QString can be converted Angus> implicitly to/from std::string. Yes, and it is disabled by defining QT_NO_STL. Jarc

LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
Hello, I tried to compile LyX-1.3.6 on stock Slackware 10.1 system. My build script is given below: #!/bin/sh VERSION=1.3.6 SLKCFLAGS=-O2 -march=i486 -mcpu=i686 CFLAGS=$SLKCFLAGS CXXFLAGS=$SLKCFLAGS rm -rf lyx-$VERSION tar -xjvf lyx-$VERSION.tar.bz2 cd lyx-$VERSION # Corret ownerships chown

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Georg Baum
Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Change line 350 of QPrefs.C from if (cb-text(i) == default_font_name) { to if (fromqstr(cb-text(i)) == default_font_name) { Georg

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Jean-Marc Lasgouttes
Georg == Georg Baum [EMAIL PROTECTED] writes: Georg Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Georg Change line 350 of QPrefs.C from Georg if (cb-text(i) == default_font_name) { Georg to if (fromqstr(cb-text(i)) == default_font_name)

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Rich Shepard
On Sun, 17 Jul 2005, Jean-Marc Lasgouttes wrote: I did that in 1.3.7, and additionally enforced compiling without STL compatibility. JMarc, Thank you. Patrick seems to not be a fan of STL. I had fits trying to compile a GIS application that requires it. Finally just gave up. Rich -- Dr.

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 9:33 pm, Jean-Marc Lasgouttes wrote: Georg == Georg Baum [EMAIL PROTECTED] writes: Georg Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Georg Change line 350 of QPrefs.C from Georg if (cb-text(i) ==

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 6:16 pm, Georg Baum wrote: Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Change line 350 of QPrefs.C from if (cb-text(i) == default_font_name) { to if (fromqstr(cb-text(i)) == default_font_name) { Georg I did

LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
Hello, I tried to compile LyX-1.3.6 on stock Slackware 10.1 system. My build script is given below: #!/bin/sh VERSION=1.3.6 SLKCFLAGS=-O2 -march=i486 -mcpu=i686 CFLAGS=$SLKCFLAGS CXXFLAGS=$SLKCFLAGS rm -rf lyx-$VERSION tar -xjvf lyx-$VERSION.tar.bz2 cd lyx-$VERSION # Corret ownerships chown

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Georg Baum
Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Change line 350 of QPrefs.C from if (cb-text(i) == default_font_name) { to if (fromqstr(cb-text(i)) == default_font_name) { Georg

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Jean-Marc Lasgouttes
Georg == Georg Baum [EMAIL PROTECTED] writes: Georg Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Georg Change line 350 of QPrefs.C from Georg if (cb-text(i) == default_font_name) { Georg to if (fromqstr(cb-text(i)) == default_font_name)

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Rich Shepard
On Sun, 17 Jul 2005, Jean-Marc Lasgouttes wrote: I did that in 1.3.7, and additionally enforced compiling without STL compatibility. JMarc, Thank you. Patrick seems to not be a fan of STL. I had fits trying to compile a GIS application that requires it. Finally just gave up. Rich -- Dr.

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 9:33 pm, Jean-Marc Lasgouttes wrote: Georg == Georg Baum [EMAIL PROTECTED] writes: Georg Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Georg Change line 350 of QPrefs.C from Georg if (cb-text(i) ==

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 6:16 pm, Georg Baum wrote: Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: Can anybody help to correct this error? Change line 350 of QPrefs.C from if (cb-text(i) == default_font_name) { to if (fromqstr(cb-text(i)) == default_font_name) { Georg I did

LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
Hello, I tried to compile LyX-1.3.6 on stock Slackware 10.1 system. My build script is given below: #!/bin/sh VERSION=1.3.6 SLKCFLAGS="-O2 -march=i486 -mcpu=i686" CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" rm -rf lyx-$VERSION tar -xjvf lyx-$VERSION.tar.bz2 cd lyx-$VERSION # Corret ownerships

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Georg Baum
Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: > Can anybody help to correct this error? Change line 350 of QPrefs.C from if (cb->text(i) == default_font_name) { to if (fromqstr(cb->text(i)) == default_font_name) { Georg

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Jean-Marc Lasgouttes
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes: Georg> Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: >> Can anybody help to correct this error? Georg> Change line 350 of QPrefs.C from Georg> if (cb->text(i) == default_font_name) { Georg> to if (fromqstr(cb->text(i)) ==

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread Rich Shepard
On Sun, 17 Jul 2005, Jean-Marc Lasgouttes wrote: I did that in 1.3.7, and additionally enforced compiling without STL compatibility. JMarc, Thank you. Patrick seems to not be a fan of STL. I had fits trying to compile a GIS application that requires it. Finally just gave up. Rich -- Dr.

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 9:33 pm, Jean-Marc Lasgouttes wrote: > > "Georg" == Georg Baum <[EMAIL PROTECTED]> writes: > > Georg> Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: > >> Can anybody help to correct this error? > > Georg> Change line 350 of QPrefs.C from > > Georg> if

Re: LyX-1.3.6 compile error on Slackware-10.1 system.

2005-07-17 Thread rsamurti
On Sunday 17 Jul 2005 6:16 pm, Georg Baum wrote: > Am Sonntag, 17. Juli 2005 08:40 schrieb [EMAIL PROTECTED]: > > Can anybody help to correct this error? > > Change line 350 of QPrefs.C from > > if (cb->text(i) == default_font_name) { > > to > if (fromqstr(cb->text(i)) == default_font_name) { >