1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-10-20 15:03:35 +00:00
Files
seafile-server/server/gc/Makefile.am
feiniks 96996b79e3 Support argon2id password hash algo (#637)
* Support argon2id password hash algo

* CI install argon2 deps

* Go support argonid algo

* RPC add pwd_hash_algo and pwd_hash_params

* Support password hash algo

* Don't set magic when pwd_hash is set

* Fix ci error

---------

Co-authored-by: 杨赫然 <heran.yang@seafile.com>
2024-05-22 18:49:57 +08:00

64 lines
1.6 KiB
Makefile

AM_CFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" \
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
-DSEAFILE_SERVER \
-I$(top_srcdir)/include \
-I$(top_srcdir)/lib \
-I$(top_builddir)/lib \
-I$(top_srcdir)/common \
@SEARPC_CFLAGS@ \
@GLIB2_CFLAGS@ \
@MSVC_CFLAGS@ \
@MYSQL_CFLAGS@ \
-Wall
bin_PROGRAMS = seafserv-gc seaf-fsck
noinst_HEADERS = \
seafile-session.h \
repo-mgr.h \
verify.h \
fsck.h \
gc-core.h
common_sources = \
seafile-session.c \
repo-mgr.c \
../../common/seaf-db.c \
../../common/branch-mgr.c \
../../common/fs-mgr.c \
../../common/block-mgr.c \
../../common/block-backend.c \
../../common/block-backend-fs.c \
../../common/commit-mgr.c \
../../common/log.c \
../../common/seaf-utils.c \
../../common/obj-store.c \
../../common/obj-backend-fs.c \
../../common/seafile-crypt.c \
../../common/password-hash.c \
../../common/config-mgr.c
seafserv_gc_SOURCES = \
seafserv-gc.c \
verify.c \
gc-core.c \
$(common_sources)
seafserv_gc_LDADD = $(top_builddir)/common/cdc/libcdc.la \
$(top_builddir)/lib/libseafile_common.la \
@GLIB2_LIBS@ @GOBJECT_LIBS@ @SSL_LIBS@ @LIB_RT@ @LIB_UUID@ -lsqlite3 @LIBEVENT_LIBS@ \
@SEARPC_LIBS@ @JANSSON_LIBS@ ${LIB_WS32} @ZLIB_LIBS@ \
@MYSQL_LIBS@ -lsqlite3 @ARGON2_LIBS@
seaf_fsck_SOURCES = \
seaf-fsck.c \
fsck.c \
$(common_sources)
seaf_fsck_LDADD = $(top_builddir)/common/cdc/libcdc.la \
$(top_builddir)/lib/libseafile_common.la \
@GLIB2_LIBS@ @GOBJECT_LIBS@ @SSL_LIBS@ @LIB_RT@ @LIB_UUID@ -lsqlite3 @LIBEVENT_LIBS@ \
@SEARPC_LIBS@ @JANSSON_LIBS@ ${LIB_WS32} @ZLIB_LIBS@ \
@MYSQL_LIBS@ -lsqlite3 @ARGON2_LIBS@