The configure code for fltk-version detection should be patch like:
--- configure 2006-07-09 01:53:20.000000000 +0200
+++ configure.new 2011-03-23 18:46:57.711671501 +0100
@@ -2915,7 +2915,11 @@ fi
FIELD2=`$FLTK_CONFIG --version | awk -F . '{print $2}'`;
FIELD3=`$FLTK_CONFIG --version | awk -F . '{print $3}'`;
- if test $FIELD1 -le 1 -a $FIELD3 -lt 6; then
+
+ if test $FIELD1 -le 1 -a $FIELD2 -le 1 -a $FIELD3 -lt 6; then
+ echo -e "\nconfigure: error: fltk-version must be 1.1.6 or greater!\n"; exit -1;
+ fi
+ if test $FIELD1 -le 1 -a $FIELD2 -lt 1; then
echo -e "\nconfigure: error: fltk-version must be 1.1.6 or greater!\n"; exit -1;
fi
if test $FIELD1 -lt 1; then
The old code only look at first and third version-number for fltk .. so fltk-version 1.3.0 is less than the required 1.1.6 ..