mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-14 13:01:11 +00:00
Reinstate and rework patches from @garmin.com dropped in 21afab4609d0
("mdns: update to version 1096.40.7") as these were the functional
pieces of this series; we should either maintain it as a whole or drop
it in its entirety. With this update and without this series,
steady-state operation is a constant churn of all names being removed
and re-added every few seconds. These were refactored to handle the move
to getifaddrs() from get_ifi_info().
Check and cleanup all the other patches, much of which was redundant.
Move source releases to github which is where the Apple site now
redirects to (though these are still effectively just tarball dumps into
git).
Cleanup the recipe so it doesn't override all the packaging defaults.
Fixup musl installs so they don't fail attempting to patch a
non-existent /etc/nsswitch.conf.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
631 B
Diff
26 lines
631 B
Diff
From fa9ef50ab4c4225cf3ade4bafc38ddf93e6fe127 Mon Sep 17 00:00:00 2001
|
|
From: Alex Kiernan <alex.kiernan@gmail.com>
|
|
Date: Tue, 6 Dec 2022 13:28:31 +0000
|
|
Subject: [PATCH 6/6] make: Add top-level Makefile
|
|
|
|
Simple top level Makefile that just delegates to mDNSPosix.
|
|
|
|
Upstream-Status: Inappropriate [oe-specific]
|
|
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
|
|
---
|
|
Makefile | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
create mode 100644 Makefile
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
new file mode 100644
|
|
index 000000000000..feb6ac67ef47
|
|
--- /dev/null
|
|
+++ b/Makefile
|
|
@@ -0,0 +1,2 @@
|
|
+all clean:
|
|
+ cd mDNSPosix && $(MAKE) $@
|
|
--
|
|
2.35.1
|
|
|