aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
949 B
Makefile
35 lines
949 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_OPTS += --without-x
|
|
|
|
ifeq ($(BR2_PACKAGE_BANDWIDTHD_POSTGRESQL),y)
|
|
BANDWIDTHD_DEPENDENCIES += postgresql
|
|
BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=true
|
|
else
|
|
BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BANDWIDTHD_SQLITE3),y)
|
|
BANDWIDTHD_DEPENDENCIES += sqlite
|
|
BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=true
|
|
else
|
|
BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=false
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|