One more thing, a request:
Please change the return code for critical failures. In the exit command for example in the Gnuplot version use 1 (false):
exit 1

---
This will help to break the building of gretl (in my case the test would fail).
Would this be troublesome for others?

Thanks,
Hélio


On Fri, Dec 6, 2013 at 7:17 PM, Hélio Guilherme <helioxentric@gmail.com> wrote:
It is alway good to find a bug :)

At line 16919 of the configure script we have:
        elif test $GPMAJOR -eq 4 && test $GPMINOR -ge 2 ; then
It should be:
        elif test $GPMAJOR -eq 4 && test $GPMINOR -ge 4 ; then

----
This was allowing to build gretl GUI with:
[jboss@candy-house gretl]$ gnuplot --version
gnuplot 4.2 patchlevel 6

The correct error was presented when producing plots.
---

I have automated:
make clean
cvs update
configure
make
make install

Other tests would follow (but still expploring)
(No success in having the results passed to Testlink)

(Using CentOS 6.4 in an i686 machine)

Hélio