# -*- Autoconf -*- # Configuration for Wyslij-po # # Copyright (C) 2007-2021 Sergey Poznyakoff # # Wyslij-po 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, or (at your option) # any later version. # # Wyslij-po 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 Wyslij-po. If not, see . */ AC_PREREQ(2.64) AC_INIT([wyslij-po], [3.3], [bug-wyslij-po@gnu.org.ua], [wyslij-po], [http://www.gnu.org.ua/software/wyslij-po]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/wyslij-po.h]) AM_INIT_AUTOMAKE(gnits 1.11 tar-ustar std-options silent-rules) AC_CONFIG_HEADERS([config.h]) # Enable silent rules by default: AM_SILENT_RULES([yes]) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T # Check for GNU Mailutils AM_GNU_MAILUTILS(3.4, [auth mailer]) # Gettext. AM_ICONV AM_GNU_GETTEXT([external], [need-formatstring-macros]) AM_GNU_GETTEXT_VERSION([0.19]) AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile po/Makefile.in]) AC_OUTPUT