Fix spelling errors
authorAnthony Green <green@moxielogic.com>
Fri, 28 Feb 2014 05:23:04 +0000 (00:23 -0500)
committerAnthony Green <green@moxielogic.com>
Fri, 28 Feb 2014 05:23:04 +0000 (00:23 -0500)
ChangeLog
configure.ac

index d2a38a0f9e9ea74242e975cbb363adf6cfe4b9be..808289f6f2925be7b59489fe1a890f39d213553b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-02-28  Dominik Vogt  <vogt@linux.vnet.ibm.com>
+
+       * configure.ac: Fix typo in help strings for
+       --disable-(struct|raw_api).
+       * configure: Rebuilt.
+
 2014-02-28  Will Newton  <will.newton@linaro.org>
 
        * src/arm/sysv.S: Initialize IP register with FP.
index 0d768c654619f6425646e379a0f925d4aa7fdbcc..4dd919d80ba63c11612de882b87f7d53d294d73b 100644 (file)
@@ -548,14 +548,14 @@ AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
 AC_ARG_ENABLE(structs,
 [  --disable-structs       omit code for struct support],
   if test "$enable_structs" = "no"; then
-    AC_DEFINE(FFI_NO_STRUCTS, 1, [Define this is you do not want support for aggregate types.])
+    AC_DEFINE(FFI_NO_STRUCTS, 1, [Define this if you do not want support for aggregate types.])
   fi)
 AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
 
 AC_ARG_ENABLE(raw-api,
 [  --disable-raw-api       make the raw api unavailable],
   if test "$enable_raw_api" = "no"; then
-    AC_DEFINE(FFI_NO_RAW_API, 1, [Define this is you do not want support for the raw API.])
+    AC_DEFINE(FFI_NO_RAW_API, 1, [Define this if you do not want support for the raw API.])
   fi)
 
 AC_ARG_ENABLE(purify-safety,