1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
# SPDX-FileCopyrightText: 2013 Stefano Babic <stefano.babic@swupdate.org>
#
# SPDX-License-Identifier: GPL-2.0-only
ifeq ($(HAVE_LUA),)
export HAVE_LUA = y
endif
ifeq ($(HAVE_LIBCONFIG),)
export HAVE_LIBCONFIG = y
endif
ifeq ($(HAVE_LIBARCHIVE),)
export HAVE_LIBARCHIVE = y
endif
ifeq ($(HAVE_LIBCURL),)
export HAVE_LIBCURL = y
endif
ifeq ($(HAVE_LIBFDISK),)
export HAVE_LIBFDISK = y
endif
ifeq ($(HAVE_LIBBLKID),)
export HAVE_LIBBLKID = y
endif
ifeq ($(HAVE_LIBGPIOD),)
export HAVE_LIBGPIOD = y
endif
ifeq ($(HAVE_LIBMTD),)
ifeq ($(HAVE_LINUX),y)
export HAVE_LIBMTD = y
else
export HAVE_LIBMTD = n
endif
endif
ifeq ($(HAVE_LIBUBI),)
export HAVE_LIBUBI = y
endif
ifeq ($(HAVE_LIBUBOOTENV),)
export HAVE_LIBUBOOTENV = y
endif
ifeq ($(HAVE_LIBEBGENV),)
export HAVE_LIBEBGENV = y
endif
ifeq ($(HAVE_LIBTEGRABOOT_TOOLS),)
export HAVE_LIBTEGRABOOT_TOOLS = y
endif
ifeq ($(HAVE_LIBZEROMQ),)
export HAVE_LIBZEROMQ = y
endif
ifeq ($(HAVE_ZLIB),)
export HAVE_ZLIB = y
endif
ifeq ($(HAVE_ZSTD),)
export HAVE_ZSTD = y
endif
ifeq ($(HAVE_LIBEXT2FS),)
export HAVE_LIBEXT2FS = y
endif
ifeq ($(HAVE_LIBBTRFS),)
export HAVE_LIBBTRFS = y
endif
ifeq ($(HAVE_LIBSSL),)
export HAVE_LIBSSL = y
endif
ifeq ($(HAVE_LIBSYSTEMD),)
ifeq ($(HAVE_LINUX),y)
export HAVE_LIBSYSTEMD = y
else
export HAVE_LIBSYSTEMD = n
endif
endif
ifeq ($(HAVE_LIBCRYPTO),)
export HAVE_LIBCRYPTO = y
endif
ifeq ($(HAVE_WOLFSSL),)
export HAVE_WOLFSSL = y
endif
ifeq ($(HAVE_MBEDTLS),)
export HAVE_MBEDTLS = y
endif
ifeq ($(HAVE_P11KIT),)
export HAVE_P11KIT = y
endif
ifeq ($(HAVE_LIBWEBSOCKETS),)
export HAVE_LIBWEBSOCKETS = y
endif
ifeq ($(HAVE_LIBRSYNC),)
export HAVE_LIBRSYNC = y
endif
ifeq ($(HAVE_URIPARSER),)
export HAVE_URIPARSER = y
endif
ifeq ($(HAVE_ZCK),)
export HAVE_ZCK = y
endif
|