mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 15:43:49 +02:00
mysql: unbreak musl build (yours truly xtraeme)
This commit is contained in:
parent
20694f1733
commit
68d073264b
2 changed files with 16 additions and 1 deletions
13
srcpkgs/mysql/patches/musl.patch
Normal file
13
srcpkgs/mysql/patches/musl.patch
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
musl only support NPTL, so that remove that old stuff.
|
||||||
|
|
||||||
|
--- mysys/stacktrace.c.orig 2015-05-08 18:43:01.661343605 +0200
|
||||||
|
+++ mysys/stacktrace.c 2015-05-08 18:43:13.669331612 +0200
|
||||||
|
@@ -355,7 +355,7 @@ void my_print_stacktrace(uchar* stack_bo
|
||||||
|
#endif /* __alpha__ */
|
||||||
|
|
||||||
|
/* We are 1 frame above signal frame with NPTL and 2 frames above with LT */
|
||||||
|
- sigreturn_frame_count = thd_lib_detected == THD_LIB_LT ? 2 : 1;
|
||||||
|
+ sigreturn_frame_count = 2;
|
||||||
|
|
||||||
|
while (fp < (uchar**) stack_bottom)
|
||||||
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'mysql'
|
# Template file for 'mysql'
|
||||||
pkgname=mysql
|
pkgname=mysql
|
||||||
version=5.6.24
|
version=5.6.24
|
||||||
revision=1
|
revision=2
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
configure_args="-DSYSCONFDIR=/etc/mysql -DMYSQL_DATADIR=/var/lib/mysql
|
configure_args="-DSYSCONFDIR=/etc/mysql -DMYSQL_DATADIR=/var/lib/mysql
|
||||||
-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock -DDEFAULT_CHARSET=utf8
|
-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock -DDEFAULT_CHARSET=utf8
|
||||||
|
@ -31,6 +31,8 @@ license="GPL-2"
|
||||||
distfiles="https://downloads.skysql.com/archives/mysql-${version%.*}/mysql-${version}.tar.gz"
|
distfiles="https://downloads.skysql.com/archives/mysql-${version%.*}/mysql-${version}.tar.gz"
|
||||||
checksum=37e27305b67d76883c5902dce59c89d596beee9dca7dbadd4a2e117f8101dfeb
|
checksum=37e27305b67d76883c5902dce59c89d596beee9dca7dbadd4a2e117f8101dfeb
|
||||||
|
|
||||||
|
CFLAGS="-D__STDC_ISO_10646__"
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
# libressl major detection.
|
# libressl major detection.
|
||||||
sed -i '/OPENSSL_MAJOR_VERSION/s/1/2/' cmake/ssl.cmake
|
sed -i '/OPENSSL_MAJOR_VERSION/s/1/2/' cmake/ssl.cmake
|
||||||
|
|
Loading…
Add table
Reference in a new issue