diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-24 13:02:20 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-11-24 13:02:20 +0100 |
commit | 1cc505902ca1ef41e105f51f8a5c4aad2d16e12b (patch) | |
tree | 37dda405dead3e326cc1e55a667a8e5f0a2eda59 | |
parent | f3103cc4b6c369da96c7de487214a9e56eca755d (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.ac | 2 |
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) |