-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Robert Schwebel on 12/26/2009 7:19 AM: > We need $(LIB_CLOCK_GETTIME) to link the tac tool.
Thanks for the report and patch. Actually, though, it is better to list LIB_GETHRXTIME, since it was the use of mkstemps (and thus gen_tempname) that dragged in the dependency. Here is what I will push: - -- Don't work too hard, make some time for fun as well! Eric Blake [email protected] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAks2SmIACgkQ84KuGfSFAYDXugCgnLrxykky8NyM0qoChpnJg//Y IngAnjUq+bojrZTd+QBwZvKdH+nFaqUH =Z5J9 -----END PGP SIGNATURE-----
From 99b9fc3eeff6b8d7544ae9657f026f1c0ed77e57 Mon Sep 17 00:00:00 2001 From: Eric Blake <[email protected]> Date: Sat, 26 Dec 2009 10:37:44 -0700 Subject: [PATCH] tac: supply link dependency * src/Makefile.am (tac_LDADD): Add LIB_GETHRXTIME. * THANKS: Update. Reported by Robert Schwebel. --- src/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 208cb6c..86d78f7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -325,12 +325,13 @@ ls_LDADD += $(LIB_CLOCK_GETTIME) pr_LDADD += $(LIB_CLOCK_GETTIME) touch_LDADD += $(LIB_CLOCK_GETTIME) -# for gethrxtime, randint, randread, gen_tempname +# for gethrxtime, randint, randread, gen_tempname, mkstemp dd_LDADD += $(LIB_GETHRXTIME) mktemp_LDADD += $(LIB_GETHRXTIME) shred_LDADD += $(LIB_GETHRXTIME) shuf_LDADD += $(LIB_GETHRXTIME) sort_LDADD += $(LIB_GETHRXTIME) +tac_LDADD += $(LIB_GETHRXTIME) # for cap_get_file ls_LDADD += $(LIB_CAP) -- 1.6.4.2
