From: Paul Eggert Date: Mon, 20 Feb 2006 08:50:33 +0000 (+0000) Subject: Add basic support for Erlang, both for configuring Erlang/OTP X-Git-Tag: AUTOCONF-2.59c~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0703407fc5b7f935c1a092cad3f4dd4e95283df;p=thirdparty%2Fautoconf.git 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. --- diff --git a/ChangeLog b/ChangeLog index ef4edb500..e53caf00a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-02-20 Romain Lenglet + + 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 * doc/autoconf.texi (Shellology) : Document that pdksh as diff --git a/THANKS b/THANKS index b48ddf7ca..9f9c9498d 100644 --- 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 diff --git a/lib/autoconf/Makefile.am b/lib/autoconf/Makefile.am index a53a78dad..a70211e41 100644 --- a/lib/autoconf/Makefile.am +++ b/lib/autoconf/Makefile.am @@ -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 diff --git a/lib/autoconf/autoconf.m4 b/lib/autoconf/autoconf.m4 index c8d05f0d1..07d914a88 100644 --- a/lib/autoconf/autoconf.m4 +++ b/lib/autoconf/autoconf.m4 @@ -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])