Re: [Plplot-devel] Need help debugging f77 issue with gcc 4.4 on ppc

2009-02-12 Thread Orion Poplawski
Orion Poplawski wrote: #2 0x10001e84 in x23f () at /builddir/build/BUILD/plplot-5.9.2/fedora/examples/f77/x23f.f:326 326call plsfci(0) This is clearly wrong. plsfci takes a 64-bit integer. The attached patch fixes. The x23f.f90 example uses 0_plunicode to specify

[Plplot-devel] Handling plplot-test.sh and examples in Fedora package

2009-02-12 Thread Orion Poplawski
I'm trying to start to address https://bugzilla.redhat.com/show_bug.cgi?id=484519 here are the issues: - Examples are installed into /usr/share/plplotversion/examples. This is not writable. - Examples are shipped with the appropriate sub-packages, so not all may be present (in particular

Re: [Plplot-devel] Handling plplot-test.sh and examples in Fedora package

2009-02-12 Thread Orion Poplawski
Orion Poplawski wrote: - I'd like for EXAMPLES_DIR to get set to /usr/share/plplotversion/examples on install. Perhaps: EXE_DIR=`dirname $0` EXAMPLES_DIR=${EXAMPLES_DIR:=$EXE_DIR} SRC_EXAMPLES_DIR=${SRC_EXAMPLES_DIR:=$EXE_DIR} would work? -- Orion Poplawski Technical Manager

Re: [Plplot-devel] Need help debugging f77 issue with gcc 4.4 on ppc

2009-02-12 Thread Alan W. Irwin
On 2009-02-12 15:01-0700 Orion Poplawski wrote: Orion Poplawski wrote: #2 0x10001e84 in x23f () at /builddir/build/BUILD/plplot-5.9.2/fedora/examples/f77/x23f.f:326 326call plsfci(0) This is clearly wrong. plsfci takes a 64-bit integer. The attached patch