From fdc429fdbc4c4f88104ee76af1e31a445bb44d80 Mon Sep 17 00:00:00 2001 From: Eneas U de Queiroz Date: Tue, 20 Dec 2022 10:01:29 -0300 Subject: [PATCH] icecast: add libxml2 include directory Fixes this error: cfgfile.c:26:10: fatal error: libxml/xmlmemory.h: No such file or directory 26 | #include | ^~~~~~~~~~~~~~~~~~~~ Signed-off-by: Eneas U de Queiroz --- multimedia/icecast/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/multimedia/icecast/Makefile b/multimedia/icecast/Makefile index 5d83bbdf78..544ea3cabf 100644 --- a/multimedia/icecast/Makefile +++ b/multimedia/icecast/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icecast PKG_VERSION:=2.4.4 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://downloads.xiph.org/releases/icecast/ @@ -55,6 +55,7 @@ CONFIGURE_ARGS+= \ --with-vorbis="$(STAGING_DIR)/usr" \ --with-xslt-config="$(STAGING_DIR)/usr/bin/xslt-config" +TARGET_CFLAGS+= -I$(STAGING_DIR)/usr/include/libxml2 # Manually edit configure in case both vorbis and tremor host packages are installed define Build/Configure