diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2019-01-03 22:00:28 +0000 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2019-01-04 10:48:16 +0000 |
commit | c3046c24341802027de0b4466e28533e14c10bb4 (patch) | |
tree | 974cbb98f2b5c0887e49d66ed7f9a2d1e2cbfbea /src | |
parent | 380cab695fe68e380d9f0ee118f70c16eb493691 (diff) |
Add missing config.h includes
Make sure all module files include config.h
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Christophe Fergeau <cfergeau@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vdagentd/console-kit.c | 1 | ||||
-rw-r--r-- | src/vdagentd/dummy-session-info.c | 1 | ||||
-rw-r--r-- | src/vdagentd/systemd-login.c | 1 | ||||
-rw-r--r-- | src/vdagentd/virtio-port.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/vdagentd/console-kit.c b/src/vdagentd/console-kit.c index c9da0b9..fc630f1 100644 --- a/src/vdagentd/console-kit.c +++ b/src/vdagentd/console-kit.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include "session-info.h" #include <dbus/dbus.h> diff --git a/src/vdagentd/dummy-session-info.c b/src/vdagentd/dummy-session-info.c index 1be27ae..7fd1eea 100644 --- a/src/vdagentd/dummy-session-info.c +++ b/src/vdagentd/dummy-session-info.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include "session-info.h" diff --git a/src/vdagentd/systemd-login.c b/src/vdagentd/systemd-login.c index a20cd58..a11b66d 100644 --- a/src/vdagentd/systemd-login.c +++ b/src/vdagentd/systemd-login.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include "session-info.h" #include <errno.h> diff --git a/src/vdagentd/virtio-port.c b/src/vdagentd/virtio-port.c index c037603..b40cf86 100644 --- a/src/vdagentd/virtio-port.c +++ b/src/vdagentd/virtio-port.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <config.h> #include <errno.h> #include <stdlib.h> |