Merge pull request #1999 from pullmoll/libcdr
libcdr: -O0 prevents _FORTIFY_SOURCE
This commit is contained in:
commit
6e4dc2f189
1 changed files with 10 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
# Template file for 'libcdr'
|
||||
pkgname=libcdr
|
||||
version=0.1.1
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
short_desc="Corel Draw file format importer library"
|
||||
maintainer="Enno Boland <eb@s01.de>"
|
||||
license="LGPL/MPL"
|
||||
license="LGPL-2.1/MPL"
|
||||
makedepends="lcms2-devel icu-devel librevenge-devel boost-devel"
|
||||
hostmakedepends="pkg-config"
|
||||
homepage="https://wiki.documentfoundation.org/DLP/Libraries/libcdr"
|
||||
|
@ -13,6 +13,14 @@ distfiles="http://dev-www.libreoffice.org/src/${pkgname}-${version}.tar.bz2"
|
|||
checksum=72fe7bbbf2275242acdf67ad2f9b6c71ac9146a56c409def360dabcac5695b49
|
||||
configure_args="--enable-debug"
|
||||
|
||||
post_configure() {
|
||||
local _f
|
||||
# -O0 prevents _FORTIFY_SOURCE working
|
||||
for _f in $(find ${wrksrc} -name Makefile); do
|
||||
sed -i $_f -e "s; -O0;;"
|
||||
done
|
||||
}
|
||||
|
||||
libcdr-devel_package() {
|
||||
depends="libcdr>=${version}_${revision} $makedepends"
|
||||
short_desc+=" - development files"
|
||||
|
|
Loading…
Reference in a new issue