summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/libptytty
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-sato/libptytty
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/libptytty')
-rw-r--r--meta/recipes-sato/libptytty/libptytty/0001-CMakeLists.txt-do-not-run-cross-binary.patch24
-rw-r--r--meta/recipes-sato/libptytty/libptytty_2.0.bb13
2 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-sato/libptytty/libptytty/0001-CMakeLists.txt-do-not-run-cross-binary.patch b/meta/recipes-sato/libptytty/libptytty/0001-CMakeLists.txt-do-not-run-cross-binary.patch
deleted file mode 100644
index d3a458f100..0000000000
--- a/meta/recipes-sato/libptytty/libptytty/0001-CMakeLists.txt-do-not-run-cross-binary.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From 989ae1f3651686c1f1046fe1c1596d564c3f452d Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Mon, 13 Dec 2021 14:33:01 +0100
4Subject: [PATCH] CMakeLists.txt: do not run cross-binary
5
6Upstream-Status: Inappropriate [issue reported at https://github.com/yusiwen/libptytty/issues/2]
7Signed-off-by: Alexander Kanavin <alex@linutronix.de>
8---
9 CMakeLists.txt | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/CMakeLists.txt b/CMakeLists.txt
13index c1ad6c0..3bd4d97 100644
14--- a/CMakeLists.txt
15+++ b/CMakeLists.txt
16@@ -271,7 +271,7 @@ if(NOT HAVE_UNIX_FDPASS)
17 message(FATAL_ERROR "libptytty requires unix-compliant filehandle passing ability")
18 endif()
19
20-check_c_source_runs(
21+check_c_source_compiles(
22 "
23 #include <grp.h>
24 #include <sys/stat.h>
diff --git a/meta/recipes-sato/libptytty/libptytty_2.0.bb b/meta/recipes-sato/libptytty/libptytty_2.0.bb
deleted file mode 100644
index 1199f0f44b..0000000000
--- a/meta/recipes-sato/libptytty/libptytty_2.0.bb
+++ /dev/null
@@ -1,13 +0,0 @@
1SUMMARY = " OS independent and secure pty/tty and utmp/wtmp/lastlog handling"
2HOMEPAGE = "http://software.schmorp.de/pkg/libptytty.html"
3LICENSE = "GPL-2.0-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
5
6SRC_URI = "http://dist.schmorp.de/libptytty/libptytty-${PV}.tar.gz \
7 file://0001-CMakeLists.txt-do-not-run-cross-binary.patch \
8 "
9SRC_URI[sha256sum] = "8033ed3aadf28759660d4f11f2d7b030acf2a6890cb0f7926fb0cfa6739d31f7"
10
11inherit cmake
12
13EXTRA_OECMAKE:append:libc-musl = " -DWTMP_SUPPORT=OFF"