Thread (5 messages) flat view 5 messages, 3 authors, 2016-06-15

RE: [PATCH 6/10] Fix header breakage with _XOPEN_SOURCE.

From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:42:35

Hi,

On Wed, 2 Aug 2006, Ramsay Jones wrote:
[...] but strptime() remains undeclared.
Note that there is just one call to strptime() in the C sources: 
convert-objects.

Also, we have something more portable in git now: you might be able to 
substitute

	const char *next = strptime(buf, *fmt, &tm);
	if (next) {

by something like

	char buffer[50];
	int len = parse_date(buf, buffer, sizeof(buffer));
	const char *next = buf + len;

	if (len) {
		const char *tzstring = strchr(buffer, ' ') + 1;
		int tz = (int)strtol(tzstring, NULL, 10);
		tm = *time_to_tm(strtoul(buffer, NULL, 10), tz);

However, I did not test it, and this might be completely bogus.

Ciao,
Dscho
	
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help