From 902e6964083c2f3ce51f85242d751d00269ac527 Mon Sep 17 00:00:00 2001 From: kaa Date: Fri, 10 Nov 2023 11:35:58 -0800 Subject: Real support for compliation on Windows. Depends on mingw and busybox-w32. No need for emulation a-la Cygwin, real native binaries. --- win/config.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'win/config.h') diff --git a/win/config.h b/win/config.h index 3264979..47fb9e8 100644 --- a/win/config.h +++ b/win/config.h @@ -12,9 +12,12 @@ char *taglist[] = { /* Words containing any of these characters are skipped. */ -char *skip = "&/-="; +char *skip = "&/-=~"; -/* Should the dictionary of hyphenation patterns be in -a location other than the one specified here, replace this -with the valid location. */ -char *dictfile = "C:/Users/Otho/tmp/hyp/win/hyph_en_US.dic"; +/* Inherit the directory at compile time. */ +const char *buildpath = BUILD_PATH; +const char *en = "hyph_en_US.dic"; +const char *es = "../ext/es/hyph_es.dic"; +enum { + pathbuf = 512, +}; -- cgit v1.2.3