The bug seems to be in configure.in, line 739, where it tests:
if test "x$enable_threads" = xyes; then
However, since the default should now be "yes" we need to flip that test to
become:
if test "x$enable_threads" != xno; then
With that change applied (locally) it seems to work as expected.
--
Ian
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev
