diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-12-26 13:13:03 -0300 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-12-27 10:35:58 +0100 |
commit | 8db11f71137c9b8de26ca20b6c89c4225fc5d954 (patch) | |
tree | 4bd4324248971112e33c749f25db1fa138712c28 /src | |
parent | 3408133de502ec67090f5e8887a9afbd309f94a6 (diff) | |
download | gnutls-8db11f71137c9b8de26ca20b6c89c4225fc5d954.tar.gz |
Add LIB_CLOCK_GETTIME to crywrap
It's used indirectly thus causing build breakage on versions of glibc
where it's defined in librt rather than libc directly.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'src')
-rw-r--r-- | src/crywrap/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crywrap/Makefile.am b/src/crywrap/Makefile.am index a20bcd6169..78ad1ebd7b 100644 --- a/src/crywrap/Makefile.am +++ b/src/crywrap/Makefile.am @@ -28,3 +28,4 @@ bin_PROGRAMS = crywrap crywrap_SOURCES = crywrap.c primes.h crywrap.h crywrap_LDADD = ../../lib/libgnutls.la ../../gl/libgnu.la -lidn +crywrap_LDADD += $(LIB_CLOCK_GETTIME) |