Discussion:
[Pdl-porters] Recent change to Lib/Transform/transform.pd
s***@optusnet.com.au
2014-04-16 06:43:57 UTC
Permalink
Hi,

Some time between 2.007_02 and the present, line 1 of transform.pd changed
from:

# pp_addhdr("#include <sys/time.h>\n");
to:
pp_addhdr("#include <sys/time.h>\n");

This change broke MS Windows, so I've just now changed (on git repo) that
line to:

pp_addhdr("#include <sys/time.h>\n") unless $^O =~ /MSWin32/i;

I'm mentioning this in case there are other systems for which we also need
to avoid including sys/time.h.

Cheers,
Rob

Loading...