67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
# SPDX-FileCopyrightText: 2022 stenc authors
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
AC_INIT([stenc],[2.0.1])
|
|
AC_CONFIG_SRCDIR([src/main.cpp])
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
AC_CHECK_HEADERS
|
|
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h])
|
|
# Checks for programs
|
|
AC_PROG_CXX
|
|
|
|
AC_MSG_CHECKING(whether to output raw SCSI messages)
|
|
AC_ARG_WITH([scsi-debug],
|
|
[AS_HELP_STRING([--with-scsi-debug],[enable scsi communication debug])],
|
|
[AC_DEFINE([DEBUGSCSI],[1],[Define if you want to debug SCSI Communication])
|
|
AC_MSG_RESULT(yes)],
|
|
[AC_MSG_RESULT(no)])
|
|
|
|
AC_MSG_CHECKING(your OS)
|
|
system=`uname`
|
|
case $system in
|
|
Linux)
|
|
AC_DEFINE(OS_LINUX,1,"")
|
|
AC_MSG_RESULT(Linux)
|
|
;;
|
|
FreeBSD)
|
|
AC_DEFINE(OS_FREEBSD,1,"")
|
|
AC_MSG_RESULT(FreeBSD)
|
|
;;
|
|
*)
|
|
AC_MSG_ERROR(unknown OS type: $system)
|
|
;;
|
|
esac
|
|
|
|
AC_MSG_CHECKING(whether to build with static libgcc)
|
|
AC_ARG_WITH([static-libgcc],
|
|
[AS_HELP_STRING([--with-static-libgcc],[build with static libgcc library])],
|
|
[
|
|
AC_MSG_RESULT(yes)
|
|
LDFLAGS="${LDFLAGS} -static-libgcc -Wl,-static -lstdc++ -lsupc++"
|
|
],
|
|
[AC_MSG_RESULT(no)])
|
|
|
|
AC_CHECK_PROG(PANDOC, [pandoc], [yes])
|
|
AM_CONDITIONAL([FOUND_PANDOC], [test "x$PANDOC" = xyes])
|
|
AM_COND_IF([FOUND_PANDOC],,[AC_MSG_ERROR([required program 'pandoc' not found.])])
|
|
|
|
if test "${system}" = "FreeBSD"; then
|
|
LIBS="${LIBS} -lcam"
|
|
fi
|
|
|
|
# BASH completion
|
|
PKG_CHECK_VAR([BASH_COMPLETION_DIR], [bash-completion >= 2.0], [completionsdir],
|
|
[
|
|
with_bash_completion_dir=yes;
|
|
AC_MSG_NOTICE(BASH_COMPLETION_DIR is $BASH_COMPLETION_DIR);
|
|
AC_SUBST([BASH_COMPLETION_DIR])
|
|
],
|
|
[with_bash_completion_dir=no])
|
|
|
|
AM_CONDITIONAL([ENABLE_BASH_COMPLETION],[test "x$with_bash_completion_dir" != "xno"])
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile tests/Makefile bash-completion/Makefile])
|
|
AC_OUTPUT
|