summaryrefslogtreecommitdiff
path: root/src/journal-remote
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-01-24 15:14:15 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-01-24 22:04:03 +0100
commit4a7ee0a5217ab963c12704dbff428c43d9df81f0 (patch)
tree3ed6aa0e2bfbcb394f35da8fd8a1fa58b64fcd1f /src/journal-remote
parentbe551917938391ba57fd570bd19be4d6c3c547bc (diff)
downloadsystemd-4a7ee0a5217ab963c12704dbff428c43d9df81f0.tar.gz
meson: Do not include headers in source lists
Meson+ninja+compiler do this for us and are better at it. https://mesonbuild.com/FAQ.html#do-i-need-to-add-my-headers-to-the-sources-list-like-in-autotools
Diffstat (limited to 'src/journal-remote')
-rw-r--r--src/journal-remote/meson.build8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/journal-remote/meson.build b/src/journal-remote/meson.build
index f81d906616..ac375741b0 100644
--- a/src/journal-remote/meson.build
+++ b/src/journal-remote/meson.build
@@ -1,23 +1,18 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
systemd_journal_upload_sources = files(
- 'journal-upload.h',
- 'journal-upload.c',
'journal-upload-journal.c',
+ 'journal-upload.c',
)
libsystemd_journal_remote_sources = files(
- 'journal-remote-parse.h',
'journal-remote-parse.c',
- 'journal-remote-write.h',
'journal-remote-write.c',
- 'journal-remote.h',
'journal-remote.c',
)
if conf.get('HAVE_MICROHTTPD') == 1
libsystemd_journal_remote_sources += files(
- 'microhttpd-util.h',
'microhttpd-util.c',
)
endif
@@ -38,7 +33,6 @@ systemd_journal_remote_sources = files('journal-remote-main.c')
systemd_journal_gatewayd_sources = files(
'journal-gatewayd.c',
- 'microhttpd-util.h',
'microhttpd-util.c',
)