unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* [bug #24130] `strftime' broken on AIX and Solaris
@ 2008-08-25  8:37 Ludovic Courtès
  2008-08-25  8:38 ` Ludovic Courtès
  0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2008-08-25  8:37 UTC (permalink / raw)
  To: Ludovic Courtès, bug-guile


URL:
  <http://savannah.gnu.org/bugs/?24130>

                 Summary: `strftime' broken on AIX and Solaris
                 Project: Guile
            Submitted by: civodul
            Submitted on: Mon 25 Aug 2008 08:37:10 AM GMT
                Category: None
                Severity: 3 - Normal
              Item Group: None
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any

    _______________________________________________________

Details:

Hi,

`strftime' was reported to be broken on AIX:

  http://thread.gmane.org/gmane.lisp.guile.bugs/3796

It is also said to be broken on Solaris.

Gnulib has an `strftime' module, which we should use in HEAD and borrow in
1.8.

Thanks,
Ludovic.




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX and Solaris
  2008-08-25  8:37 [bug #24130] `strftime' broken on AIX and Solaris Ludovic Courtès
@ 2008-08-25  8:38 ` Ludovic Courtès
  2009-05-11 20:37   ` Ludovic Courtès
  0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2008-08-25  8:38 UTC (permalink / raw)
  To: Ludovic Courtès, bug-guile


Follow-up Comment #1, bug #24130 (project guile):

On Solaris:

  http://thread.gmane.org/gmane.lisp.guile.bugs/3857

Ludo'.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX and Solaris
  2008-08-25  8:38 ` Ludovic Courtès
@ 2009-05-11 20:37   ` Ludovic Courtès
  2009-05-11 22:16     ` [bug #24130] `strftime' broken on AIX, Tru64, " Ludovic Courtès
  0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2009-05-11 20:37 UTC (permalink / raw)
  To: Ludovic Courtès, bug-guile


Follow-up Comment #2, bug #24130 (project guile):

On Tru64 5.1b, we get:

#v+
FAIL: strftime: C99 %z format: GMT
FAIL: strftime: C99 %z format: EST+5
#v-

More precisely:

#v+
(putenv "TZ=GMT+0")
(tzset)
(let ((tm (localtime 86400)))
  (strftime "%z" tm))
=> "GMT"
#v-

and:

#v+
(putenv "TZ=EST+5")
(tzset)
(let ((tm (localtime 86400)))
  (strftime "%z" tm))
=> "EST"
#v-

The feature test in `time.test' goes like this:

#v+
(strftime "%z" (gmtime 0))
=> "EST"
#v-

Ludo'.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX, Tru64, and Solaris
  2009-05-11 20:37   ` Ludovic Courtès
@ 2009-05-11 22:16     ` Ludovic Courtès
  2010-12-17  1:12       ` Susan
  0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2009-05-11 22:16 UTC (permalink / raw)
  To: Ludovic Courtès, bug-guile


Update of bug #24130 (project guile):

                 Summary: `strftime' broken on AIX and Solaris => `strftime'
broken on AIX, Tru64, and Solaris

    _______________________________________________________

Follow-up Comment #3:

Fixed in `master' thanks to Gnulib.

In 1.8, not a fix but an improvement:

 
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=1011599792302b356195663a3efd68a234c11f69

We could use `AC_LIBOBJ' et al. to provide a real fix, though...

Thanks,
Ludo'.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX, Tru64, and Solaris
  2009-05-11 22:16     ` [bug #24130] `strftime' broken on AIX, Tru64, " Ludovic Courtès
@ 2010-12-17  1:12       ` Susan
  2011-04-19 22:30         ` anonymous
  0 siblings, 1 reply; 7+ messages in thread
From: Susan @ 2010-12-17  1:12 UTC (permalink / raw)
  To: Ludovic Courtès, Susan, bug-guile


Follow-up Comment #4, bug #24130 (project guile):

It's glad to know this. Looking forward to the further information of it.
http://www.astrabeds.com/adjustable-beds.html


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX, Tru64, and Solaris
  2010-12-17  1:12       ` Susan
@ 2011-04-19 22:30         ` anonymous
  2011-08-01  4:30           ` anonymous
  0 siblings, 1 reply; 7+ messages in thread
From: anonymous @ 2011-04-19 22:30 UTC (permalink / raw)
  To: Ludovic Courtès, -Deleted Account-, bug-guile

Follow-up Comment #5, bug #24130 (project guile):

Thanks to Gnulib for this post.But there is a problem I found.
Gnulib has an `strftime' module, which we should use in HEAD and borrow in
1.8. 

Abir(<a
href="http://www.wonderfilereviews.net/wonderfile-file-organizer-review/">Wonder
File Organizer</a>)

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug #24130] `strftime' broken on AIX, Tru64, and Solaris
  2011-04-19 22:30         ` anonymous
@ 2011-08-01  4:30           ` anonymous
  0 siblings, 0 replies; 7+ messages in thread
From: anonymous @ 2011-08-01  4:30 UTC (permalink / raw)
  To: Ludovic Courtès, -Deleted Account-, bug-guile

Follow-up Comment #6, bug #24130 (project guile):

free student credit cards
<http://best-student-credit-cards.info/free-student-credit-cards/>
    credit cards for college students
<http://best-student-credit-cards.info/credit-cards-for-college-students/>
    best student credit cards
<http://best-student-credit-cards.info/best-student-credit-cards/>
    everything you need to know about the best student credit cards
<http://best-student-credit-cards.info>
    what is a student credit card
<http://best-student-credit-cards.info/what-is-a-student-credit-card/>
    student credit cards with no credit
<http://best-student-credit-cards.info/student-credit-cards-with-no-credit/>

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?24130>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-08-01  4:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-25  8:37 [bug #24130] `strftime' broken on AIX and Solaris Ludovic Courtès
2008-08-25  8:38 ` Ludovic Courtès
2009-05-11 20:37   ` Ludovic Courtès
2009-05-11 22:16     ` [bug #24130] `strftime' broken on AIX, Tru64, " Ludovic Courtès
2010-12-17  1:12       ` Susan
2011-04-19 22:30         ` anonymous
2011-08-01  4:30           ` anonymous

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).