diff options
| author | Artyom Poptsov <poptsov.artyom@gmail.com> | 2013-11-08 22:08:26 +0400 |
|---|---|---|
| committer | Artyom Poptsov <poptsov.artyom@gmail.com> | 2013-11-08 22:08:26 +0400 |
| commit | b08ff3ed8eb2135c4ca77a034d8df1440671920f (patch) | |
| tree | d556b6fd71e7187b7dc833c03224b35b43920f5e /configure.ac | |
| parent | configure.ac: Use `PKG_CHECK_MODULES' macro. (diff) | |
| download | guile-ssh-b08ff3ed8eb2135c4ca77a034d8df1440671920f.tar.gz | |
configure.ac: Use AC_COPYRIGHT to store copyright information.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index df03be4..1110b67 100644 --- a/configure.ac +++ b/configure.ac @@ -1,22 +1,30 @@ -## Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> -## -## This file is part of libguile-ssh. -## -## libguile-ssh 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. -## -## libguile-ssh 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +dnl configuration script for Guile-SSH +dnl Process this file with autoconf to produce configure. +dnl + +define(GUILE_SSH_CONFIGURE_COPYRIGHT, [[ +Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com> + +This file is part of libguile-ssh. + +libguile-ssh 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. + +libguile-ssh 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 libguile-ssh. If not, see <http://www.gnu.org/licenses/>. +]]) AC_INIT([libguile-ssh], [0.3.1], [poptsov.artyom@gmail.com]) +AC_COPYRIGHT(GUILE_SSH_CONFIGURE_COPYRIGHT) + AM_INIT_AUTOMAKE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY],1)]) |
