The old one could not handle minor releases. This one only looks at the
first byte of the numeric version. So will break again when 10.* is released.
However 6.* should be dead by then.
AC_MSG_NOTICE([Windows threads support automatically enabled])
;;
freebsd)
- if test $squid_host_os_version -lt 7 ; then
+ if test `echo "$squid_host_os_version" | cut -b1` -lt 7 ; then
AC_MSG_NOTICE(pthread library requires FreeBSD 7 or later)
squid_opt_use_diskthreads="no"
else