Module: docs Branch: master Commit: 411ba3448ba50eab1c85dc2c6e10b8800698752d URL: http://source.winehq.org/git/docs.git/?a=commit;h=411ba3448ba50eab1c85dc2c6e...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Thu Aug 15 17:22:37 2013 +0200
winedev: configure.ac is used instead of configure.in.
---
en/winedev-coding.sgml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/en/winedev-coding.sgml b/en/winedev-coding.sgml index 69f2479..b5eb660 100644 --- a/en/winedev-coding.sgml +++ b/en/winedev-coding.sgml @@ -309,7 +309,7 @@ code
<para> This first step is to make <command>autoconf</command> check - for this header. In <filename>configure.in</filename> you + for this header. In <filename>configure.ac</filename> you add a segment like this in the section that checks for header files (search for "header files"): </para> @@ -363,7 +363,7 @@ AC_CHECK_HEADER(foo.h, AC_DEFINE(HAVE_FOO_H)) function. To solve this problem you would add <function>memmove</function> to the list of functions that <command>autoconf</command> checks for. In - <filename>configure.in</filename> you search for + <filename>configure.ac</filename> you search for <function>AC_CHECK_FUNCS</function> and add <function>memmove</function> (you will notice that someone already did this for this particular function).