diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-06 18:29:46 -0200 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-06 18:48:06 -0200 |
commit | 8e904792e9bffb18094beae8199cd15c723b0c8d (patch) | |
tree | 706b80bb20dc53e6dc84c1ec6193077652b165e1 /net/netatalk | |
parent | c4e8ff98c089b23a51304529bebaa56afe14d261 (diff) |
netatalk: don't use bundled libevent
libevent2 bundled with netatalk is not compatible with openssl 1.1.x.
The binary that links to it, netatalk, is not included in the final
package, so there's no dependency to add.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'net/netatalk')
-rw-r--r-- | net/netatalk/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/netatalk/Makefile b/net/netatalk/Makefile index 6cbae4dcc..6068020db 100644 --- a/net/netatalk/Makefile +++ b/net/netatalk/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=netatalk PKG_VERSION:=3.1.11 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@SF/netatalk @@ -19,6 +19,8 @@ PKG_BUILD_PARALLEL:=1 PKG_INSTALL:=1 PKG_FIXUP:=autoreconf +PKG_BUILD_DEPENDS:=libevent2 + include $(INCLUDE_DIR)/package.mk define Package/netatalk @@ -50,6 +52,7 @@ CONFIGURE_ARGS += \ --disable-tcp-wrappers \ --with-cnid-default-backend=dbd \ --with-bdb="$(STAGING_DIR)/usr/" \ + --with-libevent=no \ --with-libgcrypt-dir="$(STAGING_DIR)/usr" \ --with-ssl-dir="$(STAGING_DIR)/usr" \ --with-uams-path="/usr/lib/uams" \ |