On Tue, Jan 28, 2020 at 01:11:37PM +0000, Daniel P. Berrangé wrote:
This deletes all trace of gnulib from libvirt. We still
have the keycodemapdb submodule to deal with. The simple
solution taken was to update it when running autogen.sh.
Previously gnulib could auto-trigger refresh when running
'make' too. We could figure out a solution for this, but
with the pending meson rewrite it isn't worth worrying
about, given how infrequently keycodemapdb changes.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
.color_coded.in | 2 -
.gitignore | 9 +-
.gitmodules | 3 -
.gnulib | 1 -
.ycm_extra_conf.py.in | 2 -
Makefile.am | 2 +-
README-hacking | 9 +-
autogen.sh | 219 +------
bootstrap | 1073 -------------------------------
bootstrap.conf | 100 ---
build-aux/syntax-check.mk | 129 +---
ci/build.sh | 4 +-
config-post.h | 5 +-
configure.ac | 11 +-
docs/compiling.html.in | 25 -
docs/hacking.html.in | 5 +-
gnulib/lib/Makefile.am | 30 -
libvirt.spec.in | 2 -
m4/virt-compile-warnings.m4 | 18 +-
src/Makefile.am | 7 +-
src/admin/Makefile.inc.am | 1 -
src/bhyve/Makefile.inc.am | 1 -
src/interface/Makefile.inc.am | 1 -
src/libxl/Makefile.inc.am | 1 -
src/locking/Makefile.inc.am | 3 -
src/logging/Makefile.inc.am | 1 -
src/lxc/Makefile.inc.am | 2 -
src/network/Makefile.inc.am | 3 +-
src/node_device/Makefile.inc.am | 2 -
src/nwfilter/Makefile.inc.am | 1 -
src/qemu/Makefile.inc.am | 1 -
src/remote/Makefile.inc.am | 1 -
src/rpc/virnetsocket.c | 6 -
src/secret/Makefile.inc.am | 1 -
src/security/Makefile.inc.am | 1 -
src/storage/Makefile.inc.am | 16 -
src/util/viralloc.h | 3 +-
src/util/virbitmap.c | 4 +-
src/util/virfile.c | 7 +-
src/util/virsocket.h | 15 -
src/vbox/Makefile.inc.am | 1 -
src/vz/Makefile.inc.am | 1 -
tests/Makefile.am | 21 +-
tests/virstringtest.c | 3 +-
tools/Makefile.am | 9 +-
45 files changed, 62 insertions(+), 1700 deletions(-)
delete mode 160000 .gnulib
delete mode 100755 bootstrap
delete mode 100644 bootstrap.conf
delete mode 100644 gnulib/lib/Makefile.am
You've missed some gnulib related things in build-aux/syntax-check.mk,
with that fixed:
Reviewed-by: Pavel Hrdina <phrdina(a)redhat.com>