annotate src/gnutls-2-ldadd.patch @ 3267:cce4bedf4c3d

new version of gnutls
author John W. Eaton <jwe@octave.org>
date Wed, 16 Oct 2013 23:45:07 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3267
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 diff -ur a/src/Makefile.am b/src/Makefile.am
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 --- a/src/Makefile.am 2013-03-03 04:04:09.000000000 -0500
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 +++ b/src/Makefile.am 2013-10-16 23:34:43.999201873 -0400
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 @@ -67,7 +67,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 if ENABLE_SRP
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 srptool_SOURCES = srptool.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 srptool_LDADD = ../lib/libgnutls.la libcmd-srp.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 -srptool_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 +srptool_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 noinst_LTLIBRARIES += libcmd-srp.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 libcmd_srp_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 libcmd_srp_la_SOURCES = srptool-args.def srptool-args.c srptool-args.h
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 @@ -75,7 +75,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 psktool_SOURCES = psk.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 psktool_LDADD = ../lib/libgnutls.la libcmd-psk.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 -psktool_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 +psktool_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 noinst_LTLIBRARIES += libcmd-psk.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 libcmd_psk_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 libcmd_psk_la_SOURCES = psk-args.def psk-args.c psk-args.h
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 @@ -86,7 +86,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 ocsptool_SOURCES = ocsptool.c ocsptool-common.h ocsptool-common.c \
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 socket.c socket.h
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 ocsptool_LDADD = ../lib/libgnutls.la libcmd-ocsp.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 -ocsptool_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL) $(GETADDRINFO_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 +ocsptool_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL) $(GETADDRINFO_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 noinst_LTLIBRARIES += libcmd-ocsp.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 libcmd_ocsp_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 libcmd_ocsp_la_SOURCES = ocsptool-args.def ocsptool-args.h ocsptool-args.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 @@ -99,7 +99,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 certtool-common.h
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 gnutls_serv_LDADD = ../lib/libgnutls.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 gnutls_serv_LDADD += libcmd-serv.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 -gnutls_serv_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 +gnutls_serv_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 gnutls_serv_LDADD += $(LIBSOCKET) $(GETADDRINFO_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 noinst_LTLIBRARIES += libcmd-serv.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 libcmd_serv_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 @@ -116,7 +116,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 if ENABLE_DANE
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 gnutls_cli_LDADD += ../libdane/libgnutls-dane.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 endif
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 -gnutls_cli_LDADD += libcmd-cli.la ../gl/libgnu.la $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 +gnutls_cli_LDADD += libcmd-cli.la ../gl/libgnu.la $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 gnutls_cli_LDADD += $(LIBSOCKET) $(GETADDRINFO_LIB) $(LIB_CLOCK_GETTIME) \
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 $(SERVENT_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 noinst_LTLIBRARIES += libcmd-cli.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 @@ -129,7 +129,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 socket.c socket.h common.h common.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 gnutls_cli_debug_LDADD = ../lib/libgnutls.la libcmd-cli-debug.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 gnutls_cli_debug_LDADD += ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 -gnutls_cli_debug_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 +gnutls_cli_debug_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 gnutls_cli_debug_LDADD += $(LIBSOCKET) $(GETADDRINFO_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 noinst_LTLIBRARIES += libcmd-cli-debug.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 libcmd_cli_debug_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 @@ -146,7 +146,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59 libcmd_certtool_la_SOURCES = certtool-args.c certtool-args.def certtool-args.h \
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 certtool-cfg.h certtool-cfg.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61 libcmd_certtool_la_LIBADD = ../gl/libgnu.la ../lib/libgnutls.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 -libcmd_certtool_la_LIBADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 +libcmd_certtool_la_LIBADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 libcmd_certtool_la_LIBADD += $(LTLIBREADLINE)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 libcmd_certtool_la_LIBADD += $(INET_PTON_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67 @@ -162,7 +162,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 libcmd_danetool_la_SOURCES = danetool-args.c danetool-args.def danetool-args.h \
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69 certtool-cfg.h certtool-cfg.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 libcmd_danetool_la_LIBADD = ../gl/libgnu.la ../lib/libgnutls.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71 -libcmd_danetool_la_LIBADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
72 +libcmd_danetool_la_LIBADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 libcmd_danetool_la_LIBADD += $(LTLIBREADLINE)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74 libcmd_danetool_la_LIBADD += $(INET_PTON_LIB)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 @@ -173,7 +173,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77 certtool-extras.c p11tool.h common.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 p11tool_LDADD = ../lib/libgnutls.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 p11tool_LDADD += libcmd-p11tool.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 -p11tool_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 +p11tool_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 noinst_LTLIBRARIES += libcmd-p11tool.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 libcmd_p11tool_la_CFLAGS =
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 @@ -189,7 +189,7 @@
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86 tpmtool_SOURCES = tpmtool-args.def tpmtool.c certtool-common.c certtool-extras.c common.c
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 tpmtool_LDADD = ../lib/libgnutls.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 tpmtool_LDADD += libcmd-tpmtool.la ../gl/libgnu.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 -tpmtool_LDADD += $(LIBOPTS_LDADD) $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 +tpmtool_LDADD += $(LIBOPTS_LDADD) ../gl/libgnu.la $(LTLIBINTL)
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 noinst_LTLIBRARIES += libcmd-tpmtool.la
cce4bedf4c3d new version of gnutls
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 libcmd_tpmtool_la_CFLAGS =