Browse Source

sudo: upgrade to version 1.8.14p3

Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
lilik-openwrt-22.03
Gergely Kiss 9 years ago
parent
commit
5ea128e62d
2 changed files with 16 additions and 4 deletions
  1. +4
    -4
      admin/sudo/Makefile
  2. +12
    -0
      admin/sudo/patches/030-musl-fix-missing-header.patch

+ 4
- 4
admin/sudo/Makefile View File

@ -8,14 +8,14 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=sudo
PKG_VERSION:=1.8.13
PKG_RELEASE:=2
PKG_VERSION:=1.8.14p3
PKG_RELEASE:=1
PKG_LICENSE:=ISC
PKG_LICENSE_FILES:=doc/LICENSE
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.sudo.ws/sudo/dist
PKG_MD5SUM:=f61577ec330ad1bd504c0e2eec6ea2d8
PKG_SOURCE_URL:=http://www.sudo.ws/dist
PKG_MD5SUM:=93dbd1e47c136179ff1b01494c1c0e75
PKG_INSTALL:=1


+ 12
- 0
admin/sudo/patches/030-musl-fix-missing-header.patch View File

@ -0,0 +1,12 @@
diff -rupN sudo-1.8.14p3.orig/include/sudo_util.h sudo-1.8.14p3/include/sudo_util.h
--- sudo-1.8.14p3.orig/include/sudo_util.h 2015-07-22 14:22:49.000000000 +0200
+++ sudo-1.8.14p3/include/sudo_util.h 2015-08-30 18:41:24.509814946 +0200
@@ -23,6 +23,8 @@
# include "compat/stdbool.h"
#endif /* HAVE_STDBOOL_H */
+#include <sys/types.h>
+
/*
* Macros for operating on struct timeval.
*/

Loading…
Cancel
Save