sessreg: fix musl build again

For musl define _PATH_UTMPX analogous to _PATH_WTMPX.
This commit is contained in:
Jürgen Buchmüller 2016-02-20 09:13:22 +01:00
parent 0bf2149eda
commit 2a8ac3876a

View file

@ -1,7 +1,7 @@
# Template build file for 'sessreg'.
pkgname=sessreg
version=1.1.0
revision=2
revision=3
build_style=gnu-configure
hostmakedepends="pkg-config"
makedepends="libX11-devel"
@ -14,3 +14,9 @@ checksum=551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c
# musl does not define _WTMPX_FILE, use WTMP_FILE instead.
CFLAGS="-D_WTMPX_FILE=WTMP_FILE -D_PATH_WTMPX=_PATH_WTMP"
# musl does not define _UTMPX_FILE, use UTMP_FILE instead.
CFLAGS+=" -D_UTMPX_FILE=UTMP_FILE -D_PATH_UTMPX=_PATH_UTMP"
post_install() {
vlicense COPYING
}