When trying to install under strawberry perl on a win32 system (yes, i
am that unlucky), gcc failed.
This was due to perl_common.h:84 which states
#include <syck.h>
Which is easily fixed by changing it to:
#include "syck.h"
I wonder how others built it since there is no -I path passed that
should fix this...