Some Linux distributions now build their packages with
-Werror=format-security, in order to catch security vulnerabilities.
This makes ECL fail while running configure. This patch fixes the
problem:
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index d49321a..0f34d9a 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -711,7 +711,7 @@ int main() {
fclose(f);
f = fopen("conftestval","w");
if (f == NULL) exit(1);
- fprintf(f, output);
+ fputs(output, f);
fclose(f);
exit(0);
}
Regards,
--
Jerry James
http://www.jamezone.org/
------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Ecls-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ecls-list