Can someone test this for me? It's the same as the 1.5.svn fix, but I'm having trouble compiling 1.4.x: configure:24767: checking for Qt library name configure:24812: g++ -o conftest -g -O -I/usr/lib/qt-3.3/include/ -L/usr/lib/qt- 3.3/lib -Wextra -Wall conftest.cc -lSM -lICE -lc -lm -lX11 -lqt-mt >&5 /usr/bin/ld: errno@@GLIBC_PRIVATE: TLS definition in /lib/libc.so.6 section .tbs s mismatches non-TLS reference in /usr/i486-linux-libc5/lib/libz.so.1 /usr/i486-linux-libc5/lib/libz.so.1: could not read symbols: Bad value collect2: ld returned 1 exit status configure:24818: $? = 1
rh -- ================================================================== Richard G Heck, Jr Professor of Philosophy Brown University http://frege.brown.edu/heck/ ================================================================== Get my public key from http://sks.keyserver.penguin.de Hash: 0x1DE91F1E66FFBDEC Learn how to sign your email using Thunderbird and GnuPG at: http://dudu.dyn.2-h.org/nist/gpg-enigmail-howto
Index: bufferparams.C =================================================================== --- bufferparams.C (revision 17736) +++ bufferparams.C (working copy) @@ -888,19 +888,19 @@ } } if (!topmargin.empty()) - os << ",tmargin=" << topmargin; + os << ",tmargin=" << LyXLength(topmargin).asLatexString(); if (!bottommargin.empty()) - os << ",bmargin=" << bottommargin; + os << ",bmargin=" << LyXLength(bottommargin).asLatexString(); if (!leftmargin.empty()) - os << ",lmargin=" << leftmargin; + os << ",lmargin=" << LyXLength(leftmargin).asLatexString(); if (!rightmargin.empty()) - os << ",rmargin=" << rightmargin; + os << ",rmargin=" << LyXLength(rightmargin).asLatexString(); if (!headheight.empty()) - os << ",headheight=" << headheight; + os << ",headheight=" << LyXLength(headheight).asLatexString(); if (!headsep.empty()) - os << ",headsep=" << headsep; + os << ",headsep=" << LyXLength(headsep).asLatexString(); if (!footskip.empty()) - os << ",footskip=" << footskip; + os << ",footskip=" << LyXLength(footskip).asLatexString(); os << "}\n"; texrow.newline(); }
