26 lines
503 B
Diff
26 lines
503 B
Diff
diff --git a/configure b/configure
|
|
index dfe3b71..a9a6790 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -34117,7 +34117,7 @@ char BZ2_bzlibVersion ();
|
|
|
|
#endif
|
|
int
|
|
-main ()
|
|
+main (void)
|
|
{
|
|
return BZ2_bzlibVersion ();
|
|
;
|
|
@@ -34181,9 +34181,11 @@ else
|
|
/* end confdefs.h. */
|
|
|
|
#ifdef HAVE_BZLIB_H
|
|
+#include <stdlib.h> // for exit
|
|
+#include <string.h> // for strcmp
|
|
#include <bzlib.h>
|
|
#endif
|
|
-int main() {
|
|
+int main(void) {
|
|
char *ver = BZ2_bzlibVersion();
|
|
exit(strcmp(ver, "1.0.6") < 0);
|
|
}
|