diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-11-20 18:07:04 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2022-11-20 18:07:04 +0100 |
commit | 101a8685268a188d1bb3f86146f61a090d8ea888 (patch) | |
tree | 8f4ef5ef5b22ae9fb14de3fe2a68a367cfad927d /configure.ac | |
parent | ef04eaad307df4e6b0a6b4d713401df81ba5afc6 (diff) | |
download | sciteco-101a8685268a188d1bb3f86146f61a090d8ea888.tar.gz |
bumped required PDCursesMod version to v4.3.4 or later
* allows us to get rid of some workarounds
* the workarounds themselves required relatively recent PDCursesMod
versions, so we can just as well bump the version yet another time.
We are probably the only ones building it (via Github actions) anyway.
* With v4.3.4 you should be able to link dynamically, but we are still
linking statically for nightly builds to keep binary sizes small.
Unfortunately, the glib builds shipping with MinGW still have
dynamically linked helper executables.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 0ad8594..3f50576 100644 --- a/configure.ac +++ b/configure.ac @@ -298,13 +298,6 @@ case $INTERFACE in AC_DEFINE(PDC_FORCE_UTF8, 1, [PDCursesMod forces use of UTF8]) ]) - # This is actually a symbol (CRITICAL_SECTION) used by PDCursesMod/WinGUI - # for synchronization. We use this as a workaround to gain responsiveness - # while polling for keypresses. - # NOTE: Can currently only be detected when linking against the static - # libpdcurses_wingui.a. - AC_CHECK_FUNCS([PDC_cs]) - # This is detectable at runtime on PDCursesMod using PDC_get_version(). # "Classic" PDCurses however does not allow runtime or compile-time checks for # discerning eg. WinCon from SDL. |