Eliminate non-posix standard variables

This commit is contained in:
Ervin Hegedus
2025-08-25 15:36:36 +02:00
parent a07ed61e74
commit 506bc97617
3 changed files with 24 additions and 18 deletions

View File

@@ -2,6 +2,28 @@
rm -rf autom4te.cache
rm -f aclocal.m4
cd src
rm -f haders.mk
echo "noinst_HEADERS = \\" > headers.mk
ls -1 \
actions/*.h \
actions/ctl/*.h \
actions/data/*.h \
actions/disruptive/*.h \
actions/transformations/*.h \
debug_log/*.h \
audit_log/writer/*.h \
collection/backend/*.h \
operators/*.h \
parser/*.h \
request_body_processor/*.h \
utils/*.h \
variables/*.h \
engine/*.h \
*.h | tr "\012" " " >> headers.mk
cd ../
case `uname` in Darwin*) glibtoolize --force --copy ;;
*) libtoolize --force --copy ;; esac
autoreconf --install