]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Add basic support for Erlang, both for configuring Erlang/OTP
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 20 Feb 2006 08:50:33 +0000 (08:50 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 20 Feb 2006 08:50:33 +0000 (08:50 +0000)
tools, and Erlang as a conf test language.
* lib/autoconf/erlang.m4: New file.
* lib/autoconf/autoconf.m4
* lib/autoconf/Makefile.am (dist_autoconflib_DATA): Add erlang.m4.
* THANKS: Add Romain Lenglet.

ChangeLog
THANKS
lib/autoconf/Makefile.am
lib/autoconf/autoconf.m4

index ef4edb5008fc4774087ceac2852e1e2e552315fd..e53caf00aaafcc3d7ea8bd42263e09ace06b8c51 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
+
+       Add basic support for Erlang, both for configuring Erlang/OTP
+       tools, and Erlang as a conf test language.
+       * lib/autoconf/erlang.m4: New file.
+       * lib/autoconf/autoconf.m4
+       * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Add erlang.m4.
+       * THANKS: Add Romain Lenglet.
+
 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
diff --git a/THANKS b/THANKS
index b48ddf7caae9a38b75fc5c39b898d94d4e5680e9..9f9c9498dfe136ada5f2e938c9fee7e4c7700b8b 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -177,6 +177,7 @@ Robert S. Maier             rsm@math.arizona.edu
 Roberto Bagnara             bagnara@cs.unipr.it
 Roger Leigh                 rleigh@whinlatter.ukfsn.org
 Roland McGrath              roland@gnu.org
+Romain Lenglet              rlenglet@users.forge.objectweb.org
 Ruediger Kuhlmann           info@ruediger-kuhlmann.de
 Russ Allbery                rra@stanford.edu
 Ryuji Abe                   raeva@t3.rim.or.jp
index a53a78dada021d0dcf34ea9bd9bb7ef33a12d3ff..a70211e41746a88cbb081766f3ff2ad668d8f3f6 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to create Makefile.in
 
-## Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+## Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ dist_autoconflib_DATA = \
        autoconf.m4 \
        general.m4 status.m4 oldnames.m4 specific.m4 \
        autoheader.m4 autoupdate.m4 autotest.m4 autoscan.m4 \
-       lang.m4 c.m4 fortran.m4 \
+       lang.m4 c.m4 erlang.m4 fortran.m4 \
        functions.m4 headers.m4 types.m4 libs.m4 programs.m4
 
 nodist_autoconflib_DATA = autoconf.m4f
index c8d05f0d119836ebdbf4354b74d10eeedb1b479e..07d914a88dad60ca4e32729022e169e1a7f9c6d0 100644 (file)
@@ -1,6 +1,8 @@
 # This file is part of Autoconf.                -*- Autoconf -*-
 # Driver that loads the Autoconf macro files.
-# Copyright (C) 1994, 1999, 2000, 2001, 2002  Free Software Foundation, Inc.
+#
+# Copyright (C) 1994, 1999, 2000, 2001, 2002, 2006 Free Software
+# Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -60,6 +62,7 @@ m4_include([autoconf/autotest.m4])
 m4_include([autoconf/programs.m4])
 m4_include([autoconf/lang.m4])
 m4_include([autoconf/c.m4])
+m4_include([autoconf/erlang.m4])
 m4_include([autoconf/fortran.m4])
 m4_include([autoconf/functions.m4])
 m4_include([autoconf/headers.m4])