gnunet-fuse: update to version 0.12.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
8f784b90fd
commit
6263f9ec80
2 changed files with 8 additions and 8 deletions
|
@ -2,11 +2,11 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=gnunet-fuse
|
PKG_NAME:=gnunet-fuse
|
||||||
|
|
||||||
PKG_VERSION:=0.11.0
|
PKG_VERSION:=0.12.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=@GNU/gnunet
|
PKG_SOURCE_URL:=@GNU/gnunet
|
||||||
PKG_HASH:=4ddf258336c9ce111fe71372aad0bfd792311f6d92753c29293b2cca1fe3bf16
|
PKG_HASH:=4d42dc3112f36ada150b3904e207b93373c90d4fbd5a1c6415ee7f5c6a428e3b
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-3.0
|
PKG_LICENSE:=GPL-3.0
|
||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
--- a/src/fuse/mutex.c
|
--- a/src/fuse/mutex.c
|
||||||
+++ b/src/fuse/mutex.c
|
+++ b/src/fuse/mutex.c
|
||||||
@@ -71,8 +71,13 @@ GNUNET_mutex_create (int isRecursive)
|
@@ -68,8 +68,13 @@ GNUNET_mutex_create (int isRecursive)
|
||||||
if (isRecursive)
|
if (isRecursive)
|
||||||
{
|
{
|
||||||
#if LINUX
|
#ifdef __linux__
|
||||||
+#if defined(__UCLIBC__) || defined(__GLIBC__)
|
+#if defined(__UCLIBC__) || defined(__GLIBC__)
|
||||||
GNUNET_assert (0 == pthread_mutexattr_setkind_np
|
GNUNET_assert (0 == pthread_mutexattr_setkind_np
|
||||||
(&attr, PTHREAD_MUTEX_RECURSIVE_NP));
|
(&attr, PTHREAD_MUTEX_RECURSIVE_NP));
|
||||||
|
@ -11,13 +11,13 @@
|
||||||
+ GNUNET_assert (0 == pthread_mutexattr_settype
|
+ GNUNET_assert (0 == pthread_mutexattr_settype
|
||||||
+ (&attr, PTHREAD_MUTEX_RECURSIVE));
|
+ (&attr, PTHREAD_MUTEX_RECURSIVE));
|
||||||
+#endif
|
+#endif
|
||||||
#elif SOMEBSD || GNUNET_freeBSD || GNUNET_freeBSD5
|
#elif BSD || SOLARIS || OSX || WINDOWS
|
||||||
GNUNET_assert (0 == pthread_mutexattr_setkind_np
|
GNUNET_assert (0 == pthread_mutexattr_settype
|
||||||
(&attr, PTHREAD_MUTEX_RECURSIVE));
|
(&attr, PTHREAD_MUTEX_RECURSIVE));
|
||||||
@@ -84,11 +89,16 @@ GNUNET_mutex_create (int isRecursive)
|
@@ -78,11 +83,16 @@ GNUNET_mutex_create (int isRecursive)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if LINUX
|
#ifdef __linux__
|
||||||
+#if defined(__UCLIBC__) || defined(__GLIBC__)
|
+#if defined(__UCLIBC__) || defined(__GLIBC__)
|
||||||
GNUNET_assert (0 == pthread_mutexattr_setkind_np
|
GNUNET_assert (0 == pthread_mutexattr_setkind_np
|
||||||
(&attr, PTHREAD_MUTEX_ERRORCHECK_NP));
|
(&attr, PTHREAD_MUTEX_ERRORCHECK_NP));
|
||||||
|
|
Loading…
Reference in a new issue