aboutsummaryrefslogtreecommitdiffstats
path: root/common/asshelp.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2022-11-16 01:05:37 +0000
committerNIIBE Yutaka <[email protected]>2022-11-16 01:05:37 +0000
commit18a3ce1c9bd767e88d426cf618441a3313888473 (patch)
tree5377edbc8d230db9d8a908da71818688285e8f30 /common/asshelp.c
parentgpgsm: Fix colon outout of ECC encryption certificates (diff)
downloadgnupg-18a3ce1c9bd767e88d426cf618441a3313888473.tar.gz
gnupg-18a3ce1c9bd767e88d426cf618441a3313888473.zip
common: Remove Windows CE support in common.
* common/Makefile.am (HAVE_W32CE_SYSTEM): Remove conditional build. (common_sources): Remove exechelp-w32ce.c. * common/asshelp.c [HAVE_W32CE_SYSTEM]: Remove the support. * common/common-defs.h [HAVE_W32CE_SYSTEM]: Likewise. * common/dotlock.c [HAVE_W32CE_SYSTEM]: Likewise. * common/exechelp-posix.c [HAVE_W32CE_SYSTEM]: Likewise. * common/exechelp-w32.c [HAVE_W32CE_SYSTEM]: Likewise. * common/gettime.c [HAVE_W32CE_SYSTEM]: Likewise. * common/exechelp-w32ce.c: Remove. * po/POTFILES.in: Update to remove common/exechelp-w32ce.c. -- Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'common/asshelp.c')
-rw-r--r--common/asshelp.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/common/asshelp.c b/common/asshelp.c
index 172c7d998..eb3e41bf5 100644
--- a/common/asshelp.c
+++ b/common/asshelp.c
@@ -54,15 +54,9 @@
/* The time we wait until the agent or the dirmngr are ready for
operation after we started them before giving up. */
-#ifdef HAVE_W32CE_SYSTEM
-# define SECS_TO_WAIT_FOR_AGENT 30
-# define SECS_TO_WAIT_FOR_KEYBOXD 30
-# define SECS_TO_WAIT_FOR_DIRMNGR 30
-#else
-# define SECS_TO_WAIT_FOR_AGENT 5
-# define SECS_TO_WAIT_FOR_KEYBOXD 5
-# define SECS_TO_WAIT_FOR_DIRMNGR 5
-#endif
+#define SECS_TO_WAIT_FOR_AGENT 5
+#define SECS_TO_WAIT_FOR_KEYBOXD 5
+#define SECS_TO_WAIT_FOR_DIRMNGR 5
/* A bitfield that specifies the assuan categories to log. This is
identical to the default log handler of libassuan. We need to do