1cc68614dSXin LI#! /usr/bin/env bash 2cc68614dSXin LI# __ __ _ 3cc68614dSXin LI# ___\ \/ /_ __ __ _| |_ 4cc68614dSXin LI# / _ \\ /| '_ \ / _` | __| 5cc68614dSXin LI# | __// \| |_) | (_| | |_ 6cc68614dSXin LI# \___/_/\_\ .__/ \__,_|\__| 7cc68614dSXin LI# |_| XML parser 8cc68614dSXin LI# 971f0c44aSXin LI# Copyright (c) 2017-2022 Sebastian Pipping <sebastian@pipping.org> 10cc68614dSXin LI# Copyright (c) 2018 Marco Maggi <marco.maggi-ipsu@poste.it> 11*ffd294a1SEnji Cooper# Copyright (c) 2024 Dag-Erling Smørgrav <des@des.dev> 12cc68614dSXin LI# Licensed under the MIT license: 13cc68614dSXin LI# 14cc68614dSXin LI# Permission is hereby granted, free of charge, to any person obtaining 15cc68614dSXin LI# a copy of this software and associated documentation files (the 16cc68614dSXin LI# "Software"), to deal in the Software without restriction, including 17cc68614dSXin LI# without limitation the rights to use, copy, modify, merge, publish, 18cc68614dSXin LI# distribute, sublicense, and/or sell copies of the Software, and to permit 19cc68614dSXin LI# persons to whom the Software is furnished to do so, subject to the 20cc68614dSXin LI# following conditions: 21cc68614dSXin LI# 22cc68614dSXin LI# The above copyright notice and this permission notice shall be included 23cc68614dSXin LI# in all copies or substantial portions of the Software. 24cc68614dSXin LI# 25cc68614dSXin LI# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 26cc68614dSXin LI# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 27cc68614dSXin LI# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 28cc68614dSXin LI# NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 29cc68614dSXin LI# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 30cc68614dSXin LI# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 31cc68614dSXin LI# USE OR OTHER DEALINGS IN THE SOFTWARE. 32cc68614dSXin LI 33cc68614dSXin LIset -e 34cc68614dSXin LI 35*ffd294a1SEnji Cooperexec autoreconf --warnings=all --install --verbose "$@" 36