1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Description: Fixes to the configure script
Author: Eduardo Chappa <chappa@washington.edu>
Origin: upstream, https://repo.or.cz/alpine.git/patch/0c44e2ae8b861e06139cfc6377cc59db0f12f781
Bug-Debian: https://bugs.debian.org/1114043
Last-Update: 2022-11-27
Fixes to the configure script by Florian Meyer (to fix an implicit
cast to int in a declaration of a function).
--- a/configure
+++ b/configure
@@ -22034,7 +22034,7 @@
#endif
extern void *base;
-extern sortf(const void *, const void *);
+extern int sortf(const void *, const void *);
int sortf(a, b)
const void *a;
const void *b; { return 0; }
--- a/configure.ac
+++ b/configure.ac
@@ -1964,7 +1964,7 @@
#endif
extern void *base;
-extern sortf(const void *, const void *);
+extern int sortf(const void *, const void *);
int sortf(a, b)
const void *a;
const void *b; { return 0; }
|