From bd4c16b3569919330986e24c4908b60df9cd2f00 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Thu, 29 Aug 2019 14:31:12 +0200 Subject: [PATCH] gio: actually install and reference gnativesocketaddress.h. The header file was installed when building using autotools, but was inadvertently omitted in the meson targets. Luckily, ABI is not impacted, since gnativesocketaddress.c was always compiled and linked into libgio. Fixes: #1854 --- gio/gio.h | 1 + gio/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/gio/gio.h b/gio/gio.h index f4d934dac..8053768a0 100644 --- a/gio/gio.h +++ b/gio/gio.h @@ -93,6 +93,7 @@ #include #include #include +#include #include #include #include diff --git a/gio/meson.build b/gio/meson.build index 7da5906bb..9a9e621b3 100644 --- a/gio/meson.build +++ b/gio/meson.build @@ -672,6 +672,7 @@ gio_headers = files( 'gmemoryinputstream.h', 'gmemoryoutputstream.h', 'gmountoperation.h', + 'gnativesocketaddress.h', 'gnativevolumemonitor.h', 'gnetworkaddress.h', 'gnetworkmonitor.h',