7d93e2bfa1
minidlna has long standing issues with static-only builds: http://patchwork.ozlabs.org/patch/501844/ http://patchwork.ozlabs.org/patch/506310/ This patch fixes http://autobuild.buildroot.net/results/d73/d7370d0f8d1c7c028996feab0ea4f36edbf8a698/ http://autobuild.buildroot.net/results/575/5752be7c1820579425ba24178482ab0d6eea7b62/ "pack_utils.c:(.text+0x9a8): multiple definition of `free_metadata'" The multiple definition can be fixed of course but instead of digging deeper and deeper into this mess let's disable static builds. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# minidlna
|
|
#
|
|
################################################################################
|
|
|
|
MINIDLNA_VERSION = 1.1.5
|
|
MINIDLNA_SITE = http://downloads.sourceforge.net/project/minidlna/minidlna/$(MINIDLNA_VERSION)
|
|
MINIDLNA_LICENSE = GPLv2, BSD-3c
|
|
MINIDLNA_LICENSE_FILES = COPYING LICENCE.miniupnpd
|
|
|
|
MINIDLNA_DEPENDENCIES = \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-gettext \
|
|
ffmpeg flac libvorbis libogg libid3tag libexif jpeg sqlite \
|
|
host-xutil_makedepend
|
|
|
|
MINIDLNA_CONF_OPTS = \
|
|
--disable-static
|
|
|
|
define MINIDLNA_INSTALL_CONF
|
|
$(INSTALL) -D -m 644 $(@D)/minidlna.conf $(TARGET_DIR)/etc/minidlna.conf
|
|
endef
|
|
|
|
MINIDLNA_POST_INSTALL_TARGET_HOOKS += MINIDLNA_INSTALL_CONF
|
|
|
|
define MINIDLNA_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/minidlna/S60minidlnad \
|
|
$(TARGET_DIR)/etc/init.d/S60minidlnad
|
|
endef
|
|
|
|
define MINIDLNA_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 0755 package/minidlna/minidlnad.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/minidlnad.service
|
|
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
|
|
ln -fs ../../../../usr/lib/systemd/system/minidlnad.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/minidlnad.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|