index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-06-06 19:06:04 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-06-06 19:06:04 +0200 |
commit | c64d4389df9ae21d8f4aec814f197079d4c9fdb6 (patch) | |
tree | 65f895c483b8dabfd9c9950c0650be3704ed1831 /extra | |
parent | 178ee67b368ce3350487611e9df7eca401978869 (diff) |
-rw-r--r-- | extra/icewm/PKGBUILD | 9 | ||||
-rw-r--r-- | extra/icewm/icewm-1.3.8-narrowing-casts.patch | 21 |
diff --git a/extra/icewm/PKGBUILD b/extra/icewm/PKGBUILD deleted file mode 100644 index af9cda66..00000000 --- a/extra/icewm/PKGBUILD +++ /dev/null @@ -1,9 +0,0 @@ -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 - ' -)" diff --git a/extra/icewm/icewm-1.3.8-narrowing-casts.patch b/extra/icewm/icewm-1.3.8-narrowing-casts.patch deleted file mode 100644 index 7912d6ae..00000000 --- a/extra/icewm/icewm-1.3.8-narrowing-casts.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -rauN icewm-1.3.8/src/icesh.cc icewm-1.3.8-narrowing-casts-patch/src/icesh.cc ---- icewm-1.3.8/src/icesh.cc 2013-11-17 17:54:39.000000000 +0100 -+++ icewm-1.3.8-narrowing-casts-patch/src/icesh.cc 2018-06-06 17:03:27.154963162 +0200 -@@ -245,7 +245,7 @@ - }; - - SymbolTable layers = { -- layerIdentifiers, 0, WinLayerCount - 1, WinLayerInvalid -+ layerIdentifiers, 0, WinLayerCount - 1, (long int)WinLayerInvalid - }; - - SymbolTable states = { -@@ -257,7 +257,7 @@ - }; - - SymbolTable trayOptions = { -- trayOptionIdentifiers, 0, WinTrayOptionCount - 1, WinTrayInvalid -+ trayOptionIdentifiers, 0, WinTrayOptionCount - 1, (long int)WinTrayInvalid - }; - - /******************************************************************************/ |