From 229cb005bbfacfb59f574675bea0f39ff1222941 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sun, 1 Oct 2017 00:35:19 +0200 Subject: [PATCH] main/libtheora: build with -O3 It's a video codec, so performance is more important than few bytes in a library size. --- main/libtheora/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/libtheora/APKBUILD b/main/libtheora/APKBUILD index 6f43fc2a6d8..f8b921619b9 100644 --- a/main/libtheora/APKBUILD +++ b/main/libtheora/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=libtheora pkgver=1.1.1 -pkgrel=12 +pkgrel=13 pkgdesc="An open video codec developed by the Xiph.org" url="http://www.xiph.org" arch="all" @@ -34,7 +34,7 @@ prepare() { build() { cd "$builddir" - ./configure \ + CFLAGS="${CFLAGS/-Os/-O3}" CPPFLAGS="${CPPFLAGS/-Os/-O3}" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \