[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.0-20080706-97-ga504567)



The branch, master has been updated
       via  a504567fa312888bd3e467f01f68eadaf6c0440d (commit)
      from  7fcd7db7e5b191a0d5024b129ee2c1cda64a82d7 (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.


=========
 Summary
=========

 gschem/configure.ac.in |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


=================
 Commit Messages
=================

commit a504567fa312888bd3e467f01f68eadaf6c0440d
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Thu Aug 14 18:45:47 2008 +0100

    gschem: Add 1.6 compat. for scm_from_locale_symbol() [2051731]
    
    The new Scheme prompt in gschem uses scm_from_locale_symbol(), which
    isn't present in Guile 1.6.x. Add it to the compatibility layer.

:100644 100644 1515622... 7bc370f... M	gschem/configure.ac.in

=========
 Changes
=========

commit a504567fa312888bd3e467f01f68eadaf6c0440d
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Thu Aug 14 18:45:47 2008 +0100

    gschem: Add 1.6 compat. for scm_from_locale_symbol() [2051731]
    
    The new Scheme prompt in gschem uses scm_from_locale_symbol(), which
    isn't present in Guile 1.6.x. Add it to the compatibility layer.

diff --git a/gschem/configure.ac.in b/gschem/configure.ac.in
index 1515622..7bc370f 100644
--- a/gschem/configure.ac.in
+++ b/gschem/configure.ac.in
@@ -117,7 +117,8 @@ CFLAGS_temp_save="$CFLAGS"
 CFLAGS="$CFLAGS $GUILE_CFLAGS"
 AC_CHECK_DECLS([scm_is_string, scm_is_integer, scm_to_int,
 scm_from_int,  scm_is_true,    scm_is_false,
-scm_from_locale_string, scm_to_locale_string],,,
+scm_from_locale_string, scm_to_locale_string,
+scm_from_locale_symbol],,,
 [#include <libguile.h>])
 CFLAGS="$CFLAGS_temp_save"
 
@@ -145,6 +146,9 @@ AH_VERBATIM(SCM_FROM_LOCALE_STRING, [#if !HAVE_DECL_SCM_FROM_LOCALE_STRING
 AH_VERBATIM(SCM_TO_LOCALE_STRING, [#if !HAVE_DECL_SCM_TO_LOCALE_STRING
 #  define scm_to_locale_string(x)   strdup(SCM_STRING_CHARS(x))
 #endif])
+AH_VERBATIM(SCM_FROM_LOCALE_SYMBOL, [#if !HAVE_DECL_SCM_FROM_LOCALE_SYMBOL
+#  define scm_from_locale_symbol(x)   scm_string_to_symbol (scm_from_locale_string(x))
+#endif])
 
 #
 # Check for guile end




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs