* [Buildroot] [PATCH 1/1] package/rtty: bump to version 8.1.0
@ 2023-02-25 12:30 Fabrice Fontaine
2023-02-25 21:02 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2023-02-25 12:30 UTC (permalink / raw)
To: buildroot; +Cc: Jianhui Zhao, Fabrice Fontaine
This bump will fix the following build failure with wolfssl raised, at
least, since bump of wolfssl to version 5.5.0 in commit
1891419db38e4d85595b2111db448f68eef684b8:
/tmp/instance-18/output-1/build/rtty-7.4.0/src/ssl.c:75:5: error: unknown type name 'SSL_CTX'
75 | SSL_CTX *ctx;
| ^~~~~~~
https://github.com/zhaojh329/rtty/compare/v7.4.0...v8.1.0
Fixes:
- http://autobuild.buildroot.org/results/d045d85890ca97accfcea6c13c94757485d867c2
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/rtty/rtty.hash | 2 +-
package/rtty/rtty.mk | 28 ++++++++++++++--------------
2 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/package/rtty/rtty.hash b/package/rtty/rtty.hash
index b2e9db2436..a6ccb5c2e6 100644
--- a/package/rtty/rtty.hash
+++ b/package/rtty/rtty.hash
@@ -1,2 +1,2 @@
-sha256 9bc5d30dfa9bd664a62711b6229f47505b83adb364907f24e3a404aad52a4802 rtty-7.4.0.tar.gz
+sha256 e634939bae62bf3d52ceebae5df00179629d214634b93464eeb2294406512b30 rtty-8.1.0.tar.gz
sha256 99efed4bbc0b62f96f999ef23399e38234fb91651af734fd389a52b033a85b55 LICENSE
diff --git a/package/rtty/rtty.mk b/package/rtty/rtty.mk
index 4ec220394c..964ec04ec4 100644
--- a/package/rtty/rtty.mk
+++ b/package/rtty/rtty.mk
@@ -4,7 +4,7 @@
#
################################################################################
-RTTY_VERSION = 7.4.0
+RTTY_VERSION = 8.1.0
RTTY_SITE = https://github.com/zhaojh329/rtty/releases/download/v$(RTTY_VERSION)
RTTY_LICENSE = MIT
RTTY_LICENSE_FILES = LICENSE
@@ -13,26 +13,26 @@ RTTY_DEPENDENCIES = libev
ifeq ($(BR2_PACKAGE_MBEDTLS),y)
RTTY_DEPENDENCIES += mbedtls
RTTY_CONF_OPTS += \
- -DRTTY_SSL_SUPPORT=ON \
- -DRTTY_USE_MBEDTLS=ON \
- -DRTTY_USE_OPENSSL=OFF \
- -DRTTY_USE_WOLFSSL=OFF
+ -DSSL_SUPPORT=ON \
+ -DUSE_MBEDTLS=ON \
+ -DUSE_OPENSSL=OFF \
+ -DUSE_WOLFSSL=OFF
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
RTTY_DEPENDENCIES += host-pkgconf openssl
RTTY_CONF_OPTS += \
- -DRTTY_SSL_SUPPORT=ON \
- -DRTTY_USE_MBEDTLS=OFF \
- -DRTTY_USE_OPENSSL=ON \
- -DRTTY_USE_WOLFSSL=OFF
+ -DSSL_SUPPORT=ON \
+ -DUSE_MBEDTLS=OFF \
+ -DUSE_OPENSSL=ON \
+ -DUSE_WOLFSSL=OFF
else ifeq ($(BR2_PACKAGE_WOLFSSL),y)
RTTY_DEPENDENCIES += wolfssl
RTTY_CONF_OPTS += \
- -DRTTY_SSL_SUPPORT=ON \
- -DRTTY_USE_MBEDTLS=OFF \
- -DRTTY_USE_OPENSSL=OFF \
- -DRTTY_USE_WOLFSSL=ON
+ -DSSL_SUPPORT=ON \
+ -DUSE_MBEDTLS=OFF \
+ -DUSE_OPENSSL=OFF \
+ -DUSE_WOLFSSL=ON
else
-RTTY_CONF_OPTS += -DRTTY_SSL_SUPPORT=OFF
+RTTY_CONF_OPTS += -DSSL_SUPPORT=OFF
endif
$(eval $(cmake-package))
--
2.39.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [Buildroot] [PATCH 1/1] package/rtty: bump to version 8.1.0
2023-02-25 12:30 [Buildroot] [PATCH 1/1] package/rtty: bump to version 8.1.0 Fabrice Fontaine
@ 2023-02-25 21:02 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-02-25 21:02 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Jianhui Zhao, buildroot
On Sat, 25 Feb 2023 13:30:22 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> This bump will fix the following build failure with wolfssl raised, at
> least, since bump of wolfssl to version 5.5.0 in commit
> 1891419db38e4d85595b2111db448f68eef684b8:
>
> /tmp/instance-18/output-1/build/rtty-7.4.0/src/ssl.c:75:5: error: unknown type name 'SSL_CTX'
> 75 | SSL_CTX *ctx;
> | ^~~~~~~
>
> https://github.com/zhaojh329/rtty/compare/v7.4.0...v8.1.0
>
> Fixes:
> - http://autobuild.buildroot.org/results/d045d85890ca97accfcea6c13c94757485d867c2
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/rtty/rtty.hash | 2 +-
> package/rtty/rtty.mk | 28 ++++++++++++++--------------
> 2 files changed, 15 insertions(+), 15 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-25 21:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-25 12:30 [Buildroot] [PATCH 1/1] package/rtty: bump to version 8.1.0 Fabrice Fontaine
2023-02-25 21:02 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox