File: fixes-to-the-configure-script.patch

package info (click to toggle)
alpine 2.26%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 45,276 kB
  • sloc: ansic: 362,804; tcl: 26,297; sh: 4,910; javascript: 3,789; makefile: 1,933; perl: 159; python: 119; xml: 93; exp: 69; sed: 16; cpp: 7
file content (31 lines) | stat: -rw-r--r-- 857 bytes parent folder | download
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; }