mit-krb5: do not treat warnings as errors (fixes musl build).
This commit is contained in:
parent
68d073264b
commit
687e72ee2f
1 changed files with 13 additions and 12 deletions
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'mit-krb5'
|
||||
pkgname=mit-krb5
|
||||
version=1.13.1
|
||||
revision=3
|
||||
revision=4
|
||||
short_desc="MIT Kerberos 5 implementation"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
license="MIT"
|
||||
|
@ -9,18 +9,8 @@ homepage="http://web.mit.edu/Kerberos"
|
|||
distfiles="$homepage/dist/krb5/${version%.*}/krb5-${version}-signed.tar"
|
||||
checksum=4df629fdf97f362cf81edbf38d613b32b492dd88c876cf3aa1c66562f296663e
|
||||
|
||||
wrksrc="krb5-${version}"
|
||||
|
||||
disable_parallel_build=yes
|
||||
|
||||
build_style=gnu-configure
|
||||
configure_script="./src/configure"
|
||||
configure_args="--disable-rpath --with-system-et --without-system-verto
|
||||
--with-system-ss --with-system-db --enable-shared --without-tcl
|
||||
ac_cv_func_pthread_once=yes ac_cv_func_pthread_rwlock_init=yes
|
||||
acx_pthread_ok=yes ac_cv_func_regcomp=yes ac_cv_printf_positional=yes
|
||||
krb5_cv_attr_constructor_destructor=yes,yes"
|
||||
|
||||
wrksrc="krb5-${version}"
|
||||
hostmakedepends="perl flex e2fsprogs-devel"
|
||||
makedepends="db-devel e2fsprogs-devel libressl-devel"
|
||||
depends="mit-krb5-client>=${version}_${revision}"
|
||||
|
@ -34,6 +24,17 @@ do_extract() {
|
|||
# Fix db plugin.
|
||||
sed -i -e "s|<db.h>|<db_185.h>|" $wrksrc/src/plugins/kdb/db2/*.[ch]
|
||||
}
|
||||
do_configure() {
|
||||
WARN_CFLAGS= ./src/configure ${configure_args} \
|
||||
--disable-rpath --with-system-et --without-system-verto \
|
||||
--with-system-ss --with-system-db --enable-shared --without-tcl \
|
||||
ac_cv_func_pthread_once=yes ac_cv_func_pthread_rwlock_init=yes \
|
||||
acx_pthread_ok=yes ac_cv_func_regcomp=yes ac_cv_printf_positional=yes \
|
||||
krb5_cv_attr_constructor_destructor=yes,yes"
|
||||
}
|
||||
do_build() {
|
||||
make
|
||||
}
|
||||
|
||||
mit-krb5-client_package() {
|
||||
short_desc+=" - client programs"
|
||||
|
|
Loading…
Reference in a new issue