Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Compile dnsdist with liblua for aarch64 and update master to upstream #76

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions net/dnsdist/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ define Package/dnsdist/Default
+libatomic \
+libcap \
+libstdcpp \
@HAS_LUAJIT_ARCH +luajit
$(if $(filter aarch64,$(ARCH)),+liblua,+luajit)
URL:=https://dnsdist.org/
VARIANT:=$(1)
PROVIDES:=dnsdist
Expand Down Expand Up @@ -147,7 +147,7 @@ TARGET_CXXFLAGS+=-Os -fvisibility=hidden -flto -fno-ipa-cp -DNDEBUG \

CONFIGURE_ARGS+= \
--with-pic \
--with-lua=luajit \
$(if $(filter aarch64,$(ARCH)),--with-lua,--with-lua=luajit) \
--with-libcap \
--without-xsk \
$(if $(call IsEnabled,DNSDIST_PIE),,--disable-hardening) \
Expand Down
Loading