fix atftp/atftpd dependencies, explicitly disable libwrap support

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6045 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-01-09 14:26:10 +00:00
parent 6e6d138cd3
commit 0d65b9bccb

View File

@ -20,6 +20,8 @@ TAR_OPTIONS += || true
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_BUILDEP:=ncurses pcre readline
include $(INCLUDE_DIR)/package.mk
define Package/atftp/Default
@ -31,13 +33,13 @@ endef
define Package/atftp
$(call Package/atftp/Default)
DEPENDS:=+libreadline +libpcre +libncurses
DEPENDS:=+libreadline +libncurses
TITLE+= client
endef
define Package/atftpd
$(call Package/atftp/Default)
DEPENDS:=+libreadline +libpcre +libpthread
DEPENDS:=+libpcre +libpthread
TITLE+= server
endef
@ -52,7 +54,11 @@ if [ $$? -ne 0 ]; then
fi
endef
# uses GNU configure
define Build/Configure
$(call Build/Configure/Default, \
--disable-libwrap \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \