Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 21dcb3a98feb3ae6ba862cfbf25fba3361bc8a9b Mon Sep 17 00:00:00 2001
|
||||
From: Martin Bark <martin@barkynet.com>
|
||||
Date: Mon, 14 Dec 2015 21:46:17 +0000
|
||||
Subject: [PATCH] unix: fix support for uClibc-ng
|
||||
|
||||
uClibc-ng is currently at v1.0.9. The patch corrects the uClibc
|
||||
version test so that HAVE_IFADDRS_H is defined for uClibc versions
|
||||
after v0.9.32.
|
||||
|
||||
Signed-off-by: Martin Bark <martin@barkynet.com>
|
||||
---
|
||||
src/unix/linux-core.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/unix/linux-core.c b/src/unix/linux-core.c
|
||||
index 3ff6fb1..4735bc4 100644
|
||||
--- a/src/unix/linux-core.c
|
||||
+++ b/src/unix/linux-core.c
|
||||
@@ -39,7 +39,7 @@
|
||||
#define HAVE_IFADDRS_H 1
|
||||
|
||||
#ifdef __UCLIBC__
|
||||
-# if __UCLIBC_MAJOR__ < 0 || __UCLIBC_MINOR__ < 9 || __UCLIBC_SUBLEVEL__ < 32
|
||||
+# if __UCLIBC_MAJOR__ < 0 && __UCLIBC_MINOR__ < 9 && __UCLIBC_SUBLEVEL__ < 32
|
||||
# undef HAVE_IFADDRS_H
|
||||
# endif
|
||||
#endif
|
||||
--
|
||||
2.5.0
|
||||
|
||||
14
deprecated/firmware/buildroot/package/libuv/Config.in
Normal file
14
deprecated/firmware/buildroot/package/libuv/Config.in
Normal file
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_LIBUV
|
||||
bool "libuv"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
libuv is a multi-platform support library with a focus
|
||||
on asynchronous I/O.
|
||||
|
||||
https://github.com/libuv/libuv
|
||||
|
||||
comment "libuv needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
depends on BR2_USE_MMU
|
||||
2
deprecated/firmware/buildroot/package/libuv/libuv.hash
Normal file
2
deprecated/firmware/buildroot/package/libuv/libuv.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 906e1a5c673c95cb261adeacdb7308a65b4a8f7c9c50d85f3021364951fa9cde libuv-v1.8.0.tar.gz
|
||||
27
deprecated/firmware/buildroot/package/libuv/libuv.mk
Normal file
27
deprecated/firmware/buildroot/package/libuv/libuv.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# libuv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBUV_VERSION = v1.8.0
|
||||
LIBUV_SITE = $(call github,libuv,libuv,$(LIBUV_VERSION))
|
||||
LIBUV_DEPENDENCIES = host-pkgconf
|
||||
LIBUV_INSTALL_STAGING = YES
|
||||
LIBUV_AUTORECONF = YES
|
||||
LIBUV_LICENSE = BSD-2c, BSD-3c, ISC, MIT
|
||||
LIBUV_LICENSE_FILES = LICENSE
|
||||
|
||||
# Upstream needs tests to be run sequentially. This is the default in
|
||||
# automake 1.11 and before, but not starting in 1.12. To maintain
|
||||
# sequentiality in 1.12 and later, the automake option 'serial-tests'
|
||||
# must be used, Unfortunately, it is not recognised by 1.11 and
|
||||
# before. So upstream only adds it conditionally. We use automake
|
||||
# 1.14, so we need it.
|
||||
define LIBUV_FIXUP_AUTOGEN
|
||||
echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
|
||||
>$(@D)/m4/libuv-extra-automake-flags.m4
|
||||
endef
|
||||
LIBUV_POST_PATCH_HOOKS += LIBUV_FIXUP_AUTOGEN
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user