mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Release Notes: https://sourceforge.net/p/liblo/git/ci/master/tree/NEWS Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
594 B
Makefile
21 lines
594 B
Makefile
################################################################################
|
|
#
|
|
# liblo
|
|
#
|
|
################################################################################
|
|
|
|
LIBLO_VERSION = 0.36
|
|
LIBLO_SITE = http://downloads.sourceforge.net/project/liblo/liblo/$(LIBLO_VERSION)
|
|
|
|
LIBLO_LICENSE = LGPL-2.1+
|
|
LIBLO_LICENSE_FILES = COPYING
|
|
LIBLO_INSTALL_STAGING = YES
|
|
|
|
# Liblo uses atomic builtins, so we need to link with libatomic for
|
|
# the architectures who explicitly need libatomic.
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
LIBLO_CONF_ENV += LIBS="-latomic"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|