mdnsresponder: move libdns_sd into own directory
Prevents conflicts with avahi, which is better maintained. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
90d12de8fc
commit
e0c85eb485
1 changed files with 9 additions and 9 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=mDNSResponder
|
PKG_NAME:=mDNSResponder
|
||||||
PKG_VERSION:=IETF104
|
PKG_VERSION:=IETF104
|
||||||
PKG_RELEASE:=5
|
PKG_RELEASE:=6
|
||||||
|
|
||||||
PKG_SOURCE:=mDNSResponder-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=mDNSResponder-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://opensource.apple.com/tarballs/mDNSResponder/IETF/
|
PKG_SOURCE_URL:=https://opensource.apple.com/tarballs/mDNSResponder/IETF/
|
||||||
|
@ -121,11 +121,11 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include/mdns
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/dns_sd.h $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/dns_sd.h $(1)/usr/include/mdns
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib/mdns
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdns_sd.so.1 $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdns_sd.so.1 $(1)/usr/lib/mdns
|
||||||
$(LN) -s libdns_sd.so.1 $(1)/usr/lib/libdns_sd.so
|
$(LN) -s libdns_sd.so.1 $(1)/usr/lib/mdns/libdns_sd.so
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/mdns-utils/install
|
define Package/mdns-utils/install
|
||||||
|
@ -152,9 +152,9 @@ define Package/mdnsd/install
|
||||||
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
$(INSTALL_BIN) ./files/mdnsd.init $(1)/etc/init.d/mdnsd
|
$(INSTALL_BIN) ./files/mdnsd.init $(1)/etc/init.d/mdnsd
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/
|
$(INSTALL_DIR) $(1)/usr/lib/mdns
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdns_sd.so.1 $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdns_sd.so.1 $(1)/usr/lib/mdns
|
||||||
$(LN) -s libdns_sd.so.1 $(1)/usr/lib/libdns_sd.so
|
$(LN) -s libdns_sd.so.1 $(1)/usr/lib/mdns/libdns_sd.so
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/mdnsresponder/install
|
define Package/mdnsresponder/install
|
||||||
|
|
Loading…
Reference in a new issue