diff options
Diffstat (limited to 'community/zabbix/APKBUILD')
-rw-r--r-- | community/zabbix/APKBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/community/zabbix/APKBUILD b/community/zabbix/APKBUILD index 22a369188b..4f79cfb367 100644 --- a/community/zabbix/APKBUILD +++ b/community/zabbix/APKBUILD @@ -4,7 +4,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=zabbix pkgver=3.4.12 -pkgrel=0 +pkgrel=1 pkgdesc="Enterprise-class open source distributed monitoring" url="http://www.zabbix.com" arch="all" @@ -73,8 +73,11 @@ build() { --with-ssh2 \ --with-gnutls " - # we run build for each db type - # make sure prepare is same for each db + # pass --export-dynamic to the linker + # to make zabbix loadable modules work + LDFLAGS="$LDFLAGS -Wl,--export-dynamic" + # we run build for each db type + # make sure prepare is same for each db for db in postgresql mysql sqlite3; do cd "$srcdir" msg "Building for $db" |