mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
fix up indexes, remove an old macro
This commit is contained in:
parent
e9ca63c0cd
commit
7179e90edc
@ -123,13 +123,14 @@ installdirs:
|
||||
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)
|
||||
|
||||
# References to install-info have been removed until it's released.
|
||||
install: all acgeneral.m4 acoldnames.m4 acspecific.m4 acconfig.h \
|
||||
install: all autoconf.m4 acgeneral.m4 acoldnames.m4 acspecific.m4 acconfig.h \
|
||||
installdirs install-info
|
||||
$(INSTALL_PROGRAM) autoconf $(bindir)/autoconf
|
||||
$(INSTALL_PROGRAM) autoheader $(bindir)/autoheader
|
||||
$(INSTALL_PROGRAM) autoreconf $(bindir)/autoreconf
|
||||
$(INSTALL_PROGRAM) autoupdate $(bindir)/autoupdate
|
||||
$(INSTALL_PROGRAM) ifnames $(bindir)/ifnames
|
||||
$(INSTALL_DATA) $(srcdir)/autoconf.m4 $(acdatadir)/autoconf.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acgeneral.m4 $(acdatadir)/acgeneral.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acoldnames.m4 $(acdatadir)/acoldnames.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acspecific.m4 $(acdatadir)/acspecific.m4
|
||||
@ -181,7 +182,8 @@ clean mostlyclean distclean realclean::
|
||||
clean mostlyclean distclean realclean::
|
||||
rm -f autoconf autoheader autoscan autoreconf autoupdate ifnames *.tmp
|
||||
rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
|
||||
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.ma *.mas
|
||||
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs
|
||||
rm -f *.ma *.mas *.cv *.cvs *.ev *.evs
|
||||
|
||||
distclean realclean::
|
||||
rm -f Makefile config.status config.cache config.log
|
||||
|
3
NEWS
3
NEWS
@ -43,7 +43,8 @@ Major changes in release 2.0:
|
||||
* AC_VERBOSE pays attention to --quiet/--silent, not --verbose.
|
||||
* AC_CHECK_FUNCS and AC_CHECK_HEADERS take optional shell commands to
|
||||
execute on success.
|
||||
* AC_REMOTE_TAPE removed; it was too specific to tar and cpio.
|
||||
* AC_REMOTE_TAPE and AC_RSH removed; too specific to tar and cpio, and
|
||||
better maintained with them.
|
||||
* AC_HAVE_POUNDBANG replaced with AC_SYS_INTERPRETER, which doesn't
|
||||
take arguments.
|
||||
|
||||
|
4
TODO
4
TODO
@ -14,7 +14,7 @@ Required for 2.0:
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
* Document chapter addressing misconceptions.
|
||||
* Doc: chapter addressing misconceptions and migration from v1.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
@ -39,7 +39,7 @@ functions (POSIX, NIS) that do everything necessary, instead.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
* Doc: Add indexes of concepts, env vars.
|
||||
* Doc: Add index of concepts.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
|
@ -35,7 +35,7 @@ Install it before installing Autoconf or set the
|
||||
M4 environment variable to its path name.
|
||||
)m4exit(2)])dnl
|
||||
dnl
|
||||
define(AC_ACVERSION, 1.101)dnl
|
||||
define(AC_ACVERSION, 1.102)dnl
|
||||
dnl This is defined by the --version option of the autoconf script.
|
||||
ifdef([AC_PRINT_VERSION], [Autoconf version AC_ACVERSION
|
||||
m4exit(0)])dnl
|
||||
|
@ -342,30 +342,6 @@ fi
|
||||
AC_SUBST(LN_S)dnl
|
||||
])dnl
|
||||
dnl
|
||||
AC_DEFUN(AC_PROG_RSH,
|
||||
[AC_MSG_CHECKING(for remote shell)
|
||||
AC_CACHE_VAL(ac_cv_path_RSH,
|
||||
[ac_cv_path_RSH=no
|
||||
for ac_file in \
|
||||
/usr/ucb/rsh /usr/bin/remsh /usr/bin/rsh /usr/bsd/rsh /usr/bin/nsh
|
||||
do
|
||||
if test -f $ac_file; then
|
||||
ac_cv_path_RSH=$ac_file
|
||||
break
|
||||
fi
|
||||
done])dnl
|
||||
RSH="$ac_cv_path_RSH"
|
||||
AC_MSG_RESULT($RSH)
|
||||
if test $RSH != true; then
|
||||
RTAPELIB=rtapelib.o
|
||||
else
|
||||
AC_CHECK_HEADER(netdb.h, [RTAPELIB=rtapelib.o AC_DEFINE(HAVE_NETDB_H)],
|
||||
[RTAPELIB= AC_DEFINE(NO_REMOTE)])
|
||||
fi
|
||||
AC_SUBST(RSH)dnl
|
||||
AC_SUBST(RTAPELIB)dnl
|
||||
])dnl
|
||||
dnl
|
||||
dnl
|
||||
dnl ### Checks for header files
|
||||
dnl
|
||||
|
659
autoconf.texi
659
autoconf.texi
File diff suppressed because it is too large
Load Diff
@ -5,7 +5,7 @@ dnl We use a path for GNU m4 so even if users have another m4 first in
|
||||
dnl their path, the installer can configure with a path that has GNU m4
|
||||
dnl first and get that path embedded in the installed autoconf and
|
||||
dnl autoheader scripts.
|
||||
AC_PATH_PROGS(M4, gnum4 gm4 m4, m4)
|
||||
AC_PATH_PROGS(M4, gm4 gnum4 m4, m4)
|
||||
|
||||
dnl We use a path for perl so the #! line in autoscan will work.
|
||||
AC_PATH_PROG(PERL, perl, no-perl)
|
||||
|
@ -123,13 +123,14 @@ installdirs:
|
||||
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)
|
||||
|
||||
# References to install-info have been removed until it's released.
|
||||
install: all acgeneral.m4 acoldnames.m4 acspecific.m4 acconfig.h \
|
||||
install: all autoconf.m4 acgeneral.m4 acoldnames.m4 acspecific.m4 acconfig.h \
|
||||
installdirs install-info
|
||||
$(INSTALL_PROGRAM) autoconf $(bindir)/autoconf
|
||||
$(INSTALL_PROGRAM) autoheader $(bindir)/autoheader
|
||||
$(INSTALL_PROGRAM) autoreconf $(bindir)/autoreconf
|
||||
$(INSTALL_PROGRAM) autoupdate $(bindir)/autoupdate
|
||||
$(INSTALL_PROGRAM) ifnames $(bindir)/ifnames
|
||||
$(INSTALL_DATA) $(srcdir)/autoconf.m4 $(acdatadir)/autoconf.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acgeneral.m4 $(acdatadir)/acgeneral.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acoldnames.m4 $(acdatadir)/acoldnames.m4
|
||||
$(INSTALL_DATA) $(srcdir)/acspecific.m4 $(acdatadir)/acspecific.m4
|
||||
@ -181,7 +182,8 @@ clean mostlyclean distclean realclean::
|
||||
clean mostlyclean distclean realclean::
|
||||
rm -f autoconf autoheader autoscan autoreconf autoupdate ifnames *.tmp
|
||||
rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
|
||||
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.ma *.mas
|
||||
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs
|
||||
rm -f *.ma *.mas *.cv *.cvs *.ev *.evs
|
||||
|
||||
distclean realclean::
|
||||
rm -f Makefile config.status config.cache config.log
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -35,7 +35,7 @@ Install it before installing Autoconf or set the
|
||||
M4 environment variable to its path name.
|
||||
)m4exit(2)])dnl
|
||||
dnl
|
||||
define(AC_ACVERSION, 1.101)dnl
|
||||
define(AC_ACVERSION, 1.102)dnl
|
||||
dnl This is defined by the --version option of the autoconf script.
|
||||
ifdef([AC_PRINT_VERSION], [Autoconf version AC_ACVERSION
|
||||
m4exit(0)])dnl
|
||||
|
@ -342,30 +342,6 @@ fi
|
||||
AC_SUBST(LN_S)dnl
|
||||
])dnl
|
||||
dnl
|
||||
AC_DEFUN(AC_PROG_RSH,
|
||||
[AC_MSG_CHECKING(for remote shell)
|
||||
AC_CACHE_VAL(ac_cv_path_RSH,
|
||||
[ac_cv_path_RSH=no
|
||||
for ac_file in \
|
||||
/usr/ucb/rsh /usr/bin/remsh /usr/bin/rsh /usr/bsd/rsh /usr/bin/nsh
|
||||
do
|
||||
if test -f $ac_file; then
|
||||
ac_cv_path_RSH=$ac_file
|
||||
break
|
||||
fi
|
||||
done])dnl
|
||||
RSH="$ac_cv_path_RSH"
|
||||
AC_MSG_RESULT($RSH)
|
||||
if test $RSH != true; then
|
||||
RTAPELIB=rtapelib.o
|
||||
else
|
||||
AC_CHECK_HEADER(netdb.h, [RTAPELIB=rtapelib.o AC_DEFINE(HAVE_NETDB_H)],
|
||||
[RTAPELIB= AC_DEFINE(NO_REMOTE)])
|
||||
fi
|
||||
AC_SUBST(RSH)dnl
|
||||
AC_SUBST(RTAPELIB)dnl
|
||||
])dnl
|
||||
dnl
|
||||
dnl
|
||||
dnl ### Checks for header files
|
||||
dnl
|
||||
|
Loading…
Reference in New Issue
Block a user