Fix spelling errors
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2014-02-28 Dominik Vogt <vogt@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* configure.ac (AC_ARG_ENABLE struct): Fix typo in help
|
||||||
|
message.
|
||||||
|
(AC_ARG_ENABLE raw_api): Ditto.
|
||||||
|
* configure, fficonfig.h.in: Rebuilt.
|
||||||
|
|
||||||
2014-02-28 Will Newton <will.newton@linaro.org>
|
2014-02-28 Will Newton <will.newton@linaro.org>
|
||||||
|
|
||||||
* src/arm/sysv.S: Initialize IP register with FP.
|
* src/arm/sysv.S: Initialize IP register with FP.
|
||||||
|
|||||||
@@ -548,14 +548,14 @@ AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
|
|||||||
AC_ARG_ENABLE(structs,
|
AC_ARG_ENABLE(structs,
|
||||||
[ --disable-structs omit code for struct support],
|
[ --disable-structs omit code for struct support],
|
||||||
if test "$enable_structs" = "no"; then
|
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)
|
fi)
|
||||||
AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
|
AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes")
|
||||||
|
|
||||||
AC_ARG_ENABLE(raw-api,
|
AC_ARG_ENABLE(raw-api,
|
||||||
[ --disable-raw-api make the raw api unavailable],
|
[ --disable-raw-api make the raw api unavailable],
|
||||||
if test "$enable_raw_api" = "no"; then
|
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)
|
fi)
|
||||||
|
|
||||||
AC_ARG_ENABLE(purify-safety,
|
AC_ARG_ENABLE(purify-safety,
|
||||||
|
|||||||
@@ -26,10 +26,10 @@
|
|||||||
/* Cannot use malloc on this target, so, we revert to alternative means */
|
/* Cannot use malloc on this target, so, we revert to alternative means */
|
||||||
#undef FFI_MMAP_EXEC_WRIT
|
#undef FFI_MMAP_EXEC_WRIT
|
||||||
|
|
||||||
/* Define this is you do not want support for the raw API. */
|
/* Define this if you do not want support for the raw API. */
|
||||||
#undef FFI_NO_RAW_API
|
#undef FFI_NO_RAW_API
|
||||||
|
|
||||||
/* Define this is you do not want support for aggregate types. */
|
/* Define this if you do not want support for aggregate types. */
|
||||||
#undef FFI_NO_STRUCTS
|
#undef FFI_NO_STRUCTS
|
||||||
|
|
||||||
/* Define to 1 if you have `alloca', as a function or macro. */
|
/* Define to 1 if you have `alloca', as a function or macro. */
|
||||||
|
|||||||
Reference in New Issue
Block a user