mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Deviations from upstream xz-5.6.2 release are in the CMake infrastructure, to try and make the library more consumable as a vendored dependency.
23 lines
517 B
Text
23 lines
517 B
Text
# SPDX-License-Identifier: 0BSD
|
|
|
|
#############################################################################
|
|
#
|
|
# SYNOPSIS
|
|
#
|
|
# TUKLIB_COMMON
|
|
#
|
|
# DESCRIPTION
|
|
#
|
|
# Common checks for tuklib.
|
|
#
|
|
#############################################################################
|
|
#
|
|
# Author: Lasse Collin
|
|
#
|
|
#############################################################################
|
|
|
|
AC_DEFUN_ONCE([TUKLIB_COMMON], [
|
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
AC_REQUIRE([AC_PROG_CC_C99])
|
|
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
|
|
])dnl
|