seafile-server: fix build with libssp & non-musl libc
Fixes: https://github.com/openwrt/packages/issues/9255 This seems to fail the build for this package only. So, this change patches the build, to add `-lssp` to the LDFLAGS of this package, in case the build uses GCC's libssp. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
parent
2bdd3856fd
commit
4bc29f54ac
1 changed files with 5 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=seafile-server
|
PKG_NAME:=seafile-server
|
||||||
PKG_VERSION:=6.3.4
|
PKG_VERSION:=6.3.4
|
||||||
PKG_RELEASE:=5
|
PKG_RELEASE:=6
|
||||||
PKG_LICENSE:=GPL-3.0
|
PKG_LICENSE:=GPL-3.0
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
@ -77,6 +77,10 @@ endif
|
||||||
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib -liconv \
|
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib -liconv \
|
||||||
-L$(STAGING_DIR)/usr/lib/mysql -lmysqlclient -lz -levent_openssl -levent
|
-L$(STAGING_DIR)/usr/lib/mysql -lmysqlclient -lz -levent_openssl -levent
|
||||||
|
|
||||||
|
ifdef CONFIG_GCC_LIBSSP
|
||||||
|
TARGET_LDFLAGS += -lssp
|
||||||
|
endif
|
||||||
|
|
||||||
define Package/seafile-server/conffiles
|
define Package/seafile-server/conffiles
|
||||||
/etc/config/seafile
|
/etc/config/seafile
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue