Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
examples/testd.c: As the C POSIX library recommends include the <unistd.h>
instead of <sys/unistd.h>. This removes an error when building libdaemon
against the musl C library.
Signed-off-by: Jörg Krause <jkrause@posteo.de>
--- libdaemon-0.14.orig/examples/testd.c 2014-08-30 00:27:08.359832977 +0200
+++ libdaemon-0.14/examples/testd.c 2014-08-30 00:27:25.439832670 +0200
@@ -23,7 +23,7 @@
#include <string.h>
#include <sys/types.h>
#include <sys/time.h>
-#include <sys/unistd.h>
+#include <unistd.h>
#include <sys/select.h>
#include <libdaemon/dfork.h>

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_LIBDAEMON
bool "libdaemon"
# needs fork()
depends on BR2_USE_MMU
help
libdaemon is a lightweight C library that eases the
writing of UNIX daemons.
http://0pointer.de/lennart/projects/libdaemon/

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834 libdaemon-0.14.tar.gz

View File

@@ -0,0 +1,16 @@
################################################################################
#
# libdaemon
#
################################################################################
LIBDAEMON_VERSION = 0.14
LIBDAEMON_SITE = http://0pointer.de/lennart/projects/libdaemon
LIBDAEMON_LICENSE = LGPLv2.1+
LIBDAEMON_LICENSE_FILES = LICENSE
LIBDAEMON_INSTALL_STAGING = YES
LIBDAEMON_CONF_ENV = ac_cv_func_setpgrp_void=no
LIBDAEMON_CONF_OPTS = --disable-lynx
LIBDAEMON_DEPENDENCIES = host-pkgconf
$(eval $(autotools-package))