Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

icecast: update openssl #6379

Merged
merged 2 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cross/ezstream/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ COMMENT = EZStream is a command line source client for Icecast media streaming
LICENSE = GPLv2

GNU_CONFIGURE = 1
ADDITIONAL_CFLAGS = -O
ADDITIONAL_CFLAGS = -Os

include ../../mk/spksrc.cross-cc.mk
4 changes: 2 additions & 2 deletions cross/icecast/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
PKG_DIST_SITE = https://ftp.osuosl.org/pub/xiph/releases/icecast
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)

DEPENDS = cross/libxml2 cross/libxslt cross/openssl cross/curl cross/libvorbis cross/speex cross/libtheora cross/ezstream
DEPENDS = cross/libxml2 cross/libxslt cross/openssl3 cross/curl cross/libvorbis cross/speex cross/libtheora cross/ezstream

HOMEPAGE = https://www.icecast.org
COMMENT = Icecast is a streaming media server which currently supports Ogg (Vorbis and Theora), Opus, WebM and MP3 audio streams.
Expand All @@ -15,7 +15,7 @@ GNU_CONFIGURE = 1
POST_INSTALL_TARGET = icecast_extra_install

CONFIGURE_ARGS = --with-xslt-config=$(STAGING_INSTALL_PREFIX)/bin/xslt-config
ADDITIONAL_CFLAGS = -O
ADDITIONAL_CFLAGS = -Os
ADDITIONAL_CFLAGS += -I$(STAGING_INSTALL_PREFIX)/include/libxml2

include ../../mk/spksrc.cross-cc.mk
Expand Down
4 changes: 2 additions & 2 deletions cross/libshout/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT)
PKG_DIST_SITE = https://ftp.osuosl.org/pub/xiph/releases/libshout
PKG_DIR = $(PKG_NAME)-$(PKG_VERS)

DEPENDS = cross/openssl cross/libvorbis cross/libogg cross/speex cross/libtheora
DEPENDS = cross/openssl3 cross/libvorbis cross/libogg cross/speex cross/libtheora

HOMEPAGE = https://icecast.org/
COMMENT = Libshout is a library for communicating with and sending data to an icecast server.
LICENSE = LGPL

GNU_CONFIGURE = 1
CONFIGURE_ARGS = --disable-static --disable-examples --disable-tools
ADDITIONAL_CFLAGS = -O
ADDITIONAL_CFLAGS = -Os

include ../../mk/spksrc.cross-cc.mk
2 changes: 1 addition & 1 deletion cross/libtheora/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ GNU_CONFIGURE = 1
CONFIGURE_ARGS = --disable-static
CONFIGURE_ARGS += --disable-examples
CONFIGURE_ARGS += --disable-spec
ADDITIONAL_CFLAGS = -O
ADDITIONAL_CFLAGS = -Os

include ../../mk/spksrc.cross-cc.mk
2 changes: 1 addition & 1 deletion cross/speex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ LICENSE = BSD

GNU_CONFIGURE = 1
CONFIGURE_ARGS = --disable-static
ADDITIONAL_CFLAGS = -O
ADDITIONAL_CFLAGS = -Os

include ../../mk/spksrc.cross-cc.mk
12 changes: 6 additions & 6 deletions spk/icecast/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
SPK_NAME = icecast
SPK_VERS = 2.4.4
SPK_REV = 7
SPK_REV = 8
SPK_ICON = src/icecast.png
DSM_UI_DIR = app

DEPENDS = cross/$(SPK_NAME)
DEPENDS = cross/icecast

MAINTAINER = SynoCommunity
DESCRIPTION = Icecast is a streaming media server which currently supports Ogg \(Vorbis and Theora\), Opus, WebM and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. It is very versatile in that new formats can be added relatively easily and supports open standards for communication and interaction. This package includes Ezstream, a command line source client for Icecast media streaming servers.
CHANGELOG = "1. Update openssl to v1.1.1p.<br/>2. Update to libcurl of curl v7.83.1."
CHANGELOG = "1. Update openssl to v3.1.7. <br/>2. Update to libcurl of curl v8.4.0. <br/>3. Update taglib to v1.13.1."
DISPLAY_NAME = Icecast2

HOMEPAGE = https://www.icecast.org/
Expand All @@ -32,6 +32,6 @@ include ../../mk/spksrc.spk.mk

.PHONY: icecast_extra_install
icecast_extra_install:
install -m 755 -d $(STAGING_DIR)/var/log
install -m 644 src/icecast.xml $(STAGING_DIR)/var/icecast.xml
install -m 644 src/mime.types $(STAGING_DIR)/var/mime.types
@install -m 755 -d $(STAGING_DIR)/var/log
@install -m 644 src/icecast.xml $(STAGING_DIR)/var/icecast.xml
@install -m 644 src/mime.types $(STAGING_DIR)/var/mime.types
Loading