diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-25 20:06:18 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-25 20:07:06 +0100 |
commit | cb2d61723ce1aadc1ee6d082f0bdcd59e27067da (patch) | |
tree | 0fcc7756ab1a21bf6cc99e94fa90495d13d5ab5e /src | |
parent | e06474ab977af37d633d1aefdc6b0ab016198970 (diff) | |
download | gnutls-cb2d61723ce1aadc1ee6d082f0bdcd59e27067da.tar.gz |
Link to correct libraries.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4d013d49d9..d7595b2119 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -80,7 +80,8 @@ endif if ENABLE_OCSP ocsptool_SOURCES = ocsptool.c ocsptool-common.h ocsptool-common.c \ socket.c socket.h -ocsptool_LDADD = ../lib/libgnutls.la libcmd-ocsp.la ../gl/libgnu.la $(LIBOPTS_LDADD) +ocsptool_LDADD = ../lib/libgnutls.la libcmd-ocsp.la ../gl/libgnu.la $(LIBOPTS_LDADD) \ + $(GETADDRINFO_LIB) noinst_LTLIBRARIES += libcmd-ocsp.la libcmd_ocsp_la_CFLAGS = libcmd_ocsp_la_SOURCES = ocsptool-args.def ocsptool-args.h ocsptool-args.c @@ -99,7 +100,8 @@ gnutls_cli_SOURCES = cli.c common.h common.c \ $(PKCS11_SRCS) $(BENCHMARK_SRCS) gnutls_cli_LDADD = ../lib/libgnutls.la gnutls_cli_LDADD += libcmd-cli.la ../gl/libgnu.la $(LIBOPTS_LDADD) -gnutls_cli_LDADD += $(LIBSOCKET) $(GETADDRINFO_LIB) $(LIB_CLOCK_GETTIME) +gnutls_cli_LDADD += $(LIBSOCKET) $(GETADDRINFO_LIB) $(LIB_CLOCK_GETTIME) \ + $(SERVENT_LIB) noinst_LTLIBRARIES += libcmd-cli.la libcmd_cli_la_CFLAGS = libcmd_cli_la_SOURCES = cli-args.def cli-args.c cli-args.h |