1067610f1Smrg 2067610f1Smrgdnl Copyright 2005 Red Hat, Inc. 3067610f1Smrgdnl 4067610f1Smrgdnl Permission to use, copy, modify, distribute, and sell this software and its 5067610f1Smrgdnl documentation for any purpose is hereby granted without fee, provided that 6067610f1Smrgdnl the above copyright notice appear in all copies and that both that 7067610f1Smrgdnl copyright notice and this permission notice appear in supporting 8067610f1Smrgdnl documentation, and that the name of Red Hat not be used in 9067610f1Smrgdnl advertising or publicity pertaining to distribution of the software without 10067610f1Smrgdnl specific, written prior permission. Red Hat makes no 11067610f1Smrgdnl representations about the suitability of this software for any purpose. It 12067610f1Smrgdnl is provided "as is" without express or implied warranty. 13067610f1Smrgdnl 14067610f1Smrgdnl RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15067610f1Smrgdnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16067610f1Smrgdnl EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17067610f1Smrgdnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18067610f1Smrgdnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19067610f1Smrgdnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20067610f1Smrgdnl PERFORMANCE OF THIS SOFTWARE. 21067610f1Smrgdnl 22067610f1Smrgdnl Process this file with autoconf to create configure. 23067610f1Smrg 24aea1d7ffSmrg# Initialize Autoconf 257e6533d5SmrgAC_PREREQ([2.60]) 2658105723SmrgAC_INIT([xfsinfo], [1.0.7], 2758105723Smrg [https://gitlab.freedesktop.org/xorg/app/xfsinfo/-/issues], [xfsinfo]) 28aea1d7ffSmrgAC_CONFIG_SRCDIR([Makefile.am]) 29aea1d7ffSmrgAC_CONFIG_HEADERS([config.h]) 30aea1d7ffSmrg 31aea1d7ffSmrg# Initialize Automake 3258105723SmrgAM_INIT_AUTOMAKE([foreign dist-xz]) 33067610f1Smrg 347e6533d5Smrg# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS 357e6533d5Smrgm4_ifndef([XORG_MACROS_VERSION], 367e6533d5Smrg [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) 377e6533d5SmrgXORG_MACROS_VERSION(1.8) 387e6533d5SmrgXORG_DEFAULT_OPTIONS 39067610f1Smrg 40067610f1Smrg# Checks for pkg-config packages 4158105723SmrgPKG_CHECK_MODULES(XFSINFO, [xproto >= 7.0.25 libfs]) 42067610f1Smrg 43aea1d7ffSmrgAC_CONFIG_FILES([ 44aea1d7ffSmrg Makefile 45aea1d7ffSmrg man/Makefile]) 46aea1d7ffSmrgAC_OUTPUT 47