libuv: bump to 1.10.1, drop unneeded mkdirs in INSTALL.

This commit is contained in:
fbrosson
2016-11-19 14:21:09 +00:00
parent 408ccffe76
commit f2d4c9606a
2 changed files with 5 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ COPYRIGHT="2009-2016 Ryan Dahl and others"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/libuv/libuv/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="50f4ed57d65af4ab634e2cbdd90c49213020e15b4d77d3631feb633cbba9239f"
CHECKSUM_SHA256="4b5f71939dd4272ebcfb8e04833e9a273a08b1bf1277d37d14085d7b04b19832"
PATCHES="libuv-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
@@ -55,12 +55,10 @@ BUILD()
INSTALL()
{
mkdir -p $includeDir
mkdir -p $libDir
make install
rm -f $libDir/*.la
# remove libtool file
rm -f $libDir/libuv.la
prepareInstalledDevelLib libuv

View File

@@ -10,7 +10,7 @@ Subject: [PATCH] Haiku supporting code
3 files changed, 35 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 5abd8a1..ca4c6ec 100644
index d3787c0..63376c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,14 +41,17 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
@@ -61,7 +61,7 @@ index bca2714..cae33fe 100644
# include "pthread-barrier.h"
#endif
diff --git a/src/unix/core.c b/src/unix/core.c
index a2c07e6..7f7848a 100644
index 6283ed3..580eceb 100644
--- a/src/unix/core.c
+++ b/src/unix/core.c
@@ -55,6 +55,12 @@