This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=1ea8aa7d8e980ce0dc17938058d4665b0c1193b9 The branch, master has been updated via 1ea8aa7d8e980ce0dc17938058d4665b0c1193b9 (commit) from df0f529585e55007e2a2226f624b55e986722d37 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1ea8aa7d8e980ce0dc17938058d4665b0c1193b9 Author: Andy Wingo <wi...@pobox.com> Date: Fri Mar 19 17:48:08 2010 +0100 Update manual examples of how to link with Guile * doc/ref/intro.texi (Linking Guile into Programs): * doc/ref/libguile-linking.texi (A Sample Guile Main Program): Update examples of how to link with guile. ----------------------------------------------------------------------- Summary of changes: doc/ref/intro.texi | 5 +++-- doc/ref/libguile-linking.texi | 6 ++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/ref/intro.texi b/doc/ref/intro.texi index 55cb4a3..2c5129a 100644 --- a/doc/ref/intro.texi +++ b/doc/ref/intro.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -...@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2006 +...@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2006, 2010 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -220,7 +220,8 @@ When Guile is correctly installed on your system, the above program can be compiled and linked like this: @example -$ gcc -o simple-guile simple-guile.c -lguile +$ gcc -o simple-guile simple-guile.c \ + `pkg-config --cflags --libs guile-2.0` @end example When it is run, it behaves just like the @code{guile} program except diff --git a/doc/ref/libguile-linking.texi b/doc/ref/libguile-linking.texi index 78a93e6..b6a8855 100644 --- a/doc/ref/libguile-linking.texi +++ b/doc/ref/libguile-linking.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -...@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005 +...@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2010 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -174,9 +174,7 @@ checking for Guile... yes creating ./config.status creating Makefile $ make -gcc -c -I/usr/local/include simple-guile.c -gcc simple-guile.o -L/usr/local/lib -lguile -lqthreads -lpthread -lm - -o simple-guile +[...] $ ./simple-guile guile> (+ 1 2 3) 6 hooks/post-receive -- GNU Guile