mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
e599bba421
Separate a few reusable components from XZ Utils specific code. The reusable code is now in "tuklib" modules. A few more could be separated still, e.g. bswap.h. Fix some bugs in lzmainfo. Fix physmem and cpucores code on OS/2. Thanks to Elbert Pol for help. Add OpenVMS support into physmem. Add a few #ifdefs to ease building XZ Utils on OpenVMS. Thanks to Jouk Jansen for the original patch.
22 lines
364 B
Text
22 lines
364 B
Text
#
|
|
# SYNOPSIS
|
|
#
|
|
# TUKLIB_COMMON
|
|
#
|
|
# DESCRIPTION
|
|
#
|
|
# Common checks for tuklib.
|
|
#
|
|
# COPYING
|
|
#
|
|
# Author: Lasse Collin
|
|
#
|
|
# This file has been put into the public domain.
|
|
# You can do whatever you want with this file.
|
|
#
|
|
|
|
AC_DEFUN_ONCE([TUKLIB_COMMON], [
|
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
AC_REQUIRE([AC_PROG_CC_C99])
|
|
AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
|
|
])dnl
|