update-01.03
This commit is contained in:
parent
4cfcae9554
commit
b29629fd4d
|
@ -27,6 +27,7 @@ define Package/jpcre2
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=C++ wrapper for PCRE2 Library
|
TITLE:=C++ wrapper for PCRE2 Library
|
||||||
URL:=https://github.com/jpcre2/jpcre2
|
URL:=https://github.com/jpcre2/jpcre2
|
||||||
|
BUILDONLY:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/jpcre2/description
|
define Package/jpcre2/description
|
||||||
|
|
|
@ -29,6 +29,7 @@ define Package/libcron
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
URL:=https://github.com/PerMalmberg/libcron
|
URL:=https://github.com/PerMalmberg/libcron
|
||||||
TITLE:=A C++ scheduling library using cron formatting
|
TITLE:=A C++ scheduling library using cron formatting
|
||||||
|
BUILDONLY:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libcron/description
|
define Package/libcron/description
|
||||||
|
|
Binary file not shown.
|
@ -1,3 +1,7 @@
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-only
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 ImmortalWrt.org
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=microsocks
|
PKG_NAME:=microsocks
|
||||||
|
@ -18,20 +22,22 @@ PKG_INSTALL:=1
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define Package/microsocks
|
define Package/microsocks
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
SUBMENU:=Web Servers/Proxies
|
SUBMENU:=Web Servers/Proxies
|
||||||
TITLE:=microsocks for OpenWRT
|
TITLE:=Tiny, portable SOCKS5 server
|
||||||
DEPENDS:=+libpthread
|
URL:=https://github.com/rofl0r/microsocks
|
||||||
|
DEPENDS:=+libpthread
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/microsocks/description
|
define Package/microsocks/description
|
||||||
microsocks is a Tiny Proxy in C.
|
A SOCKS5 service that you can run on your remote boxes to tunnel connections
|
||||||
|
through them, if for some reason SSH doesn't cut it for you.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/microsocks/install
|
define Package/microsocks/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/microsocks $(1)/usr/bin/microsocks
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/local/bin/microsocks $(1)/usr/bin/microsocks
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,microsocks))
|
$(eval $(call BuildPackage,microsocks))
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
From 09171eef574503a82342a8b23d4a55b8a5286724 Mon Sep 17 00:00:00 2001
|
||||||
|
From: W_Y_CPP <383152993@qq.com>
|
||||||
|
Date: Sat, 1 Jan 2022 13:05:37 +0900
|
||||||
|
Subject: [PATCH] fix pdnsd alt build error with kernel_5.15
|
||||||
|
|
||||||
|
---
|
||||||
|
src/conff.h | 2 +-
|
||||||
|
src/dns.h | 2 +-
|
||||||
|
src/netdev.c | 2 +-
|
||||||
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/conff.h b/src/conff.h
|
||||||
|
index a07b1561b..c66d210aa 100644
|
||||||
|
--- a/src/conff.h
|
||||||
|
+++ b/src/conff.h
|
||||||
|
@@ -32,7 +32,7 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
-#include <net/if.h>
|
||||||
|
+#include <linux/if.h>
|
||||||
|
#include "ipvers.h"
|
||||||
|
#include "list.h"
|
||||||
|
|
||||||
|
diff --git a/src/dns.h b/src/dns.h
|
||||||
|
index 0f6a4ac1e..ecc9680b2 100644
|
||||||
|
--- a/src/dns.h
|
||||||
|
+++ b/src/dns.h
|
||||||
|
@@ -27,7 +27,7 @@
|
||||||
|
#include <config.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
-#include <net/if.h>
|
||||||
|
+#include <linux/if.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include "rr_types.h"
|
||||||
|
diff --git a/src/netdev.c b/src/netdev.c
|
||||||
|
index bd5f8c451..bfd5046df 100644
|
||||||
|
--- a/src/netdev.c
|
||||||
|
+++ b/src/netdev.c
|
||||||
|
@@ -59,7 +59,7 @@
|
||||||
|
#include "ipvers.h"
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
-#include <net/if.h>
|
||||||
|
+#include <linux/if.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
--
|
||||||
|
2.17.1
|
|
@ -27,6 +27,7 @@ define Package/quickjspp
|
||||||
URL:=https://github.com/ftk/quickjspp
|
URL:=https://github.com/ftk/quickjspp
|
||||||
TITLE:=QuickJS wrapper for C++
|
TITLE:=QuickJS wrapper for C++
|
||||||
DEPENDS:=+libatomic +libpthread
|
DEPENDS:=+libatomic +libpthread
|
||||||
|
BUILDONLY:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/quickjspp/description
|
define Package/quickjspp/description
|
||||||
|
|
|
@ -32,6 +32,7 @@ define Package/rapidjson
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
URL:=https://github.com/Tencent/rapidjson
|
URL:=https://github.com/Tencent/rapidjson
|
||||||
TITLE:=rapidjson JSON parser/generator for C++
|
TITLE:=rapidjson JSON parser/generator for C++
|
||||||
|
BUILDONLY:=1
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/rapidjson/description
|
define Package/rapidjson/description
|
||||||
|
|
Loading…
Reference in New Issue