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:
commit
b6b94ba55c
|
|
@ -82,6 +82,15 @@ jobs:
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y git libc6:amd64 libstdc++6:amd64
|
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
|
- name: Debian Testing
|
||||||
image: debian:testing-slim
|
image: debian:testing-slim
|
||||||
pre-checkout-setup: |
|
pre-checkout-setup: |
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@
|
||||||
#include <gio/gunixinputstream.h>
|
#include <gio/gunixinputstream.h>
|
||||||
#include <gio/gunixoutputstream.h>
|
#include <gio/gunixoutputstream.h>
|
||||||
#include <glib-unix.h>
|
#include <glib-unix.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <sys/mount.h>
|
#include <sys/mount.h>
|
||||||
#include <sys/statvfs.h>
|
#include <sys/statvfs.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue