Re: [HACKERS] CVS compile failure

2004-07-19 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > I am seeing a compile failure in current CVS from strptime(): Should be fixed now. I wasn't very happy with strptime() there in the first place, since it is inflexible about input format and doesn't support a timezone specification. Using our own datet

Re: [HACKERS] CVS compile failure

2004-07-19 Thread Marc G. Fournier
On Mon, 19 Jul 2004, Tom Lane wrote: "Marc G. Fournier" <[EMAIL PROTECTED]> writes: Bruce Momjian <[EMAIL PROTECTED]> writes: I am seeing a compile failure in current CVS from strptime(): ./backend/access/transam/xlog.c:if (strptime(tok2, "%Y-%m-%d %H:%M:%S", &tm) == NULL) BSD/OS does not have

Re: [HACKERS] CVS compile failure

2004-07-18 Thread Tom Lane
"Marc G. Fournier" <[EMAIL PROTECTED]> writes: > Bruce Momjian <[EMAIL PROTECTED]> writes: >> I am seeing a compile failure in current CVS from strptime(): >> ./backend/access/transam/xlog.c:if (strptime(tok2, "%Y-%m-%d %H:%M:%S", &tm) == >> NULL) >> BSD/OS does not have that function. > Unde

Re: [HACKERS] CVS compile failure

2004-07-18 Thread Marc G. Fournier
On Mon, 19 Jul 2004, Tom Lane wrote: Bruce Momjian <[EMAIL PROTECTED]> writes: I am seeing a compile failure in current CVS from strptime(): ./backend/access/transam/xlog.c:if (strptime(tok2, "%Y-%m-%d %H:%M:%S", &tm) == NULL) BSD/OS does not have that function. Hmph. I was wondering if tha

Re: [HACKERS] CVS compile failure

2004-07-18 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > I am seeing a compile failure in current CVS from strptime(): > ./backend/access/transam/xlog.c:if (strptime(tok2, "%Y-%m-%d %H:%M:%S", &tm) > == NULL) > BSD/OS does not have that function. Hmph. I was wondering if that was really portable or not