d254925623
udpcast was checking the (non-existing) BR_LARGEFILE variable to know if it should enable stat64 or not, but the package itself depends on largefile support and more importantly, configure doesn't look at this variable at all, so we can just drop it. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
795 B
Makefile
30 lines
795 B
Makefile
################################################################################
|
|
#
|
|
# udpcast
|
|
#
|
|
################################################################################
|
|
|
|
UDPCAST_VERSION = 20120424
|
|
UDPCAST_SITE = http://www.udpcast.linux.lu/download
|
|
UDPCAST_DEPENDENCIES = host-m4
|
|
|
|
define UDPCAST_REMOVE_UDP_SENDER
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-sender
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-sender.1
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_UDPCAST_SENDER),y)
|
|
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_SENDER
|
|
endif
|
|
|
|
define UDPCAST_REMOVE_UDP_RECEIVER
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver
|
|
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver.1
|
|
endef
|
|
|
|
ifneq ($(BR2_PACKAGE_UDPCAST_RECEIVER),y)
|
|
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_RECEIVER
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|