mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
cligen: Update to 7.5.0
"const" patches still haven't been upstreamed. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
This commit is contained in:
@@ -7,12 +7,12 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=cligen
|
||||
PKG_VERSION:=7.4.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=7.5.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/clicon/$(PKG_NAME)/tar.gz/$(PKG_VERSION)?
|
||||
PKG_HASH:=cfbeec48103170720450b03d03593d18fecdd365c0d1f1936ddb46e260699466
|
||||
PKG_HASH:=e9baf98e41f53fd8b03b4bff622c25c9c86fc1fc3f99c4fb7b63eb8a4265dbd1
|
||||
|
||||
PKG_MAINTAINER:=Olof Hagsand <olof@hagsand.se>, Philip Prindeville <philipp@redfish-solutions.com>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
||||
@@ -10,10 +10,10 @@
|
||||
-int (*gl_qmark_hook)() = NULL;
|
||||
-int (*gl_susp_hook)() = NULL;
|
||||
-int (*gl_interrupt_hook)() = NULL;
|
||||
+int (*gl_in_hook)(void *, char *) = NULL;
|
||||
+int (*gl_out_hook)(void *, char *) = NULL;
|
||||
+int (*gl_in_hook)(void *, const char *) = NULL;
|
||||
+int (*gl_out_hook)(void *, const char *) = NULL;
|
||||
+int (*gl_tab_hook)(cligen_handle, int *) = NULL;
|
||||
+int (*gl_qmark_hook)(cligen_handle, char *) = NULL;
|
||||
+int (*gl_qmark_hook)(cligen_handle, const char *) = NULL;
|
||||
+int (*gl_susp_hook)(void *, char *, int, int *) = NULL;
|
||||
+int (*gl_interrupt_hook)(cligen_handle) = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user