# configure.ac for dosfstools # Copyright (C) 2015 Andreas Bombe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . AC_INIT([dosfstools], [4.2]) AC_SUBST([RELEASE_DATE], [2021-01-31]) AM_INIT_AUTOMAKE([1.11 foreign subdir-objects parallel-tests]) AC_ARG_ENABLE([compat-symlinks], [AS_HELP_STRING([--enable-compat-symlinks], [install symlinks for legacy names of the tools])], [case "${enableval}" in yes) symlinks=true ;; no) symlinks=false ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-compat-symlinks]) ;; esac], [symlinks=false]) AM_CONDITIONAL([COMPAT_SYMLINKS], [test x$symlinks = xtrue]) AC_ARG_ENABLE([atari-check], [AS_HELP_STRING([--enable-atari-check], [enable legacy check to let tools switch to Atari mode when they detect they are running on 68k Atari hardware (Linux only)])], [case "${enableval}" in yes) AC_SUBST(CHECKATARI, [1]) AC_DEFINE(CONF_CHECK_ATARI) ;; no) AC_SUBST(CHECKATARI, [0]) ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-atari-check]) ;; esac], [AC_SUBST(CHECKATARI, [0])]) AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC AC_PROG_LN_S AC_SYS_LARGEFILE AC_CHECK_HEADERS([\ err.h \ linux/fd.h \ linux/hdreg.h \ linux/version.h \ linux/loop.h \ sys/disk.h \ sys/disklabel.h \ sys/ioccom.h \ sys/mkdev.h \ sys/queue.h \ ]) AC_CHECK_HEADERS([endian.h sys/endian.h libkern/OSByteOrder.h]) AC_CHECK_FUNCS([vasprintf]) AC_CHECK_DECLS([getmntent], [], [], [[#include ]]) AC_CHECK_DECLS([getmntinfo], [], [], [[#include ]]) # optional iconv support AC_ARG_WITH([iconv], AS_HELP_STRING([--without-iconv], [build without iconv support])) if test "x$with_iconv" != "xno"; then AM_ICONV fi # xxd (distributed with vim) is used in the testsuite AC_CHECK_PROG([XXD_FOUND], [xxd], [yes]) # check if automake is 1.11 or 1.12 for using a workaround for the parallel test harness # (we check for a minimum version of 1.11 above, so these are the only two values to check) AM_CONDITIONAL(AUTOMAKE_TEST_COMPAT, test $am__api_version = 1.11 -o $am__api_version = 1.12) AC_CONFIG_FILES([Makefile src/Makefile src/version.h manpages/Makefile manpages/mkfs.fat.8 manpages/fsck.fat.8 manpages/fatlabel.8 tests/Makefile]) AC_OUTPUT