diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-02-22 07:10:07 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-02-22 07:10:07 +0000 |
commit | df066e26953a73d5156f49f4ebce9dfc14a06e4e (patch) | |
tree | f937f88aaa814ad0c30bd20f38685940b2f92df2 | |
parent | dcf11140827ae51c08ffe546900cc557f45f3d7e (diff) | |
download | coreutils-df066e26953a73d5156f49f4ebce9dfc14a06e4e.tar.xz |
(dd_LDADD, shred_LDADD): Add $(LIB_GETHRXTIME).
(nanosec_libs): Add $(LIB_XNANOSLEEP). Needed for newer GNU/Linux
hosts with clock_gettime.
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 854ba7583..e31ec0fc9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -43,10 +43,10 @@ test_LDADD = $(LDADD) $(LIB_EACCESS) __LDADD = $(LDADD) $(LIB_EACCESS) # for clock_gettime and fdatasync -dd_LDADD = $(LDADD) $(LIB_FDATASYNC) +dd_LDADD = $(LDADD) $(LIB_GETHRXTIME) $(LIB_FDATASYNC) dir_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) ls_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) -shred_LDADD = $(LDADD) $(LIB_FDATASYNC) +shred_LDADD = $(LDADD) $(LIB_GETHRXTIME) $(LIB_FDATASYNC) vdir_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) ## If necessary, add -lm to resolve use of pow in lib/strtod.c. @@ -69,7 +69,7 @@ seq_LDADD = $(LDADD) $(SEQ_LIBM) # If necessary, add -lm to resolve the `pow' reference in lib/strtod.c # or for the fesetround reference in programs using nanosec.c. nanosec_libs = \ - $(LDADD) $(FESETROUND_LIBM) $(POW_LIB) $(LIB_NANOSLEEP) + $(LDADD) $(FESETROUND_LIBM) $(POW_LIB) $(LIB_XNANOSLEEP) $(LIB_NANOSLEEP) sleep_LDADD = $(nanosec_libs) tail_LDADD = $(nanosec_libs) |