diff --git a/Config.in.legacy b/Config.in.legacy index c749f1366b..e97378734e 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -146,6 +146,14 @@ endif comment "Legacy options removed in 2025.11" +config BR2_PACKAGE_ORTP + bool "ortp has been removed" + select BR2_LEGACY + help + This package has been removed as part of the linphone + removal. In addition, newer version of linphone directly + bundle ortp making a separate package unnecessary. + config BR2_PACKAGE_MEDIASTREAMER bool "mediastreamer has been removed" select BR2_LEGACY diff --git a/package/Config.in b/package/Config.in index 5d5b9ed722..54abbacbb8 100644 --- a/package/Config.in +++ b/package/Config.in @@ -2129,7 +2129,6 @@ menu "Networking" source "package/openmpi/Config.in" source "package/openpgm/Config.in" source "package/openzwave/Config.in" - source "package/ortp/Config.in" source "package/paho-mqtt-c/Config.in" source "package/paho-mqtt-cpp/Config.in" source "package/pistache/Config.in" diff --git a/package/ortp/Config.in b/package/ortp/Config.in deleted file mode 100644 index e296e82f7a..0000000000 --- a/package/ortp/Config.in +++ /dev/null @@ -1,16 +0,0 @@ -config BR2_PACKAGE_ORTP - bool "oRTP" - depends on BR2_INSTALL_LIBSTDCPP - depends on BR2_TOOLCHAIN_HAS_THREADS - depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # bctoolbox - select BR2_PACKAGE_BCTOOLBOX - help - oRTP, a Real-time Transport Protocol (RTP,RFC3550) library - - https://www.linphone.org/technical-corner/ortp - -comment "ortp needs a toolchain w/ C++, threads" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS - -comment "ortp needs a toolchain not affected by GCC bug 64735" - depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 diff --git a/package/ortp/ortp.hash b/package/ortp/ortp.hash deleted file mode 100644 index 7853c63143..0000000000 --- a/package/ortp/ortp.hash +++ /dev/null @@ -1,3 +0,0 @@ -# Locally calculated -sha256 9b1d43f676a35920e2837abc0eb4d600d4d3e47d2621fa3b0897777cf587ee8d ortp-4.4.8.tar.gz -sha256 1b3782ccad7b8614100cda30d3faf42fc39f2e97932908c543005053b654ca68 LICENSE.txt diff --git a/package/ortp/ortp.mk b/package/ortp/ortp.mk deleted file mode 100644 index 67bef9aebb..0000000000 --- a/package/ortp/ortp.mk +++ /dev/null @@ -1,25 +0,0 @@ -################################################################################ -# -# ortp -# -################################################################################ - -ORTP_VERSION = 4.4.8 -ORTP_SITE = https://gitlab.linphone.org/BC/public/ortp/-/archive/$(ORTP_VERSION) -ORTP_LICENSE = GPL-3.0+ -ORTP_LICENSE_FILES = LICENSE.txt -ORTP_INSTALL_STAGING = YES -ORTP_DEPENDENCIES = bctoolbox -ORTP_CONF_OPTS = \ - -DENABLE_DOC=OFF \ - -DENABLE_STRICT=OFF - -ifeq ($(BR2_STATIC_LIBS),y) -ORTP_CONF_OPTS += -DENABLE_STATIC=ON -DENABLE_SHARED=OFF -else ifeq ($(BR2_SHARED_STATIC_LIBS),y) -ORTP_CONF_OPTS += -DENABLE_STATIC=ON -DENABLE_SHARED=ON -else ifeq ($(BR2_SHARED_LIBS),y) -ORTP_CONF_OPTS += -DENABLE_STATIC=OFF -DENABLE_SHARED=ON -endif - -$(eval $(cmake-package))