]> git.ipfire.org Git - thirdparty/autoconf.git/log
thirdparty/autoconf.git
25 years ago1999-09-14 Akim Demaille <akim@epita.fr>
Akim Demaille [Tue, 14 Sep 1999 14:22:46 +0000 (14:22 +0000)] 
1999-09-14  Akim Demaille  <akim@epita.fr>

* acgeneral.m4 (AC_HELP_STRING): Rewrite in m4.  Have m4 work, and
  give a break to sh.
(_AC_FOREACH): Be careful not to evaluate the arguments.  A loop
over *quoted* macro names should loop over the macro names, not
upon their expansion.
(_AC_COMMATIZE): Also swallow end of lines.

* autoconf.texi (Pretty Help Strings): Updated to reflect the
  changes.

1999-09-13  Akim Demaille  <akim@epita.fr>

* acgeneral.m4 (ifset): New helpy tiny macro.
(AC_OUTPUT): Improved --help of config.status.
(AC_OUTPUT): Remove inconditionaly all the files to be updated.
(AC_OUTPUT): Use pid to define the temporary file names in order
to allow parallel builds.

* autoconf.sh: Substitute also /@BKL@/[/ /@BKR@/]/ /@DLR@/$/ so
  that these characters are more easily accessible from m4 without
  turning changequote juggling into a nightmare.

* acgeneral.m4 (AC_WRAP): New macro, for word wrapping.

* autoconf.texi: Update the direntry for more modern Texinfos.
Add pointer to configure and config.status.
Remove the dots from the menus: horizontal space is precious.
(Invoking config.status): More traditional presentation of the options.

25 years ago * autoheader.sh: Allow multiple spaces between #undef and symbol exp-1999-09-04
Tom Tromey [Fri, 3 Sep 1999 00:49:08 +0000 (00:49 +0000)] 
* autoheader.sh: Allow multiple spaces between #undef and symbol
name.

25 years ago1999-09-01 Akim Demaille <akim@epita.fr>
Akim Demaille [Wed, 1 Sep 1999 09:42:37 +0000 (09:42 +0000)] 
1999-09-01  Akim Demaille  <akim@epita.fr>

* acgeneral.m4 (AC_ACVERSION): Bump to 2.14.1 to differenciate the
experimental branch from the main trunk.

* acgeneral.m4 (AC_FOREACH_COMMA): New macro, to perform m4 loops
  on m4 lists (i.e., list='(item_1, item_2, ..., item_n)').
(AC_FOREACH): New macro, to perform m4 loops on shell lists (i.e.,
  list='item_1 item_2 ... item_n').

* acgeneral.m4 (AC_DEFUN): Now accept two other optionnal
  parameters: the name of the macro which is specialized here, and
  the name of the first argument.  For instance `AC_CHECK_FNMATCH'
  should be declared as specializing `AC_CHECK_FUNC' for `fnmatch'
  as first argument.

* acgeneral.m4 (AC_CHECK_FILES): Use AC_FOREACH for looping,
  instead of the shell's loop.

* acgeneral.m4 (AC_TR): In addition to transliteration, provide a
  mean to specify the valid destination alphabet and a default
  character for aliens characters.  This is in order to remove
characters such as `+:-' etc. that may appear in file names,
but are not valid for shell variables or #defines.
(AC_TR_DEFINE): New macro, maps anything to a valid uppercase
  #define rhs.
(AC_TR_UPCASE_NAME): Replaced by AC_TR_DEFINE.  All callers
  changed.
(AC_TR_UPCASE_FILE): Likewise.

* acgeneral.m4 (AC_TR_SH): Don't use the generic AC_TR: there is a
  difficult problem of quoting between m4 and sh.  Use the variable
  $ac_tr_sh to work around this difficulty.
(AC_VAR_TEST_SET): New macro, which tests if a variable is set.
(AC_VAR_IF_SET): New `ifelse' macro.
(AC_CACHE_VAL): Use AC_VAR_IF_SET.
(AC_INIT_NOTICE): Define $ac_tr_sh.

* acgeneral.m4 (AC_CHECK_FILE): Converted to use AC_TR and AC_VAR
  families.

* acgeneral.m4: Fixed the regular expressions: `$' shall not be
portably in a sed \(\) group.

25 years agoAC_OUTPUT_HEADER: Fix sed portability problems ($ shall not appear
Akim Demaille [Mon, 30 Aug 1999 15:29:58 +0000 (15:29 +0000)] 
AC_OUTPUT_HEADER: Fix sed portability problems ($ shall not appear
in a \(\) group).

25 years ago*** empty log message *** exp-1999-08-23
Matthew D. Langston [Mon, 23 Aug 1999 03:07:03 +0000 (03:07 +0000)] 
*** empty log message ***

25 years ago(Particular Programs): Document new optional argument to AC_PROG_CC,
Matthew D. Langston [Mon, 23 Aug 1999 03:04:54 +0000 (03:04 +0000)] 
(Particular Programs): Document new optional argument to AC_PROG_CC,
AC_PROG_CXX and AC_PROG_F77.  Document additions to the Fortran 77
compiler search list.

25 years ago(AC_PROG_CC): Remove uname test for win32/Cygwin, and just test for `cl'
Matthew D. Langston [Mon, 23 Aug 1999 03:04:05 +0000 (03:04 +0000)] 
(AC_PROG_CC): Remove uname test for win32/Cygwin, and just test for `cl'
as a last resort.

(AC_PROG_F77): Add more Fortran 77 compilers to the search list.
Contributed by Steven G. Johnson <stevenj@alum.mit.edu>.

(AC_PROG_CC): Likewise.
(AC_PROG_CXX): Likewise.
(AC_PROG_F77): Add an optional first argument which gives the user an
opportunity to specify an alternative search list for the compiler.

26 years ago * autoheader.sh: Fixed regexp when searching for missing symbol.
Tom Tromey [Tue, 20 Jul 1999 06:25:04 +0000 (06:25 +0000)] 
* autoheader.sh: Fixed regexp when searching for missing symbol.
From Pavel Roskin.

26 years ago * autoheader.sh: Be more stringent when looking to see if symbol
Tom Tromey [Fri, 16 Jul 1999 23:57:26 +0000 (23:57 +0000)] 
* autoheader.sh: Be more stringent when looking to see if symbol
is in a template file.

26 years ago(AC_LIST_MEMBER_OF): New "private implementation macro" use by
Matthew D. Langston [Thu, 15 Jul 1999 08:44:03 +0000 (08:44 +0000)] 
(AC_LIST_MEMBER_OF): New "private implementation macro" use by
AC_F77_LIBRARY_LDFLAGS.
(AC_LINKER_OPTION): Likewise.

26 years ago(AC_F77_LIBRARY_LDFLAGS): New implementation, to make maintenance
Matthew D. Langston [Thu, 15 Jul 1999 08:37:57 +0000 (08:37 +0000)] 
(AC_F77_LIBRARY_LDFLAGS): New implementation, to make maintenance
easier.
Grep the initial output so that we don't start parsing "-l" and "-L" too
early.  From Christopher Lee <chrislee@ri.cmu.edu>

26 years agoSynchronize documentation with implementation. exp-1999-06-18
Matthew D. Langston [Wed, 9 Jun 1999 21:10:01 +0000 (21:10 +0000)] 
Synchronize documentation with implementation.

26 years agoFix sed regexp for handling CPP macros with args.
Matthew D. Langston [Wed, 9 Jun 1999 21:05:17 +0000 (21:05 +0000)] 
Fix sed regexp for handling CPP macros with args.

26 years agoCorrect a typo.
Ben Elliston [Thu, 3 Jun 1999 14:45:29 +0000 (14:45 +0000)] 
Correct a typo.

26 years agoAdd, and use throughout Autoconf, the following useful m4 macros
Matthew D. Langston [Wed, 2 Jun 1999 15:22:31 +0000 (15:22 +0000)] 
Add, and use throughout Autoconf, the following useful m4 macros
contributed by Akim Demaille <demaille@inf.enst.fr>:
  AC_TR
  AC_TR_UPCASE_NAME
  AC_TR_UPCASE_FILE
  AC_TR_SH
  _AC_SH_QUOTE
  _AC_MESSAGE
  AC_WARNING
  AC_FATAL
  AC_VAR_IF_INDIR

26 years ago(AC_RSH): Use AC_FATAL.
Matthew D. Langston [Wed, 2 Jun 1999 15:15:56 +0000 (15:15 +0000)] 
(AC_RSH): Use AC_FATAL.
(AC_ARG_ARRAY): Idem.
(AC_HAVE_BOUNDBANG): Idem.

26 years ago(AC_PREFIX_PROGRAM): Use macros of the AC_TR_ family.
Matthew D. Langston [Wed, 2 Jun 1999 15:15:11 +0000 (15:15 +0000)] 
(AC_PREFIX_PROGRAM): Use macros of the AC_TR_ family.
(AC_HAVE_LIBRARY): Likewise.
(AC_CHECK_FUNCS): Likewise.
(AC_CHECK_FILES): Likewise.
(AC_CHECK_SIZEOF): Likewise.
(AC_TR): New macro which performs transliteration by m4 when possible,
or by `tr' at configure time.
(AC_TR_UPCASE_NAME): New macro, transliteration 'a-z' to 'A-Z'.
(AC_TR_UPCASE_FILE): New macro, transliteration 'a-z./-' to 'A-Z___'.
(AC_TR_SH): New macro, transliteration to valid sh var name.
(_AC_SH_QUOTE): New macro which protects non protected backquotes
against shell expansion.
(AC_MSG_CHECKING): Use it.
(AC_CHECKING): Use it.
(AC_MSG_RESULT): Use it.
(AC_VERBOSE): Use it.
(AC_MSG_WARN): Use it.
(AC_MSG_ERROR): Use it.
(_AC_MESSAGE): New macro to report message at m4 time.
(AC_WARNING): New macro to report warnings at m4 runtime.
(AC_FATAL): New macro, to report fatal error at m4 runtime.
(AC_VAR_IF_INDIR): New macro.
(AC_VAR_SET): Likewise.
(AC_VAR_GET): Likewise.

26 years agoTypo.
Ben Elliston [Wed, 2 Jun 1999 14:48:57 +0000 (14:48 +0000)] 
Typo.

26 years ago1999-06-03 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 2 Jun 1999 14:44:13 +0000 (14:44 +0000)] 
1999-06-03  Ben Elliston  <bje@cygnus.com>
* acgeneral.m4 (AC_ACVERSION): Correct version number.
* autoconf.texi (EDITION): Likewise.
(VERSION): Likewise.

26 years agoAdd AC_HELP_STRING NEWS.
Matthew D. Langston [Wed, 2 Jun 1999 14:43:53 +0000 (14:43 +0000)] 
Add AC_HELP_STRING NEWS.

26 years ago*** empty log message ***
Matthew D. Langston [Wed, 2 Jun 1999 14:35:03 +0000 (14:35 +0000)] 
*** empty log message ***

26 years ago(Pretty Help Strings): Document new AC_HELP_STRING macro and regenerate
Matthew D. Langston [Wed, 2 Jun 1999 14:34:29 +0000 (14:34 +0000)] 
(Pretty Help Strings): Document new AC_HELP_STRING macro and regenerate
the indices.

26 years ago(AC_HELP_STRING): New macro.
Matthew D. Langston [Wed, 2 Jun 1999 14:33:24 +0000 (14:33 +0000)] 
(AC_HELP_STRING): New macro.

26 years ago*** empty log message ***
Matthew D. Langston [Wed, 2 Jun 1999 13:17:23 +0000 (13:17 +0000)] 
*** empty log message ***

26 years agoBegin documenting the "Major changes" for release 2.14.
Matthew D. Langston [Wed, 2 Jun 1999 13:14:24 +0000 (13:14 +0000)] 
Begin documenting the "Major changes" for release 2.14.

26 years ago{f77-name-mangling}
Matthew D. Langston [Wed, 2 Jun 1999 12:52:25 +0000 (12:52 +0000)] 
{f77-name-mangling}

26 years ago{f77-name-mangling} (Fortran 77 Compiler Characteristics): Document new
Matthew D. Langston [Wed, 2 Jun 1999 12:50:55 +0000 (12:50 +0000)] 
{f77-name-mangling} (Fortran 77 Compiler Characteristics): Document new
AC_F77_NAME_MANGLING and AC_F77_FUNC_WRAPPER macros.

26 years ago{f77-name-mangling} (F77_FUNC): Add.
Matthew D. Langston [Wed, 2 Jun 1999 12:49:08 +0000 (12:49 +0000)] 
{f77-name-mangling} (F77_FUNC): Add.
(F77_FUNC_): Likewise.

26 years ago{f77-name-mangling} (AC_DEFINE): Ignore CPP macro arguments.
Matthew D. Langston [Wed, 2 Jun 1999 12:48:08 +0000 (12:48 +0000)] 
{f77-name-mangling} (AC_DEFINE): Ignore CPP macro arguments.
(AC_DEFINE_UNQUOTED): Likewise.

26 years ago{f77-name-mangling} (AC_OUTPUT_MAKE_DEFS): Change sed regexps to
Matthew D. Langston [Wed, 2 Jun 1999 12:46:59 +0000 (12:46 +0000)] 
{f77-name-mangling} (AC_OUTPUT_MAKE_DEFS): Change sed regexps to
recognize CPP macros that take arguments.  Reported, and based on a
patch, by Steven G. Johnson <stevenj@alum.mit.edu>.
(AC_OUTPUT_HEADER): Likewise.

26 years ago{f77-name-mangling} (AC_F77_WRAPPERS): New macro to define the F77_FUNC
Matthew D. Langston [Wed, 2 Jun 1999 12:45:10 +0000 (12:45 +0000)] 
{f77-name-mangling} (AC_F77_WRAPPERS): New macro to define the F77_FUNC
and F77_FUNC_ CPP macros to properly mangle the names of C identifiers
so that they match the name mangling scheme used by the Fortran 77
compiler.
(AC_F77_NAME_MANGLING): New macro to test for the name mangling scheme
used by the Fortran 77 compiler.

26 years agoTranslate the ":" character to a "_", which allows checking for member
Matthew D. Langston [Thu, 27 May 1999 08:21:27 +0000 (08:21 +0000)] 
Translate the ":" character to a "_", which allows checking for member
functions in C++ libraries.

26 years ago1995-05-25 H.J. Lu <hjl@gnu.org> experimental-branchpoint
Ben Elliston [Tue, 25 May 1999 13:02:37 +0000 (13:02 +0000)] 
1995-05-25  H.J. Lu  <hjl@gnu.org>
* config.guess (dummy): Changed to $dummy.

26 years ago1999-05-22 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sat, 22 May 1999 05:30:31 +0000 (05:30 +0000)] 
1999-05-22  Ben Elliston  <bje@cygnus.com>
* config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
<jiro@din.or.jp>.

26 years agoCorrect a typo.
Ben Elliston [Mon, 17 May 1999 23:03:08 +0000 (23:03 +0000)] 
Correct a typo.

26 years agoCorrect a thinko.
Ben Elliston [Mon, 17 May 1999 04:23:12 +0000 (04:23 +0000)] 
Correct a thinko.

26 years ago1999-05-17 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 17 May 1999 04:11:51 +0000 (04:11 +0000)] 
1999-05-17  Ben Elliston  <bje@cygnus.com>
Merge with the EGCS source tree.
* config.sub: Numerous additions. Some cleanup.

26 years ago1999-05-17 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 16 May 1999 22:00:08 +0000 (22:00 +0000)] 
1999-05-17  Ben Elliston  <bje@cygnus.com>
Merge with the EGCS source tree.
* config.guess: Add detection for Interix and UWIN on Windows NT,
OpenBSD on PA-RISC and UnixWare version 7.x.
Improve usage of `tr' where sets are concerned.
Detect all HP 9000 machines.
Determine machine types more completely on older UnixWare systems.
Determine C library version on GNU/Linux for the PowerPC.

26 years agoAdd copyright for 1999.
Ben Elliston [Fri, 30 Apr 1999 05:09:53 +0000 (05:09 +0000)] 
Add copyright for 1999.

26 years ago1999-04-29 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 29 Apr 1999 05:58:38 +0000 (05:58 +0000)] 
1999-04-29  Ben Elliston  <bje@cygnus.com>
* config.sub: Handle `t3e' alias for Cray T3E. Contributed by
James A. Lupo <lupoja@feynman.ml.wpafb.af.mil>.

26 years ago1999-04-17 Paul Eggert <eggert@twinsun.com>
Tom Tromey [Thu, 22 Apr 1999 21:38:24 +0000 (21:38 +0000)] 
1999-04-17  Paul Eggert  <eggert@twinsun.com>
* autoconf.texi, acspecific.m4 (AC_FUNC_MKTIME): New macro.
taken from automake's AM_FUNC_MKTIME.
* acfunctions: mktime now belongs to AC_FUNC_MKTIME.

26 years agoAdd support for Fortran 77.
Matthew D. Langston [Mon, 19 Apr 1999 17:58:21 +0000 (17:58 +0000)] 
Add support for Fortran 77.

26 years agoSome more, some less.
Ben Elliston [Sun, 11 Apr 1999 05:15:59 +0000 (05:15 +0000)] 
Some more, some less.

26 years ago1999-04-11 Philipp Thomas <kthomas@gwdg.de>
Ben Elliston [Sun, 11 Apr 1999 04:34:22 +0000 (04:34 +0000)] 
1999-04-11  Philipp Thomas  <kthomas@gwdg.de>
* config.sub: Set basic_machine to i586 when target_alias = k6-*.

26 years ago1999-04-11 Pavel Roskin <pavel_roskin@geocities.com>
Ben Elliston [Sun, 11 Apr 1999 00:39:32 +0000 (00:39 +0000)] 
1999-04-11  Pavel Roskin  <pavel_roskin@geocities.com>
* autoheader.m4: Do not complain about using AC_TRY_RUN without a
cross-compilation action--only autoconf should do this.

26 years agoBack out Pavel Roskin's autoheader patch. It's broken.
Ben Elliston [Sat, 10 Apr 1999 21:50:49 +0000 (21:50 +0000)] 
Back out Pavel Roskin's autoheader patch. It's broken.

26 years ago1999-04-11 Paul Eggert <eggert@twinsun.com>
Ben Elliston [Sat, 10 Apr 1999 21:31:12 +0000 (21:31 +0000)] 
1999-04-11  Paul Eggert  <eggert@twinsun.com>
* acgeneral.m4 (AC_CHECK_TYPE): Allow first argument to be a
shell variable.

26 years ago1999-02-10 Pavel Roskin <pavel_roskin@geocities.com>
Ben Elliston [Sat, 10 Apr 1999 21:10:58 +0000 (21:10 +0000)] 
1999-02-10  Pavel Roskin  <pavel_roskin@geocities.com>
* autoheader.m4: Do not complain about using AC_TRY_RUN without a
cross-compilation action--only autoconf should do this.

26 years ago1999-01-28 Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
Ben Elliston [Sat, 10 Apr 1999 20:23:05 +0000 (20:23 +0000)] 
1999-01-28  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
* acspecific.m4 (AC_PROG_INSTALL): set INSTALL_SCRIPT to
${INSTALL} so that automake doesn't propogate install time flags
for INSTALL_PROGRAM into INSTALL_SCRIPT.

26 years ago1999-04-11 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sat, 10 Apr 1999 19:54:57 +0000 (19:54 +0000)] 
1999-04-11  Ben Elliston  <bje@cygnus.com>
* acgeneral.m4 (AC_C_STRUCT_MEMBER): New macro.
* acspecific.m4 (AC_STRUCT_TIMEZONE): Rewrite in terms of
AC_C_STRUCT_MEMBER.
(AC_STRUCT_ST_BLOCKS): Likewise.
(AC_STRUCT_ST_BLKSIZE): Likewise.
(AC_STRUCT_ST_RDEV): Likewise.
* autoconf.texi (Structures): Update. Add menu for subnodes.
(Particular Structures): New node.
(Generic Structures): New node.
(AC_C_STRUCT_MEMBER): Document.

26 years ago1999-01-11 Akim Demaille <demaille@inf.enst.fr>
Ben Elliston [Sat, 10 Apr 1999 06:18:49 +0000 (06:18 +0000)] 
1999-01-11  Akim Demaille  <demaille@inf.enst.fr>
* autoreconf.sh (verbose): use either `:' or `echo'.
(aclocal_m4): Renamed from aclocal.
(aclocal_flags): New var.
Run aclocal using $aclocal_flags.
Redirect ls' stderr to /dev/null to avoid spurious messages.

26 years ago1999-04-10 Ben Elliston <bje@cygnus.com>
Ben Elliston [Fri, 9 Apr 1999 21:44:01 +0000 (21:44 +0000)] 
1999-04-10  Ben Elliston  <bje@cygnus.com>
* mkinstalldirs: Add `-m' flag to specify the mode of a newly
created directory. Add command line usage and `-h', `--help'
options. Contributed by Jeff Garzik <jgarzik@pobox.com>.

26 years ago1999-04-08 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 7 Apr 1999 23:59:09 +0000 (23:59 +0000)] 
1999-04-08  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_PROG_CC): Try using the `cl' C compiler under
Cygwin. Contributed by Scott Stanton <stanton@scriptics.com>.

26 years ago1999-04-08 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 7 Apr 1999 17:07:41 +0000 (17:07 +0000)] 
1999-04-08  Ben Elliston  <bje@cygnus.com>
* config.sub: Handle MPE/iX. Synchronise with the FSF.

26 years ago1999-04-07 Ben Elliston <bje@cygnus.com>
Ben Elliston [Tue, 6 Apr 1999 07:58:28 +0000 (07:58 +0000)] 
1999-04-07  Ben Elliston  <bje@cygnus.com>
* config.guess: Add more CLIX machines. From Thomas Dickey.

26 years agoYear typo!
Ben Elliston [Mon, 5 Apr 1999 07:10:52 +0000 (07:10 +0000)] 
Year typo!

26 years ago1994-04-06 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 5 Apr 1999 07:05:59 +0000 (07:05 +0000)] 
1994-04-06  Ben Elliston  <bje@cygnus.com>
* config.guess: Avoid the possibility of `ld' on GNU/Linux
systems being something other than the GNU linker (such as a
directory, in the case of GNU binutils).

26 years ago1999-04-05 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 5 Apr 1999 02:44:46 +0000 (02:44 +0000)] 
1999-04-05  Ben Elliston  <bje@cygnus.com>
* config.sub: Add modern Alpha processors.

26 years ago1999-04-02 Mike Stump <mrs@wrs.com>
Ben Elliston [Sun, 4 Apr 1999 23:09:48 +0000 (23:09 +0000)] 
1999-04-02  Mike Stump  <mrs@wrs.com>
* acgeneral.m4 (AC_ARG_PROGRAM): Remove spaces, as there is one
more pass through sh than you think.

26 years ago1999-04-05 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 4 Apr 1999 23:00:07 +0000 (23:00 +0000)] 
1999-04-05  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_CYGWIN): Do not remove conftest*; let
AC_TRY_COMPILE clean up after itself.
(AC_MINGW32): Likewise.
(AC_EMXOS2): Likewise.

26 years ago1999-04-05 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 4 Apr 1999 21:24:26 +0000 (21:24 +0000)] 
1999-04-05  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_PROG_CC_WORKS): Show $CPPFLAGS when
running the compiler.
(AC_PROG_CXX_WORKS): Likewise.

26 years agoTypo; end an open defmac.
Ben Elliston [Sun, 4 Apr 1999 20:42:58 +0000 (20:42 +0000)] 
Typo; end an open defmac.

26 years ago1999-04-05 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 4 Apr 1999 20:32:09 +0000 (20:32 +0000)] 
1999-04-05  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_EMXOS2): New macro. Contributed by Ryuji Abe
<raeva@t3.rim.or.jp>.
(AC_EXEEXT): Handle case for OS/2.
* autoconf.texi (AC_EMXOS2): Document.
(AC_EXEEXT): Mention OS/2.
(AC_MINGW32): Move.
(UPDATED): Update.

26 years ago1999-03-01 Gordon Matzigkeit <gord@trick.fig.org>
Ben Elliston [Sat, 3 Apr 1999 21:46:58 +0000 (21:46 +0000)] 
1999-03-01  Gordon Matzigkeit  <gord@trick.fig.org>
* acgeneral.m4 (AC_OUTPUT_MAKE_DEFS): Don't require that macro
symbols be valid C identifiers.

26 years ago1999-04-01 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 31 Mar 1999 08:42:11 +0000 (08:42 +0000)] 
1999-04-01  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_EXEEXT): Do not consider `.xcoff' as a
possible executable filename extension. Contributed by Robert
S. Maier <rsm@math.arizona.edu>.

26 years ago1999-04-01 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 31 Mar 1999 08:16:10 +0000 (08:16 +0000)] 
1999-04-01  Ben Elliston  <bje@cygnus.com>
* standards.texi: Update from FSF.
* acspecific.m4 (AC_PROG_INSTALL): Avoid using the installation
script belonging to HP `pwplus' when running the install
program. Contributed by Steven G. Johnson <stevenj@alum.mit.edu>
and Dave Adams <adams@hpesdwa.fc.hp.com>.

26 years ago1999-03-28 Tom Tromey <tromey@cygnus.com>
Tom Tromey [Sun, 28 Mar 1999 22:38:40 +0000 (22:38 +0000)] 
1999-03-28  Tom Tromey  <tromey@cygnus.com>
* autoconf.texi (AC_OUTPUT_COMMANDS): Add to macro index.

26 years ago1999-03-22 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 21 Mar 1999 14:01:52 +0000 (14:01 +0000)] 
1999-03-22  Ben Elliston  <bje@cygnus.com>
* config.guess: Rename BUILD_CC to CC_FOR_BUILD; there is a
precedent for the usual name of this environment variable.

26 years ago1999-03-22 Pavel Roskin <pavel_roskin@geocities.com>
Ben Elliston [Sun, 21 Mar 1999 13:54:14 +0000 (13:54 +0000)] 
1999-03-22  Pavel Roskin  <pavel_roskin@geocities.com>
* autoheader.sh: Report an error if AC_CONFIG_HEADER is not
present in the configure input file.

26 years ago1999-03-21 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 21 Mar 1999 02:42:14 +0000 (02:42 +0000)] 
1999-03-21  Ben Elliston  <bje@cygnus.com>
* config.guess: Correct typo for detecting ELF on FreeBSD.

26 years ago1998-03-14 Alexandre Oliva <oliva@dcc.unicamp.br>
Ben Elliston [Sat, 13 Mar 1999 16:57:08 +0000 (16:57 +0000)] 
1998-03-14  Alexandre Oliva  <oliva@dcc.unicamp.br>
* config.guess: Recognise HP 9000/8x0 machines.

26 years ago1999-03-11 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 10 Mar 1999 15:12:51 +0000 (15:12 +0000)] 
1999-03-11  Ben Elliston  <bje@cygnus.com>
* config.sub: Recognise hppa2.0w. Contributed by Erez Zadok
<ezk@cs.columbia.edu>.
1999-03-11  Pavel Roskin  <pavel_roskin@geocities.com>
* config.guess: Prefer $HOST_CC over $CC when deciding on a C
compiler to compile stub programs. Allow this to be overridden
with the value of $BUILD_CC in cross-compilation environments
where the native compiler must be used for running tests on the
host.

26 years ago1999-03-11 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 10 Mar 1999 04:43:57 +0000 (04:43 +0000)] 
1999-03-11  Ben Elliston  <bje@cygnus.com>
* config.guess: Recognise MiNT and TOS on Atari machines.
Contributed by Guido Flohr <gufl0000@stud.uni-sb.de>.
* config.sub: Add aliases for MiNT.

26 years ago1999-03-10 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 10 Mar 1999 03:13:30 +0000 (03:13 +0000)] 
1999-03-10  Ben Elliston  <bje@cygnus.com>
* config.guess: Recognise HP 9000/800. Merged from the master
FSF version of this file.

26 years ago1999-02-28 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 28 Feb 1999 14:41:03 +0000 (14:41 +0000)] 
1999-02-28  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_FUNC_VFORK): Allow test to behave correctly
when $ac_cv_func_vfork_works is the empty string. Contributed by
<red@nym.alias.net>.

26 years ago1999-02-28 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 28 Feb 1999 04:36:29 +0000 (04:36 +0000)] 
1999-02-28  Ben Elliston  <bje@cygnus.com>
* config.sub: Add `oskit' as a basic system type. From Godmar Back
<gback@cs.utah.edu>.

26 years ago1999-02-26 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 25 Feb 1999 18:38:19 +0000 (18:38 +0000)] 
1999-02-26  Ben Elliston  <bje@cygnus.com>
* install-sh: Avoid trailing whitespace.
* autoscan.pl (parse_args): Make compatible with Perl version 4.
1999-02-24  Ben Elliston  <bje@cygnus.com>
* config.guess: Detect LynxOS 3.x. Contributed by Giuseppe
Guerrini <guisguerrini@racine.ra.it>.
1999-02-10  Tom Tromey  <tromey@cygnus.com>
* acgeneral.m4 (AC_CACHE_LOAD): Avoid sourcing special files.
Works around bug in some versions of bash.

26 years ago1999-02-26 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 25 Feb 1999 18:31:19 +0000 (18:31 +0000)] 
1999-02-26  Ben Elliston  <bje@cygnus.com>
* install-sh: Avoid trailing whitespace.

26 years ago1999-02-24 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 25 Feb 1999 18:27:35 +0000 (18:27 +0000)] 
1999-02-24  Ben Elliston  <bje@cygnus.com>
* config.guess: Detect LynxOS 3.x. Contributed by Giuseppe
Guerrini <guisguerrini@racine.ra.it>.

26 years ago1999-02-10 Tom Tromey <tromey@cygnus.com>
Ben Elliston [Thu, 25 Feb 1999 18:24:02 +0000 (18:24 +0000)] 
1999-02-10  Tom Tromey  <tromey@cygnus.com>
* acgeneral.m4 (AC_CACHE_LOAD): Avoid sourcing special files.
Works around bug in some versions of bash.

26 years ago1999-02-26 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 25 Feb 1999 18:15:07 +0000 (18:15 +0000)] 
1999-02-26  Ben Elliston  <bje@cygnus.com>
* autoscan.pl (parse_args): Make compatible with Perl version 4.

26 years agoBring up to date--lots of old stuff has been taken care of.
Ben Elliston [Thu, 25 Feb 1999 18:10:41 +0000 (18:10 +0000)] 
Bring up to date--lots of old stuff has been taken care of.

26 years ago1999-02-23 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 22 Feb 1999 05:27:52 +0000 (05:27 +0000)] 
1999-02-23  Ben Elliston  <bje@cygnus.com>
* config.guess: Detect ReliantUNIX on MIPS. Contributed by Andrej
Borsenkow <borsenkow.msk@sni.de>.
Also remove random trailing whitespace.

26 years ago1999-02-02 Pavel Roskin <pavel_roskin@geocities.com>
Ben Elliston [Sun, 21 Feb 1999 21:05:26 +0000 (21:05 +0000)] 
1999-02-02  Pavel Roskin  <pavel_roskin@geocities.com>
* autoconf.texi: Corrected definitions for AC_CONFIG_AUX_DIR and
AC_PROG_F77. Duplicated descriptions for AC_SEARCH_LIBS and
AC_TRY_LINK_FUNC removed.

26 years ago1999-02-22 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 21 Feb 1999 18:07:13 +0000 (18:07 +0000)] 
1999-02-22  Ben Elliston  <bje@cygnus.com>
* autoconf.texi (System Services): Explain the semantics of the
AC_SYS_RESTARTABLE_SYSCALLS macro in greater detail. Suggested by
Franc,ois Pinard <pinard@iro.umontreal.ca>.

26 years ago1999-02-22 Stu Grossman <grossman@cygnus.com>
Ben Elliston [Sun, 21 Feb 1999 17:40:20 +0000 (17:40 +0000)] 
1999-02-22  Stu Grossman  <grossman@cygnus.com>
* acgeneral.m4 (AC_CANONICAL_SYSTEM): Explicitly require
AC_CANONICAL_HOST, AC_CANONICAL_TARGET and AC_CONICAL_BUILD.
(AC_CONFIG_AUX_DIR): Run auxillary shell scripts through $SHELL.
Do not rely on their magic number.
(AC_CANONICAL_THING): New macro. Cache results.
(AC_CANONICAL_HOST): Reimplement; use AC_CANONICAL_THING.
(AC_CANONICAL_TARGET): Likewise.
(AC_CANONICAL_BUILD): Likewise.
(AC_OUTPUT): Use $SHELL.
(AC_OUTPUT_SUBDIRS): Likewise.

26 years ago1999-02-19 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sun, 21 Feb 1999 16:49:04 +0000 (16:49 +0000)] 
1999-02-19  Ben Elliston  <bje@cygnus.com>
* config.guess: Make C code clean for C++ compilers. Contributed
by Markus Oberhumer <k3040e4@c210.edvz.uni-linz.ac.at>.

26 years ago1999-02-19 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 18 Feb 1999 22:28:20 +0000 (22:28 +0000)] 
1999-02-19  Ben Elliston <bje@cygnus.com>
* config.guess: Automatically recognise ELF on FreeBSD. From Niall
Smart and improved by Andrew Cagney.

26 years ago1999-02-19 Felix Lee <flee@cygnus.com>
Ben Elliston [Thu, 18 Feb 1999 16:15:41 +0000 (16:15 +0000)] 
1999-02-19  Felix Lee  <flee@cygnus.com>
* acgeneral.m4 (AC_CACHE_VAL): Don't need backticks. This is a
performance enhancement for about a 5% reduction in the runtime of
the generated configure script.

26 years ago1999-01-14 Scott Bambrough <scottb@corelcomputer.com>
Ben Elliston [Thu, 18 Feb 1999 15:45:36 +0000 (15:45 +0000)] 
1999-01-14  Scott Bambrough  <scottb@corelcomputer.com>
* config.guess: Recognise armv[234][lb] types (ie. `armv*').
1999-01-12  Scott Bambrough  <scottb@corelcomputer.com>
* config.sub: Recognize armv[234][lb] types (ie. `armv*'). Add
alias for the NetWinder; set company to `corel'.

26 years ago1999-02-18 Ben Elliston <bje@cygnus.com>
Ben Elliston [Thu, 18 Feb 1999 15:32:10 +0000 (15:32 +0000)] 
1999-02-18  Ben Elliston  <bje@cygnus.com>
* config.guess: Detect NEC EWS4800. Contributed by Koji Arai
<JCA02266@nifty.ne.jp>.

26 years ago1999-02-11 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 10 Feb 1999 19:09:43 +0000 (19:09 +0000)] 
1999-02-11  Ben Elliston  <bje@cygnus.com>
* standards.texi: Update from FSF.

26 years ago1999-01-29 Ben Elliston <bje@cygnus.com>
Ben Elliston [Fri, 29 Jan 1999 05:22:29 +0000 (05:22 +0000)] 
1999-01-29  Ben Elliston  <bje@cygnus.com>
* acspecific.m4 (AC_EXEEXT): Ignore C++ source files.

26 years ago1999-01-25 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 25 Jan 1999 04:39:08 +0000 (04:39 +0000)] 
1999-01-25  Ben Elliston  <bje@cygnus.com>
* install-sh: Use $mkdirprog, not `mkdir' directly. Contributed by
Jeff Garzik <jgarzik@pobox.com>.

26 years ago1999-01-25 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 25 Jan 1999 03:30:33 +0000 (03:30 +0000)] 
1999-01-25  Ben Elliston  <bje@cygnus.com>
* Makefile.in (clean mostlyclean distclean maintainer-clean):
Remove .m4f files.

26 years ago1999-01-25 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 25 Jan 1999 02:58:37 +0000 (02:58 +0000)] 
1999-01-25  Ben Elliston  <bje@cygnus.com>
* config.sub: Synchronise with master FSF version. Add detection
for HP MPE/iX.

26 years ago1999-01-25 Ben Elliston <bje@cygnus.com>
Ben Elliston [Mon, 25 Jan 1999 02:12:19 +0000 (02:12 +0000)] 
1999-01-25  Ben Elliston  <bje@cygnus.com>
* config.guess: Synchronise with master FSF version. Add detection
for HP MPE/iX.

26 years ago1999-01-23 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sat, 23 Jan 1999 05:44:58 +0000 (05:44 +0000)] 
1999-01-23  Ben Elliston  <bje@cygnus.com>
* config.guess: Catch more NILE system models. Contributed by
Akim Demaille <demaille@inf.enst.fr> and probably Graham Jenkins.

26 years ago1999-01-23 Ben Elliston <bje@cygnus.com>
Ben Elliston [Sat, 23 Jan 1999 05:39:52 +0000 (05:39 +0000)] 
1999-01-23  Ben Elliston  <bje@cygnus.com>
* autoheader.sh: Force $tmpout to close to avoid Windows file
sharing conflicts. From Mark Elbrecht <snowball3@usa.net>.

26 years ago1999-01-21 Ben Elliston <bje@cygnus.com>
Ben Elliston [Wed, 20 Jan 1999 05:18:52 +0000 (05:18 +0000)] 
1999-01-21  Ben Elliston  <bje@cygnus.com>
* autoconf.texi (Introduction): Update bug reporting address.
* config.guess: Likewise.