blob: 847dbece0e285e97095703936cfa81a62e91643a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# compilation issues with narrowing -1 initializations
source+=('icewm-1.3.8-narrowing-casts.patch')
sha1sums+=('d8a296356884a3318f2436c035425e22bf94f15c')
eval "$(
declare -f prepare | \
sed '
/remain_power.patch/a patch -Np1 -i ${srcdir}/icewm-1.3.8-narrowing-casts.patch
'
)"
# segfaults when derefenecing null refs in initializePixmaps
source+=('icewm-1.3.8-pixmap-null-ref.patch')
sha1sums+=('9e13e6bbf10e31427e048b4c0b516f37b0b9ff59')
eval "$(
declare -f prepare | \
sed '
/narrowing-casts.patch/a patch -Np1 -i ${srcdir}/icewm-1.3.8-pixmap-null-ref.patch
'
)"
|