1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

build-sys: move fdset.[ch] src/basic → src/shared (#3580)

It makes use of the sd_listen_fds() call, and as such should live in
src/shared, as the distinction between src/basic and src/shared is that the
latter may use libsystemd APIs, the former does not.

Note that btrfs-util.[ch] and log.[ch] also include header files from
libsystemd, but they only need definitions, they do not invoke any function
from it. Hence they may stay in src/basic.
This commit is contained in:
Lennart Poettering 2016-06-23 04:10:53 +02:00 committed by Evgeny Vereshchagin
parent b09c0bbad8
commit 4b7abb5b11
3 changed files with 3 additions and 3 deletions

View File

@ -836,8 +836,6 @@ libbasic_la_SOURCES = \
src/basic/ordered-set.c \
src/basic/bitmap.c \
src/basic/bitmap.h \
src/basic/fdset.c \
src/basic/fdset.h \
src/basic/prioq.c \
src/basic/prioq.h \
src/basic/web-util.c \
@ -1050,7 +1048,9 @@ libshared_la_SOURCES = \
src/shared/vlan-util.h \
src/shared/vlan-util.c \
src/shared/tests.h \
src/shared/tests.c
src/shared/tests.c \
src/shared/fdset.c \
src/shared/fdset.h
if HAVE_UTMP
libshared_la_SOURCES += \