Merge pull request #2598 from lucab/ups/without-systemd-fix

lib/ostree-sysroot-deploy: add a missing include for stdint.h
This commit is contained in:
Joseph Marrero Corchado 2022-05-06 07:45:02 -04:00 committed by GitHub
commit b6b94ba55c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -82,6 +82,15 @@ jobs:
apt-get update
apt-get install -y git libc6:amd64 libstdc++6:amd64
# A build without libsystemd support, similar to what flatpak-builder does.
- name: Debian Stable without libsystemd
image: debian:stable-slim
pre-checkout-setup: |
apt-get update
apt-get install -y git
configure-options: >-
--without-libsystemd
- name: Debian Testing
image: debian:testing-slim
pre-checkout-setup: |

View File

@ -22,6 +22,7 @@
#include <gio/gunixinputstream.h>
#include <gio/gunixoutputstream.h>
#include <glib-unix.h>
#include <stdint.h>
#include <sys/mount.h>
#include <sys/statvfs.h>
#include <sys/socket.h>