diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2018-04-10 21:15:50 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-05-24 09:04:01 +0200 |
commit | e91406e9b799f5e8659a47d820645ff7f194e39f (patch) | |
tree | 08dde440306bab1cd7d8dae10871d35a764ede03 /m4 | |
parent | 781b8a057f1e4e83884c615a7014475cc85f018a (diff) | |
download | nx-libs-e91406e9b799f5e8659a47d820645ff7f194e39f.tar.gz nx-libs-e91406e9b799f5e8659a47d820645ff7f194e39f.tar.bz2 nx-libs-e91406e9b799f5e8659a47d820645ff7f194e39f.zip |
nxproxy: fix spelling errors as reported by codespell
Diffstat (limited to 'm4')
-rw-r--r-- | m4/nx-macros.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/nx-macros.m4 b/m4/nx-macros.m4 index 81d6ea147..6e58b7f02 100644 --- a/m4/nx-macros.m4 +++ b/m4/nx-macros.m4 @@ -51,7 +51,7 @@ AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"]) # NX_TESTSET_CFLAG(<variable>, <flag>, [<alternative flag>, ...]) # --------------- # Test if the compiler works when passed the given flag as a command line argument. -# If it succeeds, the flag is appeneded to the given variable. If not, it tries the +# If it succeeds, the flag is appended to the given variable. If not, it tries the # next flag in the list until there are no more options. # # Note that this does not guarantee that the compiler supports the flag as some @@ -212,7 +212,7 @@ NX_TESTSET_CFLAG([[BASE_]PREFIX[FLAGS]], [-Wlogical-op]) # NX_TESTSET_CFLAG([[BASE_]PREFIX[FLAGS]], [-Wcast-align]) # NX_TESTSET_CFLAG([[BASE_]PREFIX[FLAGS]], [-Wcast-qual]) -# Turn some warnings into errors, so we don't accidently get successful builds +# Turn some warnings into errors, so we don't accidentally get successful builds # when there are problems that should be fixed. if test "x$SELECTIVE_WERROR" = "xyes" ; then @@ -425,7 +425,7 @@ AM_CONDITIONAL([TARGET_ELF], [test x"$nxconf_cv_targetelf" = "xyes"]) ]) # NX_TARGET_USE_ELF AC_DEFUN([LIBJPEG_FALLBACK_CHECK],[ -AC_MSG_CHECKING([for libjpeg shared libary file and headers]) +AC_MSG_CHECKING([for libjpeg shared library file and headers]) AC_CHECK_LIB([jpeg], [jpeg_destroy_compress], [have_jpeg_lib=yes], [have_jpeg_lib=no]) AC_CHECK_HEADERS([jpeglib.h], @@ -443,7 +443,7 @@ fi ]) # LIBJPEG_FALLBACK_CHECK AC_DEFUN([ZLIB_FALLBACK_CHECK],[ -AC_MSG_CHECKING([for zlib shared libary file and headers]) +AC_MSG_CHECKING([for zlib shared library file and headers]) AC_CHECK_LIB([z], [inflateEnd], [have_zlib_lib=yes], [have_zlib_lib=no]) AC_CHECK_HEADERS([zlib.h], |