From 16aee45643e593e2833e4dff19df7b5f14267a79 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 18 Feb 2007 23:43:16 +0100 Subject: Imported http://autoconf-archive.cryp.to/ release 2007-02-14. --- m4/acltx_class_article.m4 | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 m4/acltx_class_article.m4 (limited to 'm4/acltx_class_article.m4') diff --git a/m4/acltx_class_article.m4 b/m4/acltx_class_article.m4 new file mode 100644 index 0000000..99eadf3 --- /dev/null +++ b/m4/acltx_class_article.m4 @@ -0,0 +1,37 @@ +##### http://autoconf-archive.cryp.to/acltx_class_article.html +# +# SYNOPSIS +# +# ACLTX_CLASS_ARTICLE([ACTION-IF-NOT-FOUND]) +# +# DESCRIPTION +# +# This macro test if class article is installed and fail (default) +# with a error message if not +# +# LAST MODIFICATION +# +# 2006-07-16 +# +# COPYLEFT +# +# Copyright (c) 2006 Boretti Mathieu +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public License +# as published by the Free Software Foundation; either version 2.1 of +# the License, or (at your option) any later version. +# +# This library 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 +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA + +AC_DEFUN([ACLTX_CLASS_ARTICLE],[ +ACLTX_CLASS(article,article,[],[m4_ifval([$1],[$1],AC_MSG_ERROR([Unable to find the article class]))])]) +]) -- cgit v1.2.1 From 18d1c6b5de2139c328df473643d99991ec1f2320 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 12 Apr 2008 20:25:45 +0200 Subject: ALL: updated m4 distribution format The markup format distributed by the Autoconf Macro Archive underwent the following changes: * All archive entries use '#' comment delimiters, rather than 'dnl', because we would like those comments to go into the generated configure script. It should be simple for everyone to determine where the macro came from originally, who wrote it, and where the latest version can be retrieved. To achieve this, every macro used to start with a distinguished line that shows the URL of its respective home page, i.e.: | ##### http://autoconf-archive.cryp.to/ax_prog_acme.html As it happens, the aclocal utility distributed with Automake ignores all comment lines that start with a double hash '##', thus those home page URLs will not make it into any automatically generated aclocal.m4 file. Duh. To remedy the situation, the following markup is now used instead: | # ================================================================= | # http://autoconf-archive.cryp.to/ax_prog_acme.html | # ================================================================= * The 2.x versions of the GNU GPL and LGPL contain the following clause: | You should have received a copy of the along | with this program; if not, write to the Free Software Foundation, | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Version 3.x, however, smartly refers the reader to the Web: | You should have received a copy of the GNU General Public License | along with this program. If not, see . This patch changes all GPL2 and LGPL2 macros to do the same, i.e. to refer to the GNU web site for the full text of the respective license. * Since all m4 files had to be changed in this commit anyway, the opportunity was used to increase the auto-fill column for documentation from 65 to 75 characters per line. It's a trivial change, but it just looks nicer. --- m4/acltx_class_article.m4 | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'm4/acltx_class_article.m4') diff --git a/m4/acltx_class_article.m4 b/m4/acltx_class_article.m4 index 99eadf3..660fe5b 100644 --- a/m4/acltx_class_article.m4 +++ b/m4/acltx_class_article.m4 @@ -1,4 +1,6 @@ -##### http://autoconf-archive.cryp.to/acltx_class_article.html +# =========================================================================== +# http://autoconf-archive.cryp.to/acltx_class_article.html +# =========================================================================== # # SYNOPSIS # @@ -6,31 +8,29 @@ # # DESCRIPTION # -# This macro test if class article is installed and fail (default) -# with a error message if not +# This macro test if class article is installed and fail (default) with a +# error message if not # # LAST MODIFICATION # -# 2006-07-16 +# 2008-04-12 # # COPYLEFT # -# Copyright (c) 2006 Boretti Mathieu +# Copyright (c) 2008 Boretti Mathieu # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public License -# as published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. +# This library is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or (at +# your option) any later version. # # This library 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 -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser +# General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301 USA +# You should have received a copy of the GNU Lesser General Public License +# along with this library. If not, see . AC_DEFUN([ACLTX_CLASS_ARTICLE],[ ACLTX_CLASS(article,article,[],[m4_ifval([$1],[$1],AC_MSG_ERROR([Unable to find the article class]))])]) -- cgit v1.2.1 From 21db849630dd89e93dcf57a84269a2bd68b16e1c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 26 Apr 2009 21:31:52 +0200 Subject: ALL: consistency edits (see NEWS) * Consistently refer to this project as Autoconf Archive. * Removed the LAST MODIFICATION section, because that information is redundant in the presence of Git. * COPYLEFT has been renamed to LICENSE: some licenses, like all-permissive, are no copylefts. --- m4/acltx_class_article.m4 | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'm4/acltx_class_article.m4') diff --git a/m4/acltx_class_article.m4 b/m4/acltx_class_article.m4 index 660fe5b..668dae5 100644 --- a/m4/acltx_class_article.m4 +++ b/m4/acltx_class_article.m4 @@ -11,11 +11,7 @@ # This macro test if class article is installed and fail (default) with a # error message if not # -# LAST MODIFICATION -# -# 2008-04-12 -# -# COPYLEFT +# LICENSE # # Copyright (c) 2008 Boretti Mathieu # -- cgit v1.2.1