mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
4326f0020d
Fix the way libfcgi++ is linked against libfcgi to solve the http://autobuild.buildroot.org/results/f8e88e93f32e4e94ac9aef5a3f3f2826f1970453/build-end.log build problem. Since we're fixing Makefile.am, take that opportunity to add -lm where needed, to avoid the need of using custom LDFLAGS in libfcgi.mk. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 lines
371 B
Makefile
13 lines
371 B
Makefile
##############################################################################
|
|
#
|
|
# libfcgi
|
|
#
|
|
##############################################################################
|
|
LIBFCGI_VERSION = 2.4.0
|
|
LIBFCGI_SOURCE = fcgi-$(LIBFCGI_VERSION).tar.gz
|
|
LIBFCGI_SITE = http://www.fastcgi.com/dist
|
|
LIBFCGI_INSTALL_STAGING = YES
|
|
LIBFCGI_AUTORECONF = YES
|
|
|
|
$(eval $(call AUTOTARGETS))
|