diff options
author | Johannes Kauffmann <johanneskauffmann@hotmail.com> | 2023-06-13 09:28:32 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-06-14 09:41:35 -0700 |
commit | f8f47d573226cb8f6107d1c5b37ce33a1674be4b (patch) | |
tree | ae43b7b2ecb0715fdb4e5afe859b776e354b994f | |
parent | d613875f540f724156755b6d0629ba3cdd2261af (diff) | |
download | meta-openembedded-f8f47d573226cb8f6107d1c5b37ce33a1674be4b.tar.gz |
open62541: allow disabling subscriptions
By default, subscriptions are turned on.
Signed-off-by: Johannes Kauffmann <johanneskauffmann@hotmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-protocols/opcua/open62541_1.3.6.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-networking/recipes-protocols/opcua/open62541_1.3.6.bb b/meta-networking/recipes-protocols/opcua/open62541_1.3.6.bb index 26b738b57c..c7437eb9ed 100644 --- a/meta-networking/recipes-protocols/opcua/open62541_1.3.6.bb +++ b/meta-networking/recipes-protocols/opcua/open62541_1.3.6.bb | |||
@@ -32,13 +32,15 @@ EXTRA_OECMAKE += "\ | |||
32 | -DCMAKE_BUILD_TYPE=RelWithDebInfo \ | 32 | -DCMAKE_BUILD_TYPE=RelWithDebInfo \ |
33 | " | 33 | " |
34 | 34 | ||
35 | PACKAGECONFIG ?= "encryption-mbedtls pubsub pubsub-eth" | 35 | PACKAGECONFIG ?= "encryption-mbedtls pubsub pubsub-eth subscriptions subscriptions-events" |
36 | PACKAGECONFIG[amalgamation] = "-DUA_ENABLE_AMALGAMATION=ON, -DUA_ENABLE_AMALGAMATION=OFF" | 36 | PACKAGECONFIG[amalgamation] = "-DUA_ENABLE_AMALGAMATION=ON, -DUA_ENABLE_AMALGAMATION=OFF" |
37 | PACKAGECONFIG[encryption-mbedtls] = "-DUA_ENABLE_ENCRYPTION=MBEDTLS, , mbedtls, , , encryption-openssl" | 37 | PACKAGECONFIG[encryption-mbedtls] = "-DUA_ENABLE_ENCRYPTION=MBEDTLS, , mbedtls, , , encryption-openssl" |
38 | PACKAGECONFIG[encryption-openssl] = "-DUA_ENABLE_ENCRYPTION=OPENSSL, , openssl, , , encryption-mbedtls" | 38 | PACKAGECONFIG[encryption-openssl] = "-DUA_ENABLE_ENCRYPTION=OPENSSL, , openssl, , , encryption-mbedtls" |
39 | PACKAGECONFIG[multithreading] = "-DUA_MULTITHREADING=100, -DUA_MULTITHREADING=0" | 39 | PACKAGECONFIG[multithreading] = "-DUA_MULTITHREADING=100, -DUA_MULTITHREADING=0" |
40 | PACKAGECONFIG[pubsub] = "-DUA_ENABLE_PUBSUB=ON, -DUA_ENABLE_PUBSUB=OFF" | 40 | PACKAGECONFIG[pubsub] = "-DUA_ENABLE_PUBSUB=ON, -DUA_ENABLE_PUBSUB=OFF" |
41 | PACKAGECONFIG[pubsub-eth] = "-DUA_ENABLE_PUBSUB_ETH_UADP=ON, -DUA_ENABLE_PUBSUB_ETH_UADP=OFF" | 41 | PACKAGECONFIG[pubsub-eth] = "-DUA_ENABLE_PUBSUB_ETH_UADP=ON, -DUA_ENABLE_PUBSUB_ETH_UADP=OFF" |
42 | PACKAGECONFIG[subscriptions] = "-DUA_ENABLE_SUBSCRIPTIONS=ON, -DUA_ENABLE_SUBSCRIPTIONS=OFF" | ||
43 | PACKAGECONFIG[subscriptions-events] = "-DUA_ENABLE_SUBSCRIPTIONS_EVENTS=ON, -DUA_ENABLE_SUBSCRIPTIONS_EVENTS=OFF" | ||
42 | PACKAGECONFIG[werror] = "-DUA_FORCE_WERROR=ON, -DUA_FORCE_WERROR=OFF" | 44 | PACKAGECONFIG[werror] = "-DUA_FORCE_WERROR=ON, -DUA_FORCE_WERROR=OFF" |
43 | 45 | ||
44 | do_configure:prepend:toolchain-clang:riscv64() { | 46 | do_configure:prepend:toolchain-clang:riscv64() { |