diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2022-12-09 06:02:07 +0100 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2022-12-09 06:06:08 +0100 |
commit | f32d0c9c0ff7a62d17e6c46e0e21fe00be22c114 (patch) | |
tree | 8d597dde88fddd5e8f14aa5ace5861b43f17b079 /kbx | |
parent | wkd: Do not send/install/mirror expired user ids. (diff) | |
download | gnupg2-f32d0c9c0ff7a62d17e6c46e0e21fe00be22c114.tar.xz gnupg2-f32d0c9c0ff7a62d17e6c46e0e21fe00be22c114.zip |
build: Remove Windows CE support.
* agent/Makefile.am [HAVE_W32CE_SYSTEM]: Remove.
* am/cmacros.am [HAVE_W32CE_SYSTEM]: Remove.
* autogen.sh: Remove W32ce_ variables.
* configure.ac: Likewise.
* dirmngr/Makefile.am (extra_bin_ldflags): Remove.
* g10/Makefile.am [HAVE_W32CE_SYSTEM]: Remove.
* kbx/Makefile.am: Likewise.
* sm/Makefile.am (extra_bin_ldflags): Remove.
* tools/Makefile.am (extra_bin_ldflags): Remove.
--
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'kbx')
-rw-r--r-- | kbx/Makefile.am | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/kbx/Makefile.am b/kbx/Makefile.am index f5fe341bc..66214fa5c 100644 --- a/kbx/Makefile.am +++ b/kbx/Makefile.am @@ -37,12 +37,6 @@ else libexec_PROGRAMS = endif -if HAVE_W32CE_SYSTEM -extra_libs = $(LIBASSUAN_LIBS) -else -extra_libs = -endif - common_libs = $(libcommon) commonpth_libs = $(libcommonpth) @@ -75,7 +69,7 @@ libkeybox509_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS) -DKEYBOX kbxutil_SOURCES = kbxutil.c $(common_sources) kbxutil_CFLAGS = $(AM_CFLAGS) -DKEYBOX_WITH_X509=1 kbxutil_LDADD = $(common_libs) \ - $(KSBA_LIBS) $(LIBGCRYPT_LIBS) $(extra_libs) \ + $(KSBA_LIBS) $(LIBGCRYPT_LIBS) \ $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS) \ $(NETLIBS) @@ -98,7 +92,7 @@ keyboxd_LDADD = $(commonpth_libs) \ $(SQLITE3_LIBS) $(GPG_ERROR_LIBS) \ $(LIBINTL) $(NETLIBS) $(LIBICONV) \ $(resource_objs) -keyboxd_LDFLAGS = $(extra_bin_ldflags) +keyboxd_LDFLAGS = keyboxd_DEPENDENCIES = $(resource_objs) |