xwmfs: update to 0.85.
This commit is contained in:
parent
a045d6015e
commit
941d466b0b
|
@ -1,27 +0,0 @@
|
|||
--- src/common/Exception.cxx
|
||||
+++ src/common/Exception.cxx
|
||||
@@ -39,8 +39,13 @@ SystemException::SystemException(const std::string &err) :
|
||||
|
||||
char msg[256];
|
||||
|
||||
+#if defined(__GLIBC__)
|
||||
char *m = ::strerror_r(m_errno, msg, 256);
|
||||
ss << " (\"" << m << "\", errno = " << m_errno << ")";
|
||||
+#else
|
||||
+ ::strerror_r(m_errno, msg, 256);
|
||||
+ ss << " (\"" << msg << "\", errno = " << m_errno << ")";
|
||||
+#endif
|
||||
m_error.append( ss.str() );
|
||||
}
|
||||
|
||||
--- src/fuse/Entry.hxx
|
||||
+++ src/fuse/Entry.hxx
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef XWMFS_ENTRY_HXX
|
||||
#define XWMFS_ENTRY_HXX
|
||||
|
||||
+#include <sys/types.h>
|
||||
+
|
||||
// C++
|
||||
#include <atomic>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'xwmfs'
|
||||
pkgname=xwmfs
|
||||
version=0.84
|
||||
version=0.85
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="automake autoconf pkg-config which"
|
||||
|
@ -11,7 +11,7 @@ license="GPL-2.0-or-later"
|
|||
homepage="https://github.com/gerstner-hub/xwmfs"
|
||||
changelog="https://raw.githubusercontent.com/gerstner-hub/xwmfs/master/ChangeLog"
|
||||
distfiles="https://github.com/gerstner-hub/xwmfs/archive/v${version}.tar.gz"
|
||||
checksum=6d52fc33e2b30f10fccf47e1cc778fa7aa4e0b4957fba2758b685818beda1b03
|
||||
checksum=9d786514397f34ff35eaf460c8c07ccc64d01227311ab19e4a7aab9fd0007831
|
||||
|
||||
pre_configure() {
|
||||
./bootstrap
|
||||
|
|
Loading…
Reference in New Issue