Commit d0a53cd3ea89c4720c8de645f5347a55653d66d4

Authored by Jay Berkenbilt
1 parent c03ced09

Fix typos in configure.ac

autofiles.sums
1   -0d6b963d8ba8188505994a9e954a101da416c13ac18311c032a58cb1083cc96f configure.ac
  1 +0e7c13071bce1494783a7da2be2b8805a9c03118e62126162ae551034882d420 configure.ac
2 2 d3f9ee6f6f0846888d9a10fd3dad2e4b1258be84205426cf04d7cef02d61dad7 aclocal.m4
3   -804845b8bc9de4a6c9e6977285e114bbf6e6c4b5592d1a707a535a45411b6bf2 libqpdf/qpdf/qpdf-config.h.in
  3 +39b7c25e5553cb231b408de5f22b86386e96fb109e2c44371f57c33d4d285725 libqpdf/qpdf/qpdf-config.h.in
4 4 5297971a0ef90bcd5563eb3f7127a032bb76d3ae2af7258bf13479caf8983a60 m4/ax_cxx_compile_stdcxx.m4
5 5 35bc5c645dc42d47f2daeea06f8f3e767c8a1aee6a35eb2b4854fd2ce66c3413 m4/ax_random_device.m4
6 6 37f8897d5f68d7d484e5457832a8f190ddb7507fa2a467cb7ee2be40a4364643 m4/libtool.m4
... ...
configure
... ... @@ -2787,7 +2787,7 @@ fi
2787 2787  
2788 2788 if test "$CHECK_AUTOFILES$AUTOCONF$AUTOHEADER$ACLOCAL$SHA256SUM" = "11111"; then
2789 2789 if ! sha256sum -c autofiles.sums; then
2790   - as_fn_error $? "autofiles are autodated; rerun autogen.sh" "$LINENO" 5
  2790 + as_fn_error $? "autofiles are outdated; rerun autogen.sh" "$LINENO" 5
2791 2791 fi
2792 2792 fi
2793 2793  
... ...
configure.ac
... ... @@ -29,7 +29,7 @@ AC_CHECK_PROG(ACLOCAL,aclocal,1,0)
29 29 AC_CHECK_PROG(SHA256SUM,sha256sum,1,0)
30 30 if test "$CHECK_AUTOFILES$AUTOCONF$AUTOHEADER$ACLOCAL$SHA256SUM" = "11111"; then
31 31 if ! sha256sum -c autofiles.sums; then
32   - AC_MSG_ERROR(autofiles are autodated; rerun autogen.sh)
  32 + AC_MSG_ERROR(autofiles are outdated; rerun autogen.sh)
33 33 fi
34 34 fi
35 35  
... ... @@ -116,7 +116,7 @@ if test "$qpdf_OS_SECURE_RANDOM" = "1"; then
116 116 AC_MSG_RESULT(yes)
117 117 else
118 118 AC_MSG_RESULT(no)
119   - AC_DEFINE([SKIP_OS_SECURE_RANDOM], [1], [Whether to suppres use of OS-provided secure random numbers])
  119 + AC_DEFINE([SKIP_OS_SECURE_RANDOM], [1], [Whether to suppress use of OS-provided secure random numbers])
120 120 fi
121 121  
122 122 AX_RANDOM_DEVICE
... ...
libqpdf/qpdf/qpdf-config.h.in
... ... @@ -75,7 +75,7 @@
75 75 /* The size of `size_t', as computed by sizeof. */
76 76 #undef SIZEOF_SIZE_T
77 77  
78   -/* Whether to suppres use of OS-provided secure random numbers */
  78 +/* Whether to suppress use of OS-provided secure random numbers */
79 79 #undef SKIP_OS_SECURE_RANDOM
80 80  
81 81 /* Define to 1 if you have the ANSI C header files. */
... ...