gnulib: update bootstrap and gitignore files

And it turns out mustach.c will not compile without config.h being
explicitly included before other headers, so let me do that.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2024-08-09 11:25:31 +01:00
parent 9c6336e5b6
commit 5ed6e7688f
No known key found for this signature in database
GPG key ID: A9553245FDE9B739
4 changed files with 1223 additions and 778 deletions

1935
bootstrap

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
# Bootstrap configuration.
# Bootstrap configuration. -*- sh -*-
# Copyright (C) 2006-2022 Free Software Foundation, Inc.
# Copyright (C) 2006-2024 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by

60
lib/.gitignore vendored
View file

@ -1,11 +1,12 @@
/alloca.h
/alloca.in.h
/arg-nonnull.h
/arpa/inet.h
/arpa_inet.in.h
/assert.in.h
/attribute.h
/basename-lgpl.c
/basename-lgpl.h
/c32is-impl.h
/c32isprint.c
/calloc.c
/c-ctype.c
/c-ctype.h
@ -22,18 +23,14 @@
/c-strcaseeq.h
/c-strcase.h
/c-strncasecmp.c
/dirname.h
/dirname-lgpl.c
/dosname.h
/dup2.c
/errno.in.h
/error.c
/error.h
/error.in.h
/exitfail.c
/exitfail.h
/fclose.c
/fcntl.c
/fcntl.h
/fcntl.in.h
/fd-hook.c
/fd-hook.h
@ -69,8 +66,6 @@
/getprogname.c
/getprogname.h
/gettext.h
/.gitignore~
/glthread/*
/hard-locale.c
/hard-locale.h
/ialloc.c
@ -78,7 +73,7 @@
/idx.h
/inet_pton.c
/intprops.h
/inttypes.h
/intprops-internal.h
/inttypes.in.h
/isnan.c
/isnand.c
@ -88,29 +83,25 @@
/lc-charset-dispatch.c
/lc-charset-dispatch.h
/libc-config.h
/libdhcpd_pools.la
/.libs/
/limits.h
/limits.in.h
/*.lo
/localcharset.c
/localcharset.h
/locale.h
/locale.in.h
/localtime-buffer.c
/localtime-buffer.h
/localename.h
/localename-unsafe.c
/lseek.c
/Makefile.am
/malloca.c
/malloca.h
/malloc.c
/math.c
/math.h
/math.in.h
/mbrtoc32.c
/mbrtowc.c
/mbrtowc-impl.h
/mbrtowc-impl-utf8.h
/mbsinit.c
/mbszero.c
/mbtowc-lock.c
/mbtowc-lock.h
/memchr.c
@ -138,21 +129,19 @@
/setlocale-lock.c
/setlocale_null.c
/setlocale_null.h
/setlocale_null-unlocked.c
/stat.c
/stat-time.c
/stat-time.h
/stat-w32.c
/stat-w32.h
/stdalign.in.h
/stdbool.in.h
/stdckdint.in.h
/stddef.in.h
/stdint.in.h
/stdio.h
/stdio-impl.h
/stdio.in.h
/stdio-read.c
/stdio-write.c
/stdlib.h
/stdlib.in.h
/stpncpy.c
/strdup.c
@ -160,50 +149,39 @@
/strerror.c
/strerror-override.c
/strerror-override.h
/strftime.c
/strftime.h
/string.h
/string.in.h
/stripslash.c
/strstr.c
/strtod.c
/str-two-way.h
/sys_socket.c
/sys/socket.h
/sys_socket.in.h
/sys/stat.h
/sys_stat.in.h
/sys/types.h
/sys_types.in.h
/sys/uio.h
/sys_uio.in.h
/timegm.c
/time.h
/time.in.h
/time-internal.h
/time_r.c
/time_rz.c
/tzset.c
/uchar.in.h
/unictype/bitmap.h
/unictype/ctype_print.c
/unictype/ctype_print.h
/unictype/.gitignore
/unictype.in.h
/unistd.c
/unistd.h
/unistd.in.h
/unitypes.in.h
/unsetenv.c
/unused-parameter.h
/verify.h
/warn-on-use.h
/wchar.h
/wchar.in.h
/wctype.h
/wctype-h.c
/wctype.in.h
/windows-initguard.h
/windows-mutex.c
/windows-mutex.h
/windows-once.c
/windows-once.h
/windows-recmutex.c
/windows-recmutex.h
/windows-rwlock.c
/windows-rwlock.h
/xalloc-die.c
/xalloc.h
/xalloc-oversized.h

View file

@ -19,6 +19,8 @@
#define _GNU_SOURCE
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>