good-bye and thanks, autotools

This commit is contained in:
Ailin Nemui 2022-02-18 20:50:37 +01:00
commit b8736225cf
64 changed files with 118 additions and 3866 deletions

3
utils/check-perl-hash.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
# make sure perl hashes have correct length
find src/perl \( -name '*.c' -o -name '*.xs' \) -exec grep -n hv_store {} + | perl -l -ne 'if (/"(\w+)",\s*(\d+)/ && $2 != length $1) { $X=1; print "Incorrect key length in $_" } END { exit $X }'