6a20a98f4b
fcgiwrap's configure script appends -Werror to AM_CFLAGS, then use it to build the package. This is an issue when Buildroot supports a new compiler version and this version makes some warnings appear. Luckily, one can provide CFLAGS=-Wno-error to the configure script so it appends -Wno-error to AM_CFLAGS. Fixes: http://autobuild.buildroot.net/results/8e04bf5a85ecd7f120bc9dedeedc891def6c46c1/ Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
1015 B
Makefile
34 lines
1015 B
Makefile
################################################################################
|
|
#
|
|
# fcgiwrap
|
|
#
|
|
################################################################################
|
|
|
|
FCGIWRAP_VERSION = 99c942c90063c73734e56bacaa65f947772d9186
|
|
FCGIWRAP_SITE = $(call github,gnosek,fcgiwrap,$(FCGIWRAP_VERSION))
|
|
FCGIWRAP_DEPENDENCIES = host-pkgconf libfcgi
|
|
FCGIWRAP_LICENSE = MIT
|
|
FCGIWRAP_LICENSE_FILES = COPYING
|
|
FCGIWRAP_AUTORECONF = YES
|
|
FCGIWRAP_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -Wno-error"
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
FCGIWRAP_DEPENDENCIES += systemd
|
|
FCGIWRAP_CONF_OPTS += --with-systemd
|
|
else
|
|
FCGIWRAP_CONF_OPTS += --without-systemd
|
|
endif
|
|
|
|
# libfcgi needs libm and fcgiwrap does not use libtool or pkgconf to
|
|
# detect libfcgi, so we need to add -lm explicitely when using static
|
|
# libs.
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
FCGIWRAP_CONF_OPTS += LIBS=-lm
|
|
endif
|
|
|
|
# fcgiwrap uses Autoconf, but not Automake, so we need to provide
|
|
# these to make.
|
|
FCGIWRAP_MAKE_ENV = $(TARGET_CONFIGURE_OPTS)
|
|
|
|
$(eval $(autotools-package))
|