40d4df2156
Removes patch for upstream commit d677b564c2193a5cd381925c2eeaad6b23c6af2f Adds hash for license file. Adds patch to fix a build error encountered by br-mips64-n64-full toolchain about uintptr_t being declared twice. Signed-off-by: Joel Carlson <JoelsonCarl@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
666 B
Makefile
24 lines
666 B
Makefile
################################################################################
|
|
#
|
|
# cmocka
|
|
#
|
|
################################################################################
|
|
|
|
CMOCKA_VERSION = 1.1.3
|
|
CMOCKA_SOURCE = cmocka-$(CMOCKA_VERSION).tar.xz
|
|
CMOCKA_SITE = https://cmocka.org/files/1.1
|
|
CMOCKA_LICENSE = Apache-2.0
|
|
CMOCKA_LICENSE_FILES = COPYING
|
|
CMOCKA_INSTALL_STAGING = YES
|
|
|
|
# cmocka only supports out of source builds
|
|
CMOCKA_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
# cmocka always builds a shared library, but you can optionally build a static
|
|
# library as well
|
|
ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
CMOCKA_CONF_OPTS += -DWITH_STATIC_LIB=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|