From: Ralf Wildenhues Date: Sun, 19 Apr 2009 06:06:51 +0000 (+0200) Subject: More minor fixups to vala support. X-Git-Tag: v1.11~32^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00db19509be4d4e7b64d912e09b740e2e15e02f8;p=thirdparty%2Fautomake.git More minor fixups to vala support. * automake.in (lang_vala_finish_target): Fix typo in comment. * doc/automake.texi (Vala Support): Fix typo. Declare vala support as "initial". * NEWS: Likewise, declare vala support as "initial". Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index e0f25c93a..3fde2b666 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-04-19 Ralf Wildenhues + + More minor fixups to vala support. + * automake.in (lang_vala_finish_target): Fix typo in comment. + * doc/automake.texi (Vala Support): Fix typo. Declare vala + support as "initial". + * NEWS: Likewise, declare vala support as "initial". + 2009-04-05 Jürg Billeter Improve Vala support. diff --git a/NEWS b/NEWS index fd45cc0b6..b97dafe93 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,8 @@ New in 1.10c: * Languages changes: - - Vala 0.7.0 and later is supported now. + - There is initial support for the Vala programming language, when using + Vala 0.7.0 or later. * Miscellaneous Changes: diff --git a/automake.in b/automake.in index a7560897d..67e51a4e6 100755 --- a/automake.in +++ b/automake.in @@ -5957,7 +5957,7 @@ sub lang_vala_finish_target ($$) $clean_files{"${derived}_vala.stamp"} = MAINTAINER_CLEAN; } -# Add output ruless to invoke valac and create stamp file as a witness +# Add output rules to invoke valac and create stamp file as a witness # to handle multiple outputs. This function is called after all source # file processing is done. sub lang_vala_finish diff --git a/doc/automake.texi b/doc/automake.texi index fc3c434c4..89f184800 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -6603,14 +6603,15 @@ the @code{_LDFLAGS} variable for the program. @cindex Vala Support @cindex Support for Vala -Automake provides support for Vala (@uref{http://www.vala-project.org/}). +Automake provides initial support for Vala +(@uref{http://www.vala-project.org/}). This requires valac version 0.7.0 or later. @example foo_SOURCES = foo.vala bar.vala zardoc.c @end example -Any @file{.vala} file listed in a @code{_SOURCE} variable will be +Any @file{.vala} file listed in a @code{_SOURCES} variable will be compiled into C code by the Vala compiler. The generated @file{.c} files are distributed. The end user does not need to have a Vala compiler installed.