diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-12-14 13:48:56 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-12-14 13:48:56 +0100 |
commit | f58bd7f055988d367d8118ccbc4cb8c4dbfd9db2 (patch) | |
tree | a34a67faf56b6e7223a6b5b1938e1c5db35fbf72 /support | |
parent | 4ca945e9c5421a174e96ff91eda7fa7482cee8c8 (diff) | |
download | glibc-f58bd7f055988d367d8118ccbc4cb8c4dbfd9db2.zip glibc-f58bd7f055988d367d8118ccbc4cb8c4dbfd9db2.tar.gz glibc-f58bd7f055988d367d8118ccbc4cb8c4dbfd9db2.tar.bz2 |
support: Simplify compiling most of support/ outside of glibc
Some include files were missing because they are implied by the
in-tree build process.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'support')
-rw-r--r-- | support/check_addrinfo.c | 1 | ||||
-rw-r--r-- | support/check_dns_packet.c | 1 | ||||
-rw-r--r-- | support/check_hostent.c | 1 | ||||
-rw-r--r-- | support/check_netent.c | 1 | ||||
-rw-r--r-- | support/support_can_chroot.c | 2 | ||||
-rw-r--r-- | support/support_format_addrinfo.c | 1 | ||||
-rw-r--r-- | support/support_format_dns_packet.c | 1 | ||||
-rw-r--r-- | support/support_format_hostent.c | 1 | ||||
-rw-r--r-- | support/support_format_netent.c | 1 | ||||
-rw-r--r-- | support/support_write_file_string.c | 2 | ||||
-rw-r--r-- | support/xdlfcn.c | 1 |
11 files changed, 11 insertions, 2 deletions
diff --git a/support/check_addrinfo.c b/support/check_addrinfo.c index 55895ac..c47f105 100644 --- a/support/check_addrinfo.c +++ b/support/check_addrinfo.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <support/check.h> #include <support/format_nss.h> #include <support/run_diff.h> diff --git a/support/check_dns_packet.c b/support/check_dns_packet.c index d2a31be..6d14bd9 100644 --- a/support/check_dns_packet.c +++ b/support/check_dns_packet.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <support/check.h> #include <support/format_nss.h> #include <support/run_diff.h> diff --git a/support/check_hostent.c b/support/check_hostent.c index 890d672..47fb8bc 100644 --- a/support/check_hostent.c +++ b/support/check_hostent.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <support/check.h> #include <support/format_nss.h> #include <support/run_diff.h> diff --git a/support/check_netent.c b/support/check_netent.c index daa3083..80b6930 100644 --- a/support/check_netent.c +++ b/support/check_netent.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <support/check.h> #include <support/format_nss.h> #include <support/run_diff.h> diff --git a/support/support_can_chroot.c b/support/support_can_chroot.c index 0dfd2de..a462753 100644 --- a/support/support_can_chroot.c +++ b/support/support_can_chroot.c @@ -21,9 +21,9 @@ #include <support/check.h> #include <support/namespace.h> #include <support/support.h> +#include <support/xunistd.h> #include <sys/stat.h> #include <unistd.h> -#include <xunistd.h> static void callback (void *closure) diff --git a/support/support_format_addrinfo.c b/support/support_format_addrinfo.c index eedb030..daf335f 100644 --- a/support/support_format_addrinfo.c +++ b/support/support_format_addrinfo.c @@ -21,6 +21,7 @@ #include <arpa/inet.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <support/support.h> #include <support/xmemstream.h> diff --git a/support/support_format_dns_packet.c b/support/support_format_dns_packet.c index 2992c57..e5ef1aa 100644 --- a/support/support_format_dns_packet.c +++ b/support/support_format_dns_packet.c @@ -20,6 +20,7 @@ #include <arpa/inet.h> #include <resolv.h> +#include <stdbool.h> #include <support/check.h> #include <support/support.h> #include <support/xmemstream.h> diff --git a/support/support_format_hostent.c b/support/support_format_hostent.c index 88c85ec..0aac179 100644 --- a/support/support_format_hostent.c +++ b/support/support_format_hostent.c @@ -21,6 +21,7 @@ #include <arpa/inet.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <support/support.h> #include <support/xmemstream.h> diff --git a/support/support_format_netent.c b/support/support_format_netent.c index 020f572..be8f172 100644 --- a/support/support_format_netent.c +++ b/support/support_format_netent.c @@ -20,6 +20,7 @@ #include <arpa/inet.h> #include <stdio.h> +#include <stdlib.h> #include <support/support.h> #include <support/xmemstream.h> diff --git a/support/support_write_file_string.c b/support/support_write_file_string.c index 48e8959..4873653 100644 --- a/support/support_write_file_string.c +++ b/support/support_write_file_string.c @@ -19,7 +19,7 @@ #include <fcntl.h> #include <string.h> #include <support/check.h> -#include <xunistd.h> +#include <support/xunistd.h> void support_write_file_string (const char *path, const char *contents) diff --git a/support/xdlfcn.c b/support/xdlfcn.c index 6e39799..05966c4 100644 --- a/support/xdlfcn.c +++ b/support/xdlfcn.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <stddef.h> #include <support/check.h> #include <support/xdlfcn.h> |