8b3f257cd7
"The build failures of bandwidthd observed in the autobuilders in relation to libpng are caused by the usage of -L/usr/lib -L/usr/local/lib in the compiler flags, which leads the configure script to try to link against a host libpng library." These issues are fixed by: * Version bump to -r08 "[patched] the configure.ac script to remove the hardcoded -L/usr/local/lib and -I/usr/local/include. The bandwidthd package -was already autoreconfigured, so there is no need to add it." * "Adding the --without-x option, which ensures that the configure.ac script will not add -L/usr/lib to the compiler flags (and we anyway haven't added any sort of X.org support to bandwidthd for the moment)." Both fixes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
944 B
Makefile
35 lines
944 B
Makefile
################################################################################
|
|
#
|
|
# bandwidthd
|
|
#
|
|
################################################################################
|
|
|
|
BANDWIDTHD_VERSION = v2.0.1-auto-r08
|
|
BANDWIDTHD_SITE = $(call github,nroach44,bandwidthd,$(BANDWIDTHD_VERSION))
|
|
|
|
# Specified as "any version of the GPL that is current as of your
|
|
# download" by upstream.
|
|
BANDWIDTHD_LICENSE = GPL
|
|
|
|
BANDWIDTHD_DEPENDENCIES = gd libpng libpcap
|
|
|
|
BANDWIDTHD_AUTORECONF = YES
|
|
|
|
BANDWIDTHD_CONF_OPT += --without-x
|
|
|
|
ifeq ($(BR2_PACKAGE_BANDWIDTHD_POSTGRESQL),y)
|
|
BANDWIDTHD_DEPENDENCIES += postgresql
|
|
BANDWIDTHD_CONF_OPT += --with-postgresql-logging=true
|
|
else
|
|
BANDWIDTHD_CONF_OPT += --with-postgresql-logging=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BANDWIDTHD_SQLITE3),y)
|
|
BANDWIDTHD_DEPENDENCIES += sqlite
|
|
BANDWIDTHD_CONF_OPT += --with-sqlite-storage=true
|
|
else
|
|
BANDWIDTHD_CONF_OPT += --with-sqlite-storage=false
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|