mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
Inlcude LIBICONV
This commit is contained in:
parent
0ebe469a91
commit
41f46fb062
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (other_libs): New. Also include LIBICONV. Noted by
|
||||||
|
Tim Mooney.
|
||||||
|
|
||||||
2004-10-28 Werner Koch <wk@g10code.com>
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* apdu.c (open_pcsc_reader): Removed bad free in error handler.
|
* apdu.c (open_pcsc_reader): Removed bad free in error handler.
|
||||||
|
@ -28,6 +28,7 @@ if ! HAVE_DOSISH_SYSTEM
|
|||||||
AM_CFLAGS = -DGNUPG_LIBEXECDIR="\"$(libexecdir)\""
|
AM_CFLAGS = -DGNUPG_LIBEXECDIR="\"$(libexecdir)\""
|
||||||
endif
|
endif
|
||||||
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
||||||
|
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
|
||||||
|
|
||||||
#noinst_PROGRAMS = gpgd
|
#noinst_PROGRAMS = gpgd
|
||||||
bin_PROGRAMS = gpg gpgv
|
bin_PROGRAMS = gpg gpgv
|
||||||
@ -131,7 +132,7 @@ gpgv_SOURCES = gpgv.c \
|
|||||||
# ks-db.h \
|
# ks-db.h \
|
||||||
# $(common_source)
|
# $(common_source)
|
||||||
|
|
||||||
LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@ @ZLIBS@ @W32LIBS@
|
LDADD = $(needed_libs) $(other_libs) @ZLIBS@ @W32LIBS@
|
||||||
gpg_LDADD = $(LDADD) @DLLIBS@ @NETLIBS@ @LIBUSB_LIBS@
|
gpg_LDADD = $(LDADD) @DLLIBS@ @NETLIBS@ @LIBUSB_LIBS@
|
||||||
|
|
||||||
$(PROGRAMS): $(needed_libs)
|
$(PROGRAMS): $(needed_libs)
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (other_libs): New. Also include LIBICONV. Noted by
|
||||||
|
Tim Mooney.
|
||||||
|
|
||||||
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (other_libs):
|
||||||
|
|
||||||
2004-10-18 David Shaw <dshaw@jabberwocky.com>
|
2004-10-18 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* gpgkeys_hkp.c (send_key, get_key, search_key): Use "hkp" instead
|
* gpgkeys_hkp.c (send_key, get_key, search_key): Use "hkp" instead
|
||||||
|
@ -32,10 +32,12 @@ gpgkeys_hkp_SOURCES = gpgkeys_hkp.c ksutil.c ksutil.h
|
|||||||
gpgkeys_http_SOURCES = gpgkeys_http.c ksutil.c ksutil.h
|
gpgkeys_http_SOURCES = gpgkeys_http.c ksutil.c ksutil.h
|
||||||
gpgkeys_finger_SOURCES = gpgkeys_finger.c ksutil.c ksutil.h
|
gpgkeys_finger_SOURCES = gpgkeys_finger.c ksutil.c ksutil.h
|
||||||
|
|
||||||
gpgkeys_ldap_LDADD = ../util/libutil.a @LDAPLIBS@ @NETLIBS@ @LIBINTL@ @CAPLIBS@ @GETOPT@ @W32LIBS@
|
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
|
||||||
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ @LIBINTL@ @CAPLIBS@ @GETOPT@ @W32LIBS@
|
|
||||||
gpgkeys_http_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ @LIBINTL@ @CAPLIBS@ @GETOPT@ @W32LIBS@
|
gpgkeys_ldap_LDADD = ../util/libutil.a @LDAPLIBS@ @NETLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
|
||||||
gpgkeys_finger_LDADD = ../util/libutil.a @NETLIBS@ @LIBINTL@ @CAPLIBS@ @GETOPT@ @W32LIBS@
|
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
|
||||||
|
gpgkeys_http_LDADD = ../util/libutil.a @NETLIBS@ @SRVLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
|
||||||
|
gpgkeys_finger_LDADD = ../util/libutil.a @NETLIBS@ $(other_libs) @GETOPT@ @W32LIBS@
|
||||||
|
|
||||||
install-exec-hook:
|
install-exec-hook:
|
||||||
if GPGKEYS_LDAP
|
if GPGKEYS_LDAP
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-28 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* Makefile.am (other_libs): New. Also include LIBICONV. Noted by
|
||||||
|
Tim Mooney.
|
||||||
|
|
||||||
2004-10-01 Werner Koch <wk@g10code.com>
|
2004-10-01 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* bftest.c (i18n_init): Always use LC_ALL.
|
* bftest.c (i18n_init): Always use LC_ALL.
|
||||||
|
@ -20,14 +20,15 @@
|
|||||||
|
|
||||||
EXTRA_DIST = lspgpot ring-a-party mail-signed-keys convert-from-106
|
EXTRA_DIST = lspgpot ring-a-party mail-signed-keys convert-from-106
|
||||||
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
|
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
|
||||||
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
||||||
|
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
|
||||||
|
|
||||||
bin_PROGRAMS = gpgsplit
|
bin_PROGRAMS = gpgsplit
|
||||||
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
|
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
|
||||||
|
|
||||||
gpgsplit_LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@ @ZLIBS@
|
gpgsplit_LDADD = $(needed_libs) $(other_libs) @ZLIBS@
|
||||||
mpicalc_LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@ @W32LIBS@
|
mpicalc_LDADD = $(needed_libs) $(other_libs) @W32LIBS@
|
||||||
bftest_LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@ @W32LIBS@ @DLLIBS@ @NETLIBS@
|
bftest_LDADD = $(needed_libs) $(other_libs) @W32LIBS@ @DLLIBS@ @NETLIBS@
|
||||||
shmtest_LDADD = $(needed_libs) @LIBINTL@ @CAPLIBS@
|
shmtest_LDADD = $(needed_libs) $(other_libs)
|
||||||
|
|
||||||
gpgsplit mpicalc bftest shmtest: $(needed_libs)
|
gpgsplit mpicalc bftest shmtest: $(needed_libs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user