diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-07-19 00:08:53 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2019-07-19 00:10:33 -0700 |
commit | fadf2bfc14ed62d6fff3224e7f21aac1828fbfda (patch) | |
tree | d50a1e4cead66632a59b66c21d14505ab1f4e608 /net/socat/Makefile | |
parent | c8734591ca2d2c9e69a69591ccd1365795826689 (diff) |
socat: Fix compilation when usleep is missing
usleep is a legacy function that was removed in POSIX-2008. uClibc-ng can
be configured to compile without it. if out the code as it's not used.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'net/socat/Makefile')
-rw-r--r-- | net/socat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socat/Makefile b/net/socat/Makefile index 725a8464d..b664b4590 100644 --- a/net/socat/Makefile +++ b/net/socat/Makefile @@ -7,14 +7,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=socat PKG_VERSION:=1.7.3.3 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.dest-unreach.org/socat/download PKG_HASH:=0dd63ffe498168a4aac41d307594c5076ff307aa0ac04b141f8f1cec6594d04a PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net> -PKG_LICENSE:=GPL-2.0 OpenSSL +PKG_LICENSE:=GPL-2.0-or-later OpenSSL PKG_LICENSE_FILES:=COPYING COPYING.OpenSSL PKG_INSTALL:=1 |