mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 08:52:56 +02:00
commit
f0522f239e
2 changed files with 17 additions and 2 deletions
15
srcpkgs/akonadi/patches/fix_backtrace.patch
Normal file
15
srcpkgs/akonadi/patches/fix_backtrace.patch
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
The check for Backtrace_FOUND must use #if not #ifdef,
|
||||||
|
because there is a "#define Backtrace_FOUND 0" in case
|
||||||
|
there is no backtrace() functionality (i.e. musl libc)
|
||||||
|
|
||||||
|
--- shared/akcrash.cpp 2014-08-10 12:38:58.000000000 +0200
|
||||||
|
+++ shared/akcrash.cpp 2015-07-28 14:32:27.230877108 +0200
|
||||||
|
@@ -39,7 +39,7 @@
|
||||||
|
QString s;
|
||||||
|
|
||||||
|
/* FIXME: is there an equivalent for windows? */
|
||||||
|
-#ifdef Backtrace_FOUND
|
||||||
|
+#if Backtrace_FOUND
|
||||||
|
void *trace[256];
|
||||||
|
int n = backtrace( trace, 256 );
|
||||||
|
if ( !n ) {
|
|
@ -1,13 +1,13 @@
|
||||||
# Template file for 'akonadi'
|
# Template file for 'akonadi'
|
||||||
pkgname=akonadi
|
pkgname=akonadi
|
||||||
version=1.13.0
|
version=1.13.0
|
||||||
revision=3
|
revision=4
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
configure_args="-DAKONADI_BUILD_TESTS=OFF -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE -DDATABASE_BACKEND=SQLITE -DWITH_SOPRANO=OFF"
|
configure_args="-DAKONADI_BUILD_TESTS=OFF -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE -DDATABASE_BACKEND=SQLITE -DWITH_SOPRANO=OFF"
|
||||||
hostmakedepends="cmake automoc4 pkg-config libxslt"
|
hostmakedepends="cmake automoc4 pkg-config libxslt"
|
||||||
makedepends="shared-mime-info sqlite-devel boost-devel qt-devel phonon-devel"
|
makedepends="shared-mime-info sqlite-devel boost-devel qt-devel phonon-devel"
|
||||||
depends="shared-mime-info"
|
depends="shared-mime-info"
|
||||||
short_desc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
|
short_desc="PIM layer providing an asynchronous API to access all kinds of PIM data"
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
license="LGPL-2.1"
|
license="LGPL-2.1"
|
||||||
homepage="http://community.kde.org/KDE_PIM/Akonadi"
|
homepage="http://community.kde.org/KDE_PIM/Akonadi"
|
||||||
|
|
Loading…
Add table
Reference in a new issue