diff options
author | David Shaw <[email protected]> | 2002-09-25 11:30:51 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-09-25 11:30:51 +0000 |
commit | 48d55024e2e7f551e721346924543dff8cfb1b98 (patch) | |
tree | 593b27db5c47b7bc4291859a3cc88100e8702dfe | |
parent | * Makefile.am: Link bftest with EGDLIBS (i.e. NETLIBS) as EGD uses (diff) | |
download | gnupg-48d55024e2e7f551e721346924543dff8cfb1b98.tar.gz gnupg-48d55024e2e7f551e721346924543dff8cfb1b98.zip |
* Makefile.am: Link gpg with EGDLIBS (i.e. NETLIBS) as EGD uses sockets.
Remove the old NETLIBS variable since the keyserver stuff is no longer
internal.
Diffstat (limited to '')
-rw-r--r-- | g10/ChangeLog | 6 | ||||
-rw-r--r-- | g10/Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index cf3442f79..84d0f32d2 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,9 @@ +2002-09-25 David Shaw <[email protected]> + + * Makefile.am: Link gpg with EGDLIBS (i.e. NETLIBS) as EGD uses + sockets. Remove the old NETLIBS variable since the keyserver + stuff is no longer internal. + 2002-09-24 David Shaw <[email protected]> * import.c (import_keys_stream): Fix compiler type warning. diff --git a/g10/Makefile.am b/g10/Makefile.am index 067fc32ed..d84707af8 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -108,7 +108,7 @@ gpgv_SOURCES = gpgv.c \ LDADD = $(needed_libs) @ZLIBS@ @INTLLIBS@ # gpg gets LIBOBJS to add in mkdtemp if the platform doesn't have it -gpg_LDADD = @LIBOBJS@ $(LDADD) @NETLIBS@ +gpg_LDADD = @LIBOBJS@ $(LDADD) @EGDLIBS@ $(PROGRAMS): $(needed_libs) |