|
From: Jacques Le B. <Jac...@ob...> - 2006-11-27 14:01:48
|
Bonjour, I just compiled and installed RC2 on a Linux Laptop with SuSE 9.3 (+ all latest upgrades I could find). I had very few issues. Thank you for the nice job! Here are the pbs: * libgd: I had to manually create a link from libgd.so.2 to libgd.so in /usr/lib. It was not found by configure. Also gd was installed, but not gd-devel so that "make" crashed when looking for gd.h (which was not there). probably configure should look for both libgd and gd.h * Pango: SuSE comes with pango 1.10.2 and I could not find newer packages. I compiled 1.10.4 and had no further problems at configuration/compilation time. But... * Wxt: The terminal works (i.e. I get all the nice plots in the window). However all texts are ridiculously small (size 1 point?) and useless. I could not figure out why. * UTF8: Results of "utf8.dem" are unreliable. May come from my fonts installation (which I never really understood). More specifically, I can not set encoding to "utf8" (I know it is not in the list...), and could not find how to get such characters as "=E9", "=E0", etc... which are mandatory in french. Note: I use the standard SuSE setting : LANG =3D fr_FR.UTF-8, so neither "default" nor "iso_8859_15" work. The colors are incredibly nice! Thank you. Jacques Le Bourlot PS: The "x2 =3D f(x1)" ticks is something I have prayed for for years. I hate computing and setting the x2tics by hand each time. Please include i= t ASAP. Tanks. |
|
From: <HBB...@t-...> - 2006-11-27 21:54:07
|
Jacques Le Bourlot wrote: > * libgd: > I had to manually create a link from libgd.so.2 to libgd.so in > /usr/lib. You should never have to do that. Either ldconfig should do that automatically at installation time, or there must be some good reason it didn't. > It was not found by configure. That was actually a good thing, since it didn't really work. configure should only find actually working libraries. > Also gd was installed, but not > gd-devel so that "make" crashed when looking for gd.h (which was not > there). probably configure should look for both libgd and gd.h Not really. It only has to look for gdlib-config and trust its output. |
|
From: <tim...@en...> - 2006-11-27 22:19:11
|
Jacques Le Bourlot a =E9crit : > Bonjour, > > I just compiled and installed RC2 on a Linux Laptop with SuSE 9.3 (+ al= l > latest upgrades I could find). I had very few issues. Thank you for the > nice job! Here are the pbs: > > <...> > * Pango: > SuSE comes with pango 1.10.2 and I could not find newer packages. I > compiled 1.10.4 and had no further problems at > configuration/compilation time. But... > > * Wxt: > The terminal works (i.e. I get all the nice plots in the window). > However all texts are ridiculously small (size 1 point?) and useless. I > could not figure out why. > =20 It is precisely the problem I was trying to address when I added the=20 restriction on pango not being 1.10.2. Here is the corresponding thread:=20 http://comments.gmane.org/gmane.comp.graphics.gnuplot.devel/5319 I don't clearly remember if I tried with pango 1.10.4. Would you mind=20 trying with a newer version of pango, in the 1.12 or 1.14 series ? I'll try to compile gnuplot with pango 1.10.4, but I won't be able to do=20 it until tomorrow evening. > * UTF8: > Results of "utf8.dem" are unreliable. May come from my fonts > installation (which I never really understood). More specifically, I ca= n > not set encoding to "utf8" (I know it is not in the list...), and could > not find how to get such characters as "=E9", "=E0", etc... which are > mandatory in french. Note: I use the standard SuSE setting : LANG =3D > fr_FR.UTF-8, so neither "default" nor "iso_8859_15" work. > =20 Please tell us what terminal you're using since text encoding is=20 terminal specific. Best regards, Timoth=E9e Lecomte |
|
From: Ethan M. <merritt@u.washington.edu> - 2006-11-27 23:19:52
|
On Monday 27 November 2006 01:16 pm, Timoth=E9e Lecomte wrote: > Jacques Le Bourlot a =E9crit : > * libgd: > I had to manually create a link from libgd.so.2 to libgd.so in > /usr/lib. It was not found by configure. Also gd was installed, but > not gd-devel so that "make" crashed when looking for gd.h=20 This is telling you that you should have installed gd-devel. =46orcing the build process to continue when a required package is missing is not a good idea. > > * Pango: > > SuSE comes with pango 1.10.2 and I could not find newer > > packages. I compiled 1.10.4 and had no further problems at > > configuration/compilation time. But... > > > > * Wxt: > > The terminal works (i.e. I get all the nice plots in the > > window). However all texts are ridiculously small (size 1 point?) > > and useless. I could not figure out why. > > It is precisely the problem I was trying to address when I added the > restriction on pango not being 1.10.2. > Here is the corresponding thread: > http://comments.gmane.org/gmane.comp.graphics.gnuplot.devel/5319 The wxt terminal works just fine with libpango 1.10.0 I think the symptom of invisibly small font sizes comes from not having properly initialized fontconfig. I originally suffered from the same problem, but installing and initializing fontconfig fixed it. > > * UTF8: > > Results of "utf8.dem" are unreliable. May come from my fonts > > installation (which I never really understood). More specifically, > > I can not set encoding to "utf8"=20 It is not necessary to set encoding to utf8. The "encoding" tells how to interpret 1-byte characters. utf8 uses multibyte characters *instead* of using the 1-byte representations. =20 > > and could not find how to get such characters as "=E9", "=E0", etc... =E9 is Unicode code point 00E9 =E0 is Unicode code point 00E0 If your locate is set to fr_FR.UTF-8, then when you type =E0 on the keyboard it generates a two-byte utf-8 sequence that represents that Unicode code point. This is *different* than the 1-byte representation used by iso_8859_15. You cannot mix them. You must pick one or the other (preferably utf-8). If you are using KDE, a convenient tool to explore this is kcharselect. =20 I'm sure some equivalent tool must exist on other desktops. =2D-=20 Ethan A Merritt Biomolecular Structure Center University of Washington, Seattle WA |
|
From: Jacques Le B. <Jac...@ob...> - 2006-11-28 06:17:22
|
> On Monday 27 November 2006 01:16 pm, Timoth=E9e Lecomte wrote: >> Jacques Le Bourlot a =E9crit : >> * libgd: >> I had to manually create a link from libgd.so.2 to libgd.so in >> /usr/lib. It was not found by configure. Also gd was installed, but >> not gd-devel so that "make" crashed when looking for gd.h > > This is telling you that you should have installed gd-devel. > Forcing the build process to continue when a required package is > missing is not a good idea. > That's what I did immediattely! I did not "force" the build process any further. >> > * Pango: >> > SuSE comes with pango 1.10.2 and I could not find newer >> > packages. I compiled 1.10.4 and had no further problems at >> > configuration/compilation time. But... >> > >> > * Wxt: >> > The terminal works (i.e. I get all the nice plots in the >> > window). However all texts are ridiculously small (size 1 point?) >> > and useless. I could not figure out why. >> >> It is precisely the problem I was trying to address when I added the >> restriction on pango not being 1.10.2. >> Here is the corresponding thread: >> http://comments.gmane.org/gmane.comp.graphics.gnuplot.devel/5319 > > The wxt terminal works just fine with libpango 1.10.0 > > I think the symptom of invisibly small font sizes comes from not > having properly initialized fontconfig. I originally suffered from > the same problem, but installing and initializing fontconfig fixed it. > I will try that. However, It'll have to wait for a few days (I'm an astrophysicist and teacher at the University: I have very few time to spare). > >> > * UTF8: >> > Results of "utf8.dem" are unreliable. May come from my fonts >> > installation (which I never really understood). More specifically, >> > I can not set encoding to "utf8" > I'll explore also the font issue. I usually use X11 as a term, then turn to postscript at the very end. Thank you for the advices. Jacques Le Bourlot |