summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-11-24 13:02:20 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-11-24 13:02:20 +0100
commit1cc505902ca1ef41e105f51f8a5c4aad2d16e12b (patch)
tree37dda405dead3e326cc1e55a667a8e5f0a2eda59
parentf3103cc4b6c369da96c7de487214a9e56eca755d (diff)
Prevent using FLTK 1.4 for now
There are several problems that need to be resolved before we can switch to FLTK 1.4. The support is intentionally disabled until it is ready. See: https://github.com/dillo-browser/dillo/issues/246
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 7d156b81..268e24ba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -218,6 +218,8 @@ case $fltk_version in
LIBFLTK_CXXFLAGS=`$FLTK_CONFIG --cxxflags`
LIBFLTK_CFLAGS=`$FLTK_CONFIG --cflags`
LIBFLTK_LIBS=`$FLTK_CONFIG --ldflags`;;
+ 1.4.*) AC_MSG_RESULT(no)
+ AC_MSG_ERROR([FLTK $fltk_version not supported yet; use FLTK 1.3]);;
?*) AC_MSG_RESULT(no)
AC_MSG_ERROR(FLTK 1.3 required; version found: $fltk_version);;
*) AC_MSG_RESULT(no)