diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2018-03-13 04:05:57 +0100 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2018-03-13 04:05:57 +0100 |
commit | 71e5282c25ba812c7091e587edd721839bc4c2ac (patch) | |
tree | 416f2b82f342e31aba152a08e07673da54960a64 /configure.ac | |
parent | scd: Fix typo in previous commit. (diff) | |
download | gnupg2-71e5282c25ba812c7091e587edd721839bc4c2ac.tar.xz gnupg2-71e5282c25ba812c7091e587edd721839bc4c2ac.zip |
scd: Fix for GNU/Linux suspend/resume.
* configure.ac (require_pipe_to_unblock_pselect): Default is "yes".
* scd/scdaemon.c (scd_kick_the_loop): Minor clean up.
--
Normally SIGCONT or SIGUSR2 works for unblocking pselect. But on my
machine with GNU/Linux, when a machine is suspend/resume-ed, pselect
keeps blocked, while signal itself is delivered.
It's better to use pipe.
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8252db9a1..086af12ec 100644 --- a/configure.ac +++ b/configure.ac @@ -639,7 +639,7 @@ have_android_system=no use_simple_gettext=no use_ldapwrapper=yes mmap_needed=yes -require_pipe_to_unblock_pselect=no +require_pipe_to_unblock_pselect=yes case "${host}" in *-mingw32*) # special stuff for Windoze NT @@ -654,6 +654,7 @@ case "${host}" in have_w32_system=yes require_iconv=no use_ldapwrapper=no # Fixme: Do this only for CE. + require_pipe_to_unblock_pselect=no case "${host}" in *-mingw32ce*) have_w32ce_system=yes |