annotate src/glpk-1-fixes.patch @ 7223:09b1697eff3a default tip @

* src/qtbase.mk, src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslations.mk: update to v5.15.14
author John Donoghue <john.donoghue@ieee.org>
date Sun, 26 May 2024 20:23:00 -0400
parents a61bbe1a4b72
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4960
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
1 diff -ur glpk-4.65.orig/configure.ac glpk-4.65/configure.ac
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
2 --- glpk-4.65.orig/configure.ac 2019-02-20 14:31:36.960931258 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
3 +++ glpk-4.65/configure.ac 2019-02-20 14:36:12.463581439 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
4 @@ -190,6 +190,14 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
5 esac
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
6 AC_SUBST([NOUNDEFINED])
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
7
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
8 +AC_CHECK_LIB([z], [gzopen])
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
9 +
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
10 +AC_CHECK_LIB([amd], [amd_1])
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
11 +AC_CHECK_LIB([colamd], [colamd])
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
12 +
7018
a61bbe1a4b72 SuiteSparse: update to 7.4.0
Markus Mützel <markus.muetzel@gmx.de>
parents: 6873
diff changeset
13 +CPPFLAGS="$CPPFLAGS $(pkg-config --cflags AMD)"
a61bbe1a4b72 SuiteSparse: update to 7.4.0
Markus Mützel <markus.muetzel@gmx.de>
parents: 6873
diff changeset
14 +AC_CHECK_HEADER([amd.h])
4960
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
15 +
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
16 AC_CONFIG_FILES(
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
17 [src/Makefile examples/Makefile Makefile])
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
18 AC_OUTPUT
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
19 diff -ur glpk-4.65.orig/src/Makefile.am glpk-4.65/src/Makefile.am
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
20 --- glpk-4.65.orig/src/Makefile.am 2019-02-20 14:31:36.988931934 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
21 +++ glpk-4.65/src/Makefile.am 2019-02-20 14:37:43.921787648 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
22 @@ -6,10 +6,8 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
23
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
24 libglpk_la_CPPFLAGS = \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
25 -I$(srcdir) \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
26 --I$(srcdir)/amd \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
27 -I$(srcdir)/api \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
28 -I$(srcdir)/bflib \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
29 --I$(srcdir)/colamd \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
30 -I$(srcdir)/draft \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
31 -I$(srcdir)/env \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
32 -I$(srcdir)/intopt \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
33 @@ -18,8 +16,7 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
34 -I$(srcdir)/mpl \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
35 -I$(srcdir)/npp \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
36 -I$(srcdir)/proxy \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
37 --I$(srcdir)/simplex \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
38 --I$(srcdir)/zlib
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
39 +-I$(srcdir)/simplex
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
40
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
41 libglpk_la_LDFLAGS = \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
42 -version-info 43:0:3 \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
43 @@ -27,18 +24,6 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
44 ${NOUNDEFINED}
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
45
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
46 libglpk_la_SOURCES = \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
47 -amd/amd_1.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
48 -amd/amd_2.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
49 -amd/amd_aat.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
50 -amd/amd_control.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
51 -amd/amd_defaults.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
52 -amd/amd_dump.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
53 -amd/amd_info.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
54 -amd/amd_order.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
55 -amd/amd_post_tree.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
56 -amd/amd_postorder.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
57 -amd/amd_preprocess.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
58 -amd/amd_valid.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
59 api/advbas.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
60 api/asnhall.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
61 api/asnlp.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
62 @@ -104,7 +89,6 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
63 bflib/scfint.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
64 bflib/sgf.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
65 bflib/sva.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
66 -colamd/colamd.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
67 draft/bfd.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
68 draft/bfx.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
69 draft/glpapi06.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
70 @@ -202,21 +186,6 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
71 simplex/spxprob.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
72 simplex/spychuzc.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
73 simplex/spychuzr.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
74 -simplex/spydual.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
75 -zlib/adler32.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
76 -zlib/compress.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
77 -zlib/crc32.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
78 -zlib/deflate.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
79 -zlib/gzclose.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
80 -zlib/gzlib.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
81 -zlib/gzread.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
82 -zlib/gzwrite.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
83 -zlib/inffast.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
84 -zlib/inflate.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
85 -zlib/inftrees.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
86 -zlib/trees.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
87 -zlib/uncompr.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
88 -zlib/zio.c \
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
89 -zlib/zutil.c
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
90 +simplex/spydual.c
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
91
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
92 ## eof ##
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
93 diff -ur glpk-4.65.orig/src/env/stdc.c glpk-4.65/src/env/stdc.c
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
94 --- glpk-4.65.orig/src/env/stdc.c 2019-02-20 15:29:18.821040444 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
95 +++ glpk-4.65/src/env/stdc.c 2019-02-20 15:40:06.948676811 -0500
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
96 @@ -49,7 +49,7 @@
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
97
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
98 /* MS Windows version *************************************************/
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
99
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
100 -#elif defined(__WOE__)
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
101 +#elif defined(__WOE__) || defined(_WIN32)
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
102
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
103 #include "stdc.h"
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
104
3df44260321f glpk: update to 4.65
John Donoghue
parents:
diff changeset
105 Only in glpk-4.65/src/env: .time.c.swp