diff options
9 files changed, 23 insertions, 5 deletions
diff --git a/src/grp-journal/libjournal-core/journald-gperf.gperf b/src/grp-journal/libjournal-core/journald-gperf.gperf index f64cd871fe..7c5c68862a 100644 --- a/src/grp-journal/libjournal-core/journald-gperf.gperf +++ b/src/grp-journal/libjournal-core/journald-gperf.gperf @@ -1,7 +1,9 @@ %{ #include <stddef.h> #include <sys/socket.h> + #include "shared/conf-parser.h" + #include "journald-server.h" %} struct ConfigPerfItem; diff --git a/src/grp-login/systemd-logind/logind-gperf.gperf b/src/grp-login/systemd-logind/logind-gperf.gperf index 6d5c484439..d578234e53 100644 --- a/src/grp-login/systemd-logind/logind-gperf.gperf +++ b/src/grp-login/systemd-logind/logind-gperf.gperf @@ -1,6 +1,8 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" + #include "logind.h" %} struct ConfigPerfItem; diff --git a/src/grp-network/libnetworkd-core/networkd-gperf.gperf b/src/grp-network/libnetworkd-core/networkd-gperf.gperf index e1e2a687e6..6588bada51 100644 --- a/src/grp-network/libnetworkd-core/networkd-gperf.gperf +++ b/src/grp-network/libnetworkd-core/networkd-gperf.gperf @@ -1,6 +1,8 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" + #include "networkd-conf.h" %} struct ConfigPerfItem; diff --git a/src/grp-network/libnetworkd-core/networkd-netdev-gperf.gperf b/src/grp-network/libnetworkd-core/networkd-netdev-gperf.gperf index cfbff05578..09eed25146 100644 --- a/src/grp-network/libnetworkd-core/networkd-netdev-gperf.gperf +++ b/src/grp-network/libnetworkd-core/networkd-netdev-gperf.gperf @@ -1,8 +1,11 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" #include "systemd-network/network-internal.h" + #include "networkd-netdev-bond.h" +#include "networkd-netdev-bridge.h" #include "networkd-netdev-ipvlan.h" #include "networkd-netdev-macvlan.h" #include "networkd-netdev-tunnel.h" @@ -10,7 +13,6 @@ #include "networkd-netdev-veth.h" #include "networkd-netdev-vlan.h" #include "networkd-netdev-vxlan.h" -#include "networkd-netdev-bridge.h" #include "networkd-netdev.h" %} struct ConfigPerfItem; diff --git a/src/grp-network/libnetworkd-core/networkd-network-gperf.gperf b/src/grp-network/libnetworkd-core/networkd-network-gperf.gperf index 50e5d1c19e..490fbb06e9 100644 --- a/src/grp-network/libnetworkd-core/networkd-network-gperf.gperf +++ b/src/grp-network/libnetworkd-core/networkd-network-gperf.gperf @@ -1,9 +1,11 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" -#include "networkd.h" -#include "networkd-conf.h" #include "systemd-network/network-internal.h" + +#include "networkd-conf.h" +#include "networkd.h" %} struct ConfigPerfItem; %null_strings diff --git a/src/grp-resolve/systemd-resolved/resolved-gperf.gperf b/src/grp-resolve/systemd-resolved/resolved-gperf.gperf index 5d1c209c35..7a0a3e3a3d 100644 --- a/src/grp-resolve/systemd-resolved/resolved-gperf.gperf +++ b/src/grp-resolve/systemd-resolved/resolved-gperf.gperf @@ -1,6 +1,8 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" + #include "resolved-conf.h" %} struct ConfigPerfItem; diff --git a/src/grp-udev/libudev-core/net/link-config-gperf.gperf b/src/grp-udev/libudev-core/net/link-config-gperf.gperf index 20cbdf1f5f..c84f4599ce 100644 --- a/src/grp-udev/libudev-core/net/link-config-gperf.gperf +++ b/src/grp-udev/libudev-core/net/link-config-gperf.gperf @@ -1,9 +1,11 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" #include "systemd-network/network-internal.h" -#include "link-config.h" + #include "ethtool-util.h" +#include "link-config.h" %} struct ConfigPerfItem; %null_strings diff --git a/src/systemd-nspawn/nspawn-gperf.gperf b/src/systemd-nspawn/nspawn-gperf.gperf index f814ed8863..dd3c1b3b88 100644 --- a/src/systemd-nspawn/nspawn-gperf.gperf +++ b/src/systemd-nspawn/nspawn-gperf.gperf @@ -1,8 +1,10 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" -#include "nspawn-settings.h" + #include "nspawn-expose-ports.h" +#include "nspawn-settings.h" %} struct ConfigPerfItem; %null_strings diff --git a/src/systemd-timesyncd/timesyncd-gperf.gperf b/src/systemd-timesyncd/timesyncd-gperf.gperf index b8af831105..7e347a033c 100644 --- a/src/systemd-timesyncd/timesyncd-gperf.gperf +++ b/src/systemd-timesyncd/timesyncd-gperf.gperf @@ -1,6 +1,8 @@ %{ #include <stddef.h> + #include "shared/conf-parser.h" + #include "timesyncd-conf.h" %} struct ConfigPerfItem; |