summaryrefslogtreecommitdiff
path: root/m4/ax_f90_library.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2008-04-12 20:25:45 +0200
committerPeter Simons <simons@cryp.to>2008-04-12 20:25:45 +0200
commit18d1c6b5de2139c328df473643d99991ec1f2320 (patch)
tree62ca6a8b2792e20963e195dfb9df449c88cec566 /m4/ax_f90_library.m4
parentdb46aa7b5cd0d94ea7f1deb2d5718494faa6c347 (diff)
downloadautoconf-archive-18d1c6b5de2139c328df473643d99991ec1f2320.tar.gz
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 <GNU LICENSE NAME> 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 <http://www.gnu.org/licenses/>. 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.
Diffstat (limited to 'm4/ax_f90_library.m4')
-rw-r--r--m4/ax_f90_library.m444
1 files changed, 22 insertions, 22 deletions
diff --git a/m4/ax_f90_library.m4 b/m4/ax_f90_library.m4
index f38b82e..da28c9d 100644
--- a/m4/ax_f90_library.m4
+++ b/m4/ax_f90_library.m4
@@ -1,4 +1,6 @@
-##### http://autoconf-archive.cryp.to/ax_f90_library.html
+# ===========================================================================
+# http://autoconf-archive.cryp.to/ax_f90_library.html
+# ===========================================================================
#
# SYNOPSIS
#
@@ -6,34 +8,32 @@
#
# DESCRIPTION
#
-# Set up the compiler flags to link a given fortran 90 library
-# LIBRARY is the name of the library. LIB-REGEXP is a regular
-# expression (used by find) matched by the filename of the library,
-# this is useful either if the library filename does not follow the
-# traditional libxxx.a or libxxx.so pattern, or if some specific
-# information is embedded into the name, like compiler used,
-# debugging status ...). FUNCTION-BODY is the body of a function
-# (including the 'use' statements and the call to a function defined
-# by the library) SEARCH-PATH is a colon-separated list of
-# directories that will be used as the base directoris for 'find' to
-# look for the library file. If empty, the search path will be
-# composed of $prefix/lib, $ac_default_prefix/lib, and
-# $LD_LIBRARY_PATH. Two output variables named F90_LDFLAGS_xxx and
-# F90_LIBS_xxx will be set up with the proper flag for substitution
-# in Makefiles (xxx is built from the first argument, with autoconf
-# traditional escapes).
+# Set up the compiler flags to link a given fortran 90 library LIBRARY is
+# the name of the library. LIB-REGEXP is a regular expression (used by
+# find) matched by the filename of the library, this is useful either if
+# the library filename does not follow the traditional libxxx.a or
+# libxxx.so pattern, or if some specific information is embedded into the
+# name, like compiler used, debugging status ...). FUNCTION-BODY is the
+# body of a function (including the 'use' statements and the call to a
+# function defined by the library) SEARCH-PATH is a colon-separated list
+# of directories that will be used as the base directoris for 'find' to
+# look for the library file. If empty, the search path will be composed of
+# $prefix/lib, $ac_default_prefix/lib, and $LD_LIBRARY_PATH. Two output
+# variables named F90_LDFLAGS_xxx and F90_LIBS_xxx will be set up with the
+# proper flag for substitution in Makefiles (xxx is built from the first
+# argument, with autoconf traditional escapes).
#
# LAST MODIFICATION
#
-# 2005-01-14
+# 2008-04-12
#
# COPYLEFT
#
-# Copyright (c) 2005 Luc Maisonobe <luc@spaceroots.org>
+# Copyright (c) 2008 Luc Maisonobe <luc@spaceroots.org>
#
-# Copying and distribution of this file, with or without
-# modification, are permitted in any medium without royalty provided
-# the copyright notice and this notice are preserved.
+# Copying and distribution of this file, with or without modification, are
+# permitted in any medium without royalty provided the copyright notice
+# and this notice are preserved.
AC_DEFUN([AX_F90_LIBRARY],[
AS_VAR_PUSHDEF([ax_ldflags],[ax_f90_ldflags_$1])