diff options
author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2014-04-02 11:51:40 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-04-04 13:36:54 -0400 |
commit | c4c265804080234bd1fd47f8c5bf9e58aeca677a (patch) | |
tree | de048069ccc57f695566ed762bd47b4be9198e41 /src/libudev/Makefile.am | |
parent | a1a5424a623eabb11da4aa5d4614f3c5bf22ff82 (diff) |
libudev: Fix redefinition of usec_t and nsec_t.
The type definitions usec_t and nsec_t where defined twice: in
path-util.h and util.h.
time-util.h and time-util.c now gather the time-related functions and
definitions (as in upstream systemd).
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/Makefile.am')
-rw-r--r-- | src/libudev/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libudev/Makefile.am b/src/libudev/Makefile.am index 8ad49484ef..3a0de58865 100644 --- a/src/libudev/Makefile.am +++ b/src/libudev/Makefile.am @@ -47,6 +47,7 @@ libudev_la_SOURCES =\ strbuf.c \ strv.c \ strxcpyx.c \ + time-util.c \ util.c \ utf8.c @@ -73,6 +74,7 @@ noinst_HEADERS = \ strbuf.h \ strv.h \ strxcpyx.h \ + time-util.h \ util.h \ utf8.h |