vsftpd: fix compilation with musl 1.2.4

This commit is contained in:
coolsnowwolf 2024-03-26 02:06:41 +08:00
parent 86abbb7834
commit c7b64067f2
1 changed files with 3 additions and 2 deletions

View File

@ -7,9 +7,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=vsftpd-alt
PKG_NAME:=vsftpd-alt
PKG_VERSION:=3.0.5
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=vsftpd-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://security.appspot.com/downloads/
@ -48,6 +48,7 @@ endef
ifneq ($(CONFIG_USE_MUSL),)
NLSSTRING:=-lcrypt
TARGET_CFLAGS += -D_LARGEFILE64_SOURCE
else ifneq ($(CONFIG_USE_GLIBC),)
NLSSTRING:=-lcrypt
else