2
0
mirror of git://git.sv.gnu.org/autoconf synced 2025-03-25 14:50:24 +08:00

cosmetic tweaks

This commit is contained in:
David MacKenzie 1996-11-12 18:51:28 +00:00
parent 618b5d14d1
commit 49ce2554a6
9 changed files with 24 additions and 21 deletions

@ -1,5 +1,7 @@
Tue Nov 12 00:06:14 1996 David J MacKenzie <djm@catapult.va.pubnix.com> Tue Nov 12 00:06:14 1996 David J MacKenzie <djm@catapult.va.pubnix.com>
* Test release 2.10.2.
* acspecific.m4 (AC_PROG_CC, AC_PROG_CXX) [GCC]: Use -O2 instead * acspecific.m4 (AC_PROG_CC, AC_PROG_CXX) [GCC]: Use -O2 instead
of -O. Suggested by fnf@ninemoons.com (Fred Fish). of -O. Suggested by fnf@ninemoons.com (Fred Fish).

5
NEWS

@ -1,7 +1,7 @@
Issues to resolve before release: Issues to resolve before release:
1. sed command limitation. 1. sed command limitation.
2. autoreconf problem with finding nested acconfig.h. 2. autoreconf problem with finding subdirectory acconfig.h.
3. test the new features. 3. test the new features.
Major changes in release 2.11: Major changes in release 2.11:
@ -11,7 +11,8 @@ Major changes in release 2.11:
* AC_REPLACE_FUNCS defines HAVE_@var{function} if the system has the function. * AC_REPLACE_FUNCS defines HAVE_@var{function} if the system has the function.
* The argument to AC_CONFIG_HEADER can contain shell variables. * The argument to AC_CONFIG_HEADER can contain shell variables.
* New macros: AC_FUNC_FNMATCH, AC_FUNC_SETPGRP. * New macros: AC_FUNC_FNMATCH, AC_FUNC_SETPGRP.
* The source code for test programs that fail is saved in config.log. * The "checking..." messages and the source code for test programs that
fail are saved in config.log.
* config.sub and config.guess recognize more system types. * config.sub and config.guess recognize more system types.
* autoheader.sh adds multiple-inclusion protection for config.h. * autoheader.sh adds multiple-inclusion protection for config.h.
* Bug fixes. * Bug fixes.

@ -52,7 +52,7 @@ dnl
divert(-1)dnl Throw away output until AC_INIT is called. divert(-1)dnl Throw away output until AC_INIT is called.
changequote([, ]) changequote([, ])
define(AC_ACVERSION, 2.10.1) define(AC_ACVERSION, 2.10.2)
dnl Some old m4's don't support m4exit. But they provide dnl Some old m4's don't support m4exit. But they provide
dnl equivalent functionality by core dumping because of the dnl equivalent functionality by core dumping because of the
@ -1521,7 +1521,7 @@ if test -z "$ac_err"; then
$2]) $2])
else else
echo "$ac_err" >&AC_FD_CC echo "$ac_err" >&AC_FD_CC
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$3], , , [ rm -rf conftest* ifelse([$3], , , [ rm -rf conftest*
$3 $3
@ -1583,7 +1583,7 @@ if AC_TRY_EVAL(ac_compile); then
ifelse([$3], , :, [rm -rf conftest* ifelse([$3], , :, [rm -rf conftest*
$3]) $3])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$4], , , [ rm -rf conftest* ifelse([$4], , , [ rm -rf conftest*
$4 $4
@ -1622,7 +1622,7 @@ if AC_TRY_EVAL(ac_link) && test -s conftest; then
ifelse([$3], , :, [rm -rf conftest* ifelse([$3], , :, [rm -rf conftest*
$3]) $3])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$4], , , [ rm -rf conftest* ifelse([$4], , , [ rm -rf conftest*
$4 $4
@ -1666,7 +1666,7 @@ AC_TRY_EVAL(ac_link)
if test -s conftest && (./conftest; exit) 2>/dev/null; then if test -s conftest && (./conftest; exit) 2>/dev/null; then
ifelse([$2], , :, [$2]) ifelse([$2], , :, [$2])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$3], , , [ rm -fr conftest* ifelse([$3], , , [ rm -fr conftest*
$3 $3

@ -6,8 +6,8 @@
@c @setchapternewpage odd @c @setchapternewpage odd
@c %**end of header @c %**end of header
@set EDITION 2.10.1 @set EDITION 2.10.2
@set VERSION 2.10.1 @set VERSION 2.10.2
@set UPDATED November 1996 @set UPDATED November 1996
@iftex @iftex

2
config.guess vendored

@ -564,7 +564,7 @@ main ()
#endif #endif
int version; int version;
version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
printf ("%s-next-nextstep%s\n", __ARCHITECTURE__, version==2 ? "2" : "3"); printf ("%s-next-%s%d\n", __ARCHITECTURE__, version);
exit (0); exit (0);
#endif #endif

6
configure vendored

@ -1,7 +1,7 @@
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.10.1 # Generated automatically using autoconf version 2.10.2
# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
# #
# This configure script is free software; the Free Software Foundation # This configure script is free software; the Free Software Foundation
@ -330,7 +330,7 @@ EOF
verbose=yes ;; verbose=yes ;;
-version | --version | --versio | --versi | --vers) -version | --version | --versio | --versi | --vers)
echo "configure generated by autoconf version 2.10.1" echo "configure generated by autoconf version 2.10.2"
exit 0 ;; exit 0 ;;
-with-* | --with-*) -with-* | --with-*)
@ -816,7 +816,7 @@ do
echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
-version | --version | --versio | --versi | --vers | --ver | --ve | --v) -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
echo "$CONFIG_STATUS generated by autoconf version 2.10.1" echo "$CONFIG_STATUS generated by autoconf version 2.10.2"
exit 0 ;; exit 0 ;;
-help | --help | --hel | --he | --h) -help | --help | --hel | --he | --h)
echo "\$ac_cs_usage"; exit 0 ;; echo "\$ac_cs_usage"; exit 0 ;;

@ -6,8 +6,8 @@
@c @setchapternewpage odd @c @setchapternewpage odd
@c %**end of header @c %**end of header
@set EDITION 2.10.1 @set EDITION 2.10.2
@set VERSION 2.10.1 @set VERSION 2.10.2
@set UPDATED November 1996 @set UPDATED November 1996
@iftex @iftex

@ -52,7 +52,7 @@ dnl
divert(-1)dnl Throw away output until AC_INIT is called. divert(-1)dnl Throw away output until AC_INIT is called.
changequote([, ]) changequote([, ])
define(AC_ACVERSION, 2.10.1) define(AC_ACVERSION, 2.10.2)
dnl Some old m4's don't support m4exit. But they provide dnl Some old m4's don't support m4exit. But they provide
dnl equivalent functionality by core dumping because of the dnl equivalent functionality by core dumping because of the
@ -1521,7 +1521,7 @@ if test -z "$ac_err"; then
$2]) $2])
else else
echo "$ac_err" >&AC_FD_CC echo "$ac_err" >&AC_FD_CC
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$3], , , [ rm -rf conftest* ifelse([$3], , , [ rm -rf conftest*
$3 $3
@ -1583,7 +1583,7 @@ if AC_TRY_EVAL(ac_compile); then
ifelse([$3], , :, [rm -rf conftest* ifelse([$3], , :, [rm -rf conftest*
$3]) $3])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$4], , , [ rm -rf conftest* ifelse([$4], , , [ rm -rf conftest*
$4 $4
@ -1622,7 +1622,7 @@ if AC_TRY_EVAL(ac_link) && test -s conftest; then
ifelse([$3], , :, [rm -rf conftest* ifelse([$3], , :, [rm -rf conftest*
$3]) $3])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$4], , , [ rm -rf conftest* ifelse([$4], , , [ rm -rf conftest*
$4 $4
@ -1666,7 +1666,7 @@ AC_TRY_EVAL(ac_link)
if test -s conftest && (./conftest; exit) 2>/dev/null; then if test -s conftest && (./conftest; exit) 2>/dev/null; then
ifelse([$2], , :, [$2]) ifelse([$2], , :, [$2])
else else
echo "configure: input program was:" >&AC_FD_CC echo "configure: failed program was:" >&AC_FD_CC
cat conftest.$ac_ext >&AC_FD_CC cat conftest.$ac_ext >&AC_FD_CC
ifelse([$3], , , [ rm -fr conftest* ifelse([$3], , , [ rm -fr conftest*
$3 $3

@ -41,7 +41,7 @@ info:
dvi: dvi:
check: site.exp all check: site.exp all
@echo This only works if you have the DejaGNU runtest program installed... @echo NOTE: This only works if you have the DejaGNU runtest program installed...
$(RUNTEST) $(RUNTESTFLAGS) --tool autoconf AUTOCONF=${AUTOCONF} \ $(RUNTEST) $(RUNTESTFLAGS) --tool autoconf AUTOCONF=${AUTOCONF} \
AUTOCONFFLAGS="${AUTOCONFFLAGS}" --srcdir $(srcdir) AUTOCONFFLAGS="${AUTOCONFFLAGS}" --srcdir $(srcdir)