summaryrefslogtreecommitdiff
path: root/win/config.h
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2023-11-10 11:35:58 -0800
committerkaa <kaa@disroot.org>2023-11-10 11:35:58 -0800
commit902e6964083c2f3ce51f85242d751d00269ac527 (patch)
treee9ff30bd1f11ed8d7fdedd88cc51e58fbe3c5648 /win/config.h
parent573da274a77db0e45185c25796b3527f36f8729f (diff)
Real support for compliation on Windows. Depends on mingw and busybox-w32. No need for emulation a-la Cygwin, real native binaries.
Diffstat (limited to 'win/config.h')
-rw-r--r--win/config.h13
1 files changed, 8 insertions, 5 deletions
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,
+};