summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--configure.in10
2 files changed, 3 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index f8f9eb03..ebf28be1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -49,6 +49,7 @@ dillo-fltk2
+- Fixed calcHashValue() to only return non-negative numbers (was SEGFAULT).
- Improved scrolling performance on large pages by copying screen data
instead of rendering.
+ - Updated configure.in to check only for fltk2-config.
Patches: Johannes Hofmann
+- Improved FLTK library detection at configure time.
Patch: Frank Gevaerts
diff --git a/configure.in b/configure.in
index 25bff711..8bd37913 100644
--- a/configure.in
+++ b/configure.in
@@ -149,14 +149,8 @@ then AC_MSG_RESULT(yes)
LIBFLTK_CXXFLAGS=`fltk2-config --cxxflags`
LIBFLTK_CFLAGS=`fltk2-config --cflags`
LIBFLTK_LIBS=`fltk2-config --use-images --ldflags`
-else if sh -c "fltk-config --version" >/dev/null 2>&1
- then AC_MSG_RESULT(yes)
- LIBFLTK_CXXFLAGS=`fltk-config --cxxflags`
- LIBFLTK_CFLAGS=`fltk-config --cflags`
- LIBFLTK_LIBS=`fltk-config --ldflags`
- else AC_MSG_RESULT(no)
- AC_ERROR(FLTK2 must be installed!)
- fi
+else AC_MSG_RESULT(no)
+ AC_ERROR(FLTK2 must be installed!)
fi