guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-157-g1bd9a


From: Chris K. Jester-Young
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-157-g1bd9a69
Date: Sun, 15 Jan 2012 19:02:32 +0000

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=1bd9a697b186c9a2c84f7c1028c9292f779ec79a

The branch, stable-2.0 has been updated
       via  1bd9a697b186c9a2c84f7c1028c9292f779ec79a (commit)
      from  222056dcf22ae7f1ab52df81a40d286c1eba9b3a (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 1bd9a697b186c9a2c84f7c1028c9292f779ec79a
Author: Chris K. Jester-Young <address@hidden>
Date:   Sun Jan 15 13:59:49 2012 -0500

    Add #ifdefs for langinfo items that don't exist on OpenBSD.
    
    * libguile/i18n.c (define_langinfo_items): Add #ifdefs for ERA_* and
      ALT_DIGITS, as those constants don't exist on OpenBSD.

-----------------------------------------------------------------------

Summary of changes:
 libguile/i18n.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/libguile/i18n.c b/libguile/i18n.c
index f833e5d..4bb9e21 100644
--- a/libguile/i18n.c
+++ b/libguile/i18n.c
@@ -1744,13 +1744,23 @@ define_langinfo_items (void)
   DEFINE_NLITEM_CONSTANT (T_FMT);   /* Time format for strftime.  */
   DEFINE_NLITEM_CONSTANT (T_FMT_AMPM);/* 12-hour time format for strftime.  */
 
+#ifdef ERA
   DEFINE_NLITEM_CONSTANT (ERA);                /* Alternate era.  */
+#endif
+#ifdef ERA_D_FMT
   DEFINE_NLITEM_CONSTANT (ERA_D_FMT);  /* Date in alternate era format.  */
+#endif
+#ifdef ERA_D_T_FMT
   DEFINE_NLITEM_CONSTANT (ERA_D_T_FMT);        /* Date and time in alternate 
era
                                           format.  */
+#endif
+#ifdef ERA_T_FMT
   DEFINE_NLITEM_CONSTANT (ERA_T_FMT);  /* Time in alternate era format.  */
+#endif
 
+#ifdef ALT_DIGITS
   DEFINE_NLITEM_CONSTANT (ALT_DIGITS); /* Alternate symbols for digits.  */
+#endif
   DEFINE_NLITEM_CONSTANT (RADIXCHAR);
   DEFINE_NLITEM_CONSTANT (THOUSEP);
 


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]