From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Quinson To: gsl-discuss@sources.redhat.com Subject: Still a mini bug in 0.9.1 Date: Wed, 19 Dec 2001 13:20:00 -0000 Message-id: <20010818235622.F11019@pixies.ens-lyon.fr> References: X-SW-Source: 2001/msg00402.html Hello, I just checked, and the gsl.m4 macro won't work when you use paranoid compillation option like "-Wmissing-prototypes -Werror". I put them in CFLAGS with the autotools mechanism, and if I do it before I call your macro, the test program won't compile. Here is the patch to fix it: -------------------- --- gsl.m4.orig Sat Aug 18 23:49:54 2001 +++ gsl.m4 Sat Aug 18 23:50:15 2001 @@ -64,6 +64,8 @@ #include #include +char* my_strdup (const char *str); + char* my_strdup (const char *str) { -------------------- That's a pretty stupid patch, but it really helps here(TM). Bye, Mt.