watchman: updated to 4.4.0
This commit is contained in:
parent
78bb95bae3
commit
d1e032285b
|
@ -0,0 +1,16 @@
|
||||||
|
--- log.c.bck 2016-02-14 04:34:21.822095670 -0500
|
||||||
|
+++ log.c 2016-02-14 04:35:35.669233860 -0500
|
||||||
|
@@ -78,11 +78,11 @@
|
||||||
|
dprintf(STDERR_FILENO,
|
||||||
|
"Terminating due to signal %d %s "
|
||||||
|
"generated by pid=%d uid=%d. %s (%p)\n",
|
||||||
|
- signo, sys_siglist[signo], si->si_pid, si->si_uid,
|
||||||
|
+ signo, strsignal(signo), si->si_pid, si->si_uid,
|
||||||
|
reason, si->si_value.sival_ptr);
|
||||||
|
} else {
|
||||||
|
dprintf(STDERR_FILENO, "Terminating due to signal %d %s. %s\n",
|
||||||
|
- signo, sys_siglist[signo], reason);
|
||||||
|
+ signo, strsignal(signo), reason);
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(HAVE_BACKTRACE) && defined(HAVE_BACKTRACE_SYMBOLS_FD)
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'watchman'
|
# Template file for 'watchman'
|
||||||
pkgname=watchman
|
pkgname=watchman
|
||||||
version=3.8.0
|
version=4.4.0
|
||||||
revision=1
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="automake libtool"
|
hostmakedepends="automake libtool"
|
||||||
|
@ -10,7 +10,7 @@ maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
license="Apache-2.0"
|
license="Apache-2.0"
|
||||||
homepage="https://facebook.github.io/watchman/"
|
homepage="https://facebook.github.io/watchman/"
|
||||||
distfiles="https://github.com/facebook/watchman/archive/v${version}.tar.gz"
|
distfiles="https://github.com/facebook/watchman/archive/v${version}.tar.gz"
|
||||||
checksum=10d1e134e6ff110044629a517e7c69050fb9e4a26f21079b267989119987b40d
|
checksum=6fdd830584e59d0c70d06c5776d3ab68eb0cfe81ec2c071455bf04df84d9aee2
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
sed -i 's,sys/poll.h,poll.h,g' *.[ch]
|
sed -i 's,sys/poll.h,poll.h,g' *.[ch]
|
||||||
|
|
Loading…
Reference in New Issue