autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Spelling patch for Autoconf


From: Joseph S. Myers
Subject: Spelling patch for Autoconf
Date: Sun, 25 Nov 2001 12:56:56 +0000 (GMT)

This patch fixes various spelling errors in Autoconf, including some that
propagate into generated configure scripts.

2001-11-25  Joseph S. Myers  <address@hidden>

        * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
        lib/autoconf/functions.m4, lib/autoconf/headers.m4,
        tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
        spelling errors.

Index: doc/autoconf.texi
===================================================================
RCS file: /cvs/autoconf/doc/autoconf.texi,v
retrieving revision 1.565
diff -u -r1.565 autoconf.texi
--- doc/autoconf.texi   2001/11/22 18:07:56     1.565
+++ doc/autoconf.texi   2001/11/25 12:48:10
@@ -127,7 +127,7 @@
 @c   @defcodeindex fu
 @c
 @c
address@hidden   @c Put the programs and funcions into their own index.
address@hidden   @c Put the programs and functions into their own index.
 @c   @syncodeindex fu pr
 
 
@@ -11518,7 +11518,7 @@
 Some of this information, common for all validation suites, is provided
 through the file @file{atconfig}, automatically created by
 @code{AC_CONFIG_TESTDIR}.  For configuration informations which your
-testing environment specifically needs, you might prepare an optionnal
+testing environment specifically needs, you might prepare an optional
 file named @file{atlocal.in}, instantiated by @code{AC_CONFIG_FILES}.
 The configuration process produces @file{atconfig} and @file{atlocal}
 out of these two input files, and these two produced files are
Index: TODO
===================================================================
RCS file: /cvs/autoconf/TODO,v
retrieving revision 1.116
diff -u -r1.116 TODO
--- TODO        2001/11/03 12:01:35     1.116
+++ TODO        2001/11/25 12:48:11
@@ -437,7 +437,7 @@
 ,,-lhesiod,HESIOD,,)
 AC_PKG_WITH(glue,,,-lglue,GLUE,,)
 AC_PKG_WITH(bind,,/usr/local/bind, [lib/resolv.a lib/lib44bsd.a], ,include)
-After the apropriate checks, the existance of the paths, and libs and such
+After the appropriate checks, the existence of the paths, and libs and such
 LIBS=$LIBS $PKG-LIBS
 DEFS=$DEFS $PKG-DEFS
 CPPFLAGS=$PKG-CPPFLAGS $CPPFLAGS
Index: lib/autoconf/fortran.m4
===================================================================
RCS file: /cvs/autoconf/lib/autoconf/fortran.m4,v
retrieving revision 1.152
diff -u -r1.152 fortran.m4
--- lib/autoconf/fortran.m4     2001/11/12 16:08:52     1.152
+++ lib/autoconf/fortran.m4     2001/11/25 12:48:11
@@ -347,7 +347,7 @@
 
 
 # ---------------------------------------- #
-# 4d. Fortan 77 compiler characteristics.  #
+# 4d. Fortran 77 compiler characteristics. #
 # ---------------------------------------- #
 
 
@@ -654,7 +654,7 @@
 # by commas:
 #
 # lower case / upper case:
-#    case translation of the Fortan 77 symbols
+#    case translation of the Fortran 77 symbols
 # underscore / no underscore:
 #    whether the compiler appends "_" to symbol names
 # extra underscore / no extra underscore:
Index: lib/autoconf/functions.m4
===================================================================
RCS file: /cvs/autoconf/lib/autoconf/functions.m4,v
retrieving revision 1.52
diff -u -r1.52 functions.m4
--- lib/autoconf/functions.m4   2001/11/12 16:11:43     1.52
+++ lib/autoconf/functions.m4   2001/11/25 12:48:11
@@ -903,7 +903,7 @@
    VM page cache was not coherent with the file system buffer cache
    like early versions of FreeBSD and possibly contemporary NetBSD.)
    For shared mappings, we should conversely verify that changes get
-   propogated back to all the places they're supposed to be.
+   propagated back to all the places they're supposed to be.
 
    Grep wants private fixed already mapped.
    The main things grep needs to know about mmap are:
Index: lib/autoconf/headers.m4
===================================================================
RCS file: /cvs/autoconf/lib/autoconf/headers.m4,v
retrieving revision 1.17
diff -u -r1.17 headers.m4
--- lib/autoconf/headers.m4     2001/11/12 16:08:53     1.17
+++ lib/autoconf/headers.m4     2001/11/25 12:48:11
@@ -562,7 +562,7 @@
 AU_DEFUN([AC_USG],
 [AC_DIAGNOSE([obsolete],
 [$0: Remove `AC_MSG_CHECKING', `AC_TRY_LINK' and this `AC_WARNING'
-when you ajust your code to use HAVE_STRING_H.])dnl
+when you adjust your code to use HAVE_STRING_H.])dnl
 AC_MSG_CHECKING([for BSD string and memory functions])
 AC_TRY_LINK(address@hidden:@include <strings.h>], [rindex(0, 0); bzero(0, 0);],
   [AC_MSG_RESULT(yes)],
@@ -588,7 +588,7 @@
 # HAVE_MEMORY_H.
 AU_DEFUN([AC_MEMORY_H],
 [AC_DIAGNOSE([obsolete], [$0: Remove this warning and
-`AC_CHECK_HEADER(memory.h, AC_DEFINE(...))' when you ajust your code to
+`AC_CHECK_HEADER(memory.h, AC_DEFINE(...))' when you adjust your code to
 use and HAVE_STRING_H and HAVE_MEMORY_H, not NEED_MEMORY_H.])dnl
 AC_CHECK_HEADER(memory.h,
                 [AC_DEFINE([NEED_MEMORY_H], 1,
@@ -607,7 +607,7 @@
 AC_FUNC_CLOSEDIR_VOID
 AC_DIAGNOSE([obsolete],
 [$0: Remove this warning and the four `AC_DEFINE' when you
-ajust your code to use `AC_HEADER_DIRENT'.])
+adjust your code to use `AC_HEADER_DIRENT'.])
 test ac_cv_header_dirent_dirent_h &&
   AC_DEFINE([DIRENT], 1, [Same as `HAVE_DIRENT_H', don't depend on me.])
 test ac_cv_header_dirent_sys_ndir_h &&
Index: tests/atgeneral.m4
===================================================================
RCS file: /cvs/autoconf/tests/atgeneral.m4,v
retrieving revision 1.69
diff -u -r1.69 atgeneral.m4
--- tests/atgeneral.m4  2001/09/20 15:08:21     1.69
+++ tests/atgeneral.m4  2001/11/25 12:48:11
@@ -412,7 +412,7 @@
 # So the question is:
 #
 #       Can you write a regexp that matches those four characters,
-#       and respects the M4 quotation contraints?
+#       and respects the M4 quotation constraints?
 #
 # The answer is: (rot13) tvira va gur ertrkc orybj, lbh vqvbg!
 m4_define([AT_CLEANUP_FILE_IFELSE],
Index: tests/tools.at
===================================================================
RCS file: /cvs/autoconf/tests/tools.at,v
retrieving revision 1.59
diff -u -r1.59 tools.at
--- tests/tools.at      2001/11/13 15:18:27     1.59
+++ tests/tools.at      2001/11/25 12:48:11
@@ -353,7 +353,7 @@
 ## autoheader.  ##
 ## ------------ ##
 
-# autoheader is intensively used in its modern form throught this
+# autoheader is intensively used in its modern form throughout this
 # test suite.  But we also have to check that acconfig.h still works.
 # autoheader uses autoconf --trace, so traces first.
 
Index: tests/atspecific.m4
===================================================================
RCS file: /cvs/autoconf/tests/atspecific.m4,v
retrieving revision 1.65
diff -u -r1.65 atspecific.m4
--- tests/atspecific.m4 2001/11/13 14:43:50     1.65
+++ tests/atspecific.m4 2001/11/25 12:48:11
@@ -86,7 +86,7 @@
 # AT_CONFIGURE_AC(BODY)
 # ---------------------
 # Create a full configure.ac running BODY, with a config header set up,
-# AC_OUTPUT, and environement checking hooks.
+# AC_OUTPUT, and environment checking hooks.
 #
 # Here are the exceptions to AC_STATE_SAVE:
 #

-- 
Joseph S. Myers
address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]