Show quoted text
Thanks for a prompt response.
Show quoted text> --- tools/zmqcheck/Makefile.PL 2013-01-09 09:46:28.000000000 +0100
> +++ tools/zmqcheck/Makefile.PL 2013-03-25 15:44:20.740478869 +0100
> @@ -28,4 +28,7 @@
> #include "perl.h"
> #include <zmq.h>
> +#ifndef PERL_GCC_PEDANTIC
> +#define PERL_GCC_PEDANTIC
> +#endif
No, it is the #include "perl.h" which chokes on -pedantic, so
the '#define PERL_GCC_PEDANTIC' must come before the #include "perl.h".
(the #include "EXTERN.h" is currently not problematic,
so the '#define PERL_GCC_PEDANTIC' may be before or after it)
Mark