Fix gcc14 porting (pkgrel 2)

* disable -Wincompatible-pointer-types
* upstream should fix these problems
** https://gcc.gnu.org/gcc-14/porting_to.html
** https://wiki.gentoo.org/wiki/Modern_C_porting
This commit is contained in:
qwjyh 2024-06-02 17:42:47 +09:00
parent 75cb987982
commit aa1f149b95
4 changed files with 30 additions and 2 deletions

View file

@ -1,7 +1,7 @@
pkgbase = softethervpn
pkgdesc = Multi-protocol VPN Program from University of Tsukuba
pkgver = v4.42_9798
pkgrel = 1
pkgrel = 2
url = https://www.softether.org/
arch = i686
arch = x86_64
@ -13,11 +13,15 @@ pkgbase = softethervpn
depends = zlib
source = https://www.softether-download.com/files/softether/v4.42-9798-rtm-2023.06.30-tree/Source_Code/softether-src-v4.42-9798-rtm.tar.gz
source = aarch64.patch
source = linux_32bit.patch
source = linux_64bit.patch
source = softethervpn-bridge.service
source = softethervpn-client.service
source = softethervpn-server.service
md5sums = bd70e9ae9a19c3f227c26d731503cc7f
md5sums = 8b92f69f9d8d852a3739d0e48bad0454
md5sums = 576277be87dd458c8d889d24a0072abe
md5sums = 1b3d536da4b9fa9a79f113089c13252e
md5sums = 1d54c0065ae8947bd8455b9e2050c1af
md5sums = a1134fea991e6e00dc4910b1be16dc73
md5sums = b54b4f68d56555ddfffc50c2c399624f

View file

@ -4,7 +4,7 @@
pkgname=softethervpn
pkgver=v4.42_9798
pkgrel=1
pkgrel=2
pkgdesc="Multi-protocol VPN Program from University of Tsukuba"
arch=('i686' 'x86_64' 'aarch64' 'armv7h')
url="https://www.softether.org/"
@ -12,11 +12,15 @@ license=('Apache')
depends=('bash' 'openssl' 'zlib')
source=("https://www.softether-download.com/files/softether/${pkgver//_/-}-rtm-2023.06.30-tree/Source_Code/softether-src-${pkgver//_/-}-rtm.tar.gz"
'aarch64.patch'
'linux_32bit.patch'
'linux_64bit.patch'
'softethervpn-bridge.service'
'softethervpn-client.service'
'softethervpn-server.service')
md5sums=('bd70e9ae9a19c3f227c26d731503cc7f'
'8b92f69f9d8d852a3739d0e48bad0454'
'576277be87dd458c8d889d24a0072abe'
'1b3d536da4b9fa9a79f113089c13252e'
'1d54c0065ae8947bd8455b9e2050c1af'
'a1134fea991e6e00dc4910b1be16dc73'
'b54b4f68d56555ddfffc50c2c399624f')
@ -26,12 +30,16 @@ build(){
patch -Np1 -i "${srcdir}/aarch64.patch"
if [ "${CARCH}" == "i686" ]; then
patch src/makefiles/linux_32bit.mak "${srcdir}/linux_32bit.patch"
cp src/makefiles/linux_32bit.mak Makefile
elif [ "${CARCH}" == "x86_64" ]; then
patch src/makefiles/linux_64bit.mak "${srcdir}/linux_64bit.patch"
cp src/makefiles/linux_64bit.mak Makefile
elif [ "${CARCH}" == "aarch64" ]; then
patch src/makefiles/linux_64bit.mak "${srcdir}/linux_64bit.patch"
cp src/makefiles/linux_64bit.mak Makefile
elif [ "${CARCH}" == "armv7h" ]; then
patch src/makefiles/linux_32bit.mak "${srcdir}/linux_32bit.patch"
cp src/makefiles/linux_32bit.mak Makefile
fi

8
linux_32bit.patch Normal file
View file

@ -0,0 +1,8 @@
80c80
< OPTIONS_COMPILE=$(OPTIONS_COMPILE_DEBUG)
---
> OPTIONS_COMPILE=$(OPTIONS_COMPILE_DEBUG) -fpermissive
83c83
< OPTIONS_COMPILE=$(OPTIONS_COMPILE_RELEASE)
---
> OPTIONS_COMPILE=$(OPTIONS_COMPILE_RELEASE) -fpermissive

8
linux_64bit.patch Normal file
View file

@ -0,0 +1,8 @@
86c86
< OPTIONS_COMPILE=$(OPTIONS_COMPILE_DEBUG)
---
> OPTIONS_COMPILE=$(OPTIONS_COMPILE_DEBUG) -fpermissive
89c89
< OPTIONS_COMPILE=$(OPTIONS_COMPILE_RELEASE)
---
> OPTIONS_COMPILE=$(OPTIONS_COMPILE_RELEASE) -fpermissive