diff options
author | Ted Hess <thess@kitschensync.net> | 2018-10-15 17:55:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 17:55:10 -0400 |
commit | cf2b81696e001c62defbba3bd6fad5357fe5eb9f (patch) | |
tree | 23bb9179a5f5cf02bf40ca91c8bb72862b864911 /net | |
parent | 6e9479fd9b248fc4c6a2fd724ee210c05cfa8477 (diff) | |
parent | 5f41d05c7177e9971bb3b36d1a64e4f077e19966 (diff) |
Merge pull request #7182 from neheb/dark
darkstat: Remove libbsd dependency
Diffstat (limited to 'net')
-rw-r--r-- | net/darkstat/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/darkstat/Makefile b/net/darkstat/Makefile index 379c2600a..bf00a7819 100644 --- a/net/darkstat/Makefile +++ b/net/darkstat/Makefile @@ -1,6 +1,4 @@ # -# Copyright (C) 2007-2016 OpenWrt.org -# # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # @@ -9,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=darkstat PKG_VERSION:=3.0.719 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Jean-Michel Lacroix <lacroix@lepine-lacroix.info> @@ -27,7 +25,7 @@ include $(INCLUDE_DIR)/package.mk define Package/darkstat SECTION:=net CATEGORY:=Network - DEPENDS:=+libpcap +zlib +USE_GLIBC:libbsd + DEPENDS:=+libpcap +zlib TITLE:=Network bandwidth monitor URL:=http://unix4lyfe.org/darkstat/ endef @@ -46,7 +44,10 @@ CONFIGURE_ARGS += \ --disable-debug \ --with-chroot-dir=/var/empty -TARGET_CFLAGS += -std=gnu99 +CONFIGURE_VARS += \ + ac_cv_search_setproctitle=no \ + ac_cv_search_strlcpy=no \ + ac_cv_search_strlcat=no define Build/Compile $(HOSTCC) $(PKG_BUILD_DIR)/static/c-ify.c \ |