Bump the version to 0.99 and require collocatordb 1.8.0
The explanations added for LD, LDaf and the effective window size only
hold with collocatordb 1.8.0, where Log-Dice follows Rychly's
definition. Built against an older one, the interface would show the
previous LD values under the new text, without anything indicating the
mismatch, so the minimum version is raised from 1.5.0.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Change-Id: Ib8d7ca9e69bbc065d04684da3aa1d662b253d46d
diff --git a/Makefile.PL b/Makefile.PL
index 08fa3a6..3f847d3 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -9,7 +9,7 @@
check_lib_or_exit(
cflags => '-Wall -Wno-unused-result -fno-rtti -O4 -I/usr/local/include',
header => ['unistd.h', 'stdio.h', 'stdlib.h', 'string.h', 'collocatordb.h'],
- function => 'char *min_v = "1.5.0"; char *v = get_version(); if(strcmp(min_v, v) <= 0) { return 0; } else { fprintf(stderr, "Installed collocatordb version %s is too low. Minimally %s is required.\n", v, min_v); return(1); }',
+ function => 'char *min_v = "1.8.0"; char *v = get_version(); if(strcmp(min_v, v) <= 0) { return 0; } else { fprintf(stderr, "Installed collocatordb version %s is too low. Minimally %s is required.\n", v, min_v); return(1); }',
libpath => ['/usr/lib', '/usr/local/lib64', '/usr/local/lib'],
incpath => ['/usr/include', '/usr/local/include'],
# debug => 1,