diff options
author | Werner Koch <wk@gnupg.org> | 2007-06-15 16:27:31 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-06-15 16:27:31 +0200 |
commit | 915b7b21fdb2d84ef55542681f418690dd8832db (patch) | |
tree | 43c4b7465e0120d6b63591b0c61b3338030f65f7 /kbx/Makefile.am | |
parent | 2007-06-15 Marcus Brinkmann <marcus@g10code.de> (diff) | |
download | gnupg2-915b7b21fdb2d84ef55542681f418690dd8832db.tar.xz gnupg2-915b7b21fdb2d84ef55542681f418690dd8832db.zip |
Build fixes for W32
Diffstat (limited to 'kbx/Makefile.am')
-rw-r--r-- | kbx/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kbx/Makefile.am b/kbx/Makefile.am index 3b5de70d1..8a07df398 100644 --- a/kbx/Makefile.am +++ b/kbx/Makefile.am @@ -44,10 +44,12 @@ common_sources = \ libkeybox_a_SOURCES = $(common_sources) -# Note that libcommon is only required to resolve the LIBOBJS. +# We need W32SOCKLIBS because the init subsystem code in libcommon +# requires it - although we don't actually need it. It is easier +# to do it this way. kbxutil_SOURCES = kbxutil.c $(common_sources) kbxutil_LDADD = ../jnlib/libjnlib.a ../gl/libgnu.a ../common/libcommon.a \ $(KSBA_LIBS) $(LIBGCRYPT_LIBS) \ - $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) + $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS) $(PROGRAMS) : ../jnlib/libjnlib.a ../gl/libgnu.a ../common/libcommon.a |