aboutsummaryrefslogtreecommitdiff
path: root/utils/bandwidthd/Makefile
Commit message (Collapse)AuthorAge
* bandwidthd: drop this packageJosef Schlehofer2023-09-16
| | | | | | | | | | This package is not maintained by upstream anymore as they replace it by Ntopng 3. [1] Upstream repository is archived and read only since February 2022 [2] [1] https://community.nethserver.org/t/bandwidthd-for-nethserver-7/4071/18 [2] https://github.com/NethServer/bandwidthd Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* bandwidthd: fix time_t problemJean-Michel Lacroix2022-10-25
| | | | | | Fixes issu #19510 with the change in time_t with musl 1.2 Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* bandwidthd: fix format warningsRosen Penev2022-09-29
| | | | | | Should fix crashing errors under musl 1.2 Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: remove rpath-linkRosen Penev2022-03-13
| | | | | | Most usages seem to be outdated and fixed a long time ago. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* bandwidthd: migrate dependencies to php8 (fixes #17296)Michael Heimpold2021-12-13
| | | | | | | | | This package was forgotten when all other packages were upgraded to PHP8. So let's upgrade the dependencies here as well. Thanks to @feckert, for pointing this out. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* bandwidthd: don't build in parallelRosen Penev2020-08-19
| | | | | | | There are intermittent build failures on the buildbots because of this. I see the same build failures locally as well. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* bandwidthd: fix compilation with GCC10Rosen Penev2020-06-30
| | | | | | | | Added PKG_BUILD_PARALLEL for faster compilation. Fixed license information. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Use default PKG_BUILD_DIR when possibleJeffery To2019-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes lines that set PKG_BUILD_DIR when the set value is no different from the default value. Specifically, the line is removed if the assigned value is: * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT if it is set, so now this is identical to the default value. * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it the same as the previous case * $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) This is the same as the default PKG_BUILD_DIR when there is no BUILD_VARIANT. * $(BUILD_DIR)/[name]-$(PKG_VERSION) where [name] is a string that is identical to PKG_NAME [1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* bandwidthd: fix undefined references to inline functionsGuo Li2018-09-30
| | | | | | | | | | | | | | | | | | | | | | | | gcc-7 with -Os makes inline functions disappeard. It are caused by the new C11 inline semantics. pass option -fgnu89-inline to gcc let it use gnu inline semantics. see https://wiki.debian.org/GCC7#Porting_help bandwidthd.o: In function `RCDF_Load': bandwidthd.c:(.text+0xb33): undefined reference to `FindIp' bandwidthd.o: In function `PacketCallback': bandwidthd.c:(.text+0x11d0): undefined reference to `FindIp' bandwidthd.c:(.text+0x11e2): undefined reference to `Credit' bandwidthd.c:(.text+0x11ea): undefined reference to `FindIp' bandwidthd.c:(.text+0x11fc): undefined reference to `Credit' bandwidthd.c:(.text+0x1218): undefined reference to `FindIp' bandwidthd.c:(.text+0x122a): undefined reference to `Credit' bandwidthd.c:(.text+0x1232): undefined reference to `FindIp' bandwidthd.c:(.text+0x1244): undefined reference to `Credit' collect2: error: ld returned 1 exit status Makefile:20: recipe for target 'bandwidthd' failed make[4]: *** [bandwidthd] Error 1 Signed-off-by: Guo Li <uxgood.org@gmail.com>
* bandwidthd: Update to 2.0.1-35Rosen Penev2018-06-09
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* bandwidthd: update to 2.0.1-34, sqlite support and SMTP trackingJean-Michel Lacroix2017-01-01
| | | | | | | | Addition of sqlite storage Tracking of SMTP traffic instead of P2P traffic Based on NethServer bandwidthd implementation Signed-off-by: Jean-Michel lacroix <lacroix@lepine-lacroix.info>
* utils: Fix typos (found by codespell)Stefan Weil2016-03-26
| | | | Signed-off-by: Stefan Weil <sw@weilnetz.de>
* bandwidthd: fix build with gcc5Jean-Michel Lacroix2015-11-24
| | | | | | | | This is a small fix to allow the package to compile with gcc5 Addition of the -std=gnu89 CFLAGS. Small correction of the copyright date of file bandwidthd.init Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* bandwidthd: Addition of a variant of the bandwidthd package.Jean-Michel Lacroix2015-11-10
| | | | | | | | | | | | | | | Addition of the bandwidthd-pgsql package variant that can save also in a postgres database. Modification of bandwidthd.config to have the default IP address of an OpenWrt router (192.168.1.1) Addition of a small OpenWrt logo in the logo.gif Compile tested on CC and trunk (ar71xx and mvebu in both cases) run tested on CC (ar71xx) and trunk (r47397 on mvebu) Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
* Addition of bandwidthd from the oldpackagesJean-Michel Lacroix2015-10-14
Signed-off-by: Jean-Michel Lacroix lacroix@lepine-lacroix.info