From: Stephan Bosch Date: Mon, 26 Sep 2022 21:01:38 +0000 (+0200) Subject: auth: Move auth-scram-server to lib-auth-common. X-Git-Tag: 2.4.0~3127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=204b16922364d20bdca475136bbe95f256e2d5e6;p=thirdparty%2Fdovecot%2Fcore.git auth: Move auth-scram-server to lib-auth-common. --- diff --git a/src/auth/Makefile.am b/src/auth/Makefile.am index 9ffb01a62f..b967781564 100644 --- a/src/auth/Makefile.am +++ b/src/auth/Makefile.am @@ -64,7 +64,6 @@ auth_LDFLAGS = -export-dynamic libpassword_la_SOURCES = \ crypt-blowfish.c \ mycrypt.c \ - auth-scram-server.c \ password-scheme.c \ password-scheme-crypt.c \ password-scheme-md5crypt.c \ @@ -184,7 +183,6 @@ headers = \ passdb-blocking.h \ passdb-cache.h \ passdb-template.h \ - auth-scram-server.h \ password-scheme.h \ userdb.h \ userdb-blocking.h \ diff --git a/src/lib-auth/Makefile.am b/src/lib-auth/Makefile.am index d18c2dec47..47d4136134 100644 --- a/src/lib-auth/Makefile.am +++ b/src/lib-auth/Makefile.am @@ -1,14 +1,16 @@ -noinst_LTLIBRARIES = libauth.la +noinst_LTLIBRARIES = libauth-common.la AM_CPPFLAGS = \ -I$(top_srcdir)/src/lib \ -I$(top_srcdir)/src/lib-test -libauth_la_SOURCES = \ - auth-scram.c +libauth_common_la_SOURCES = \ + auth-scram.c \ + auth-scram-server.c headers = \ - auth-scram.h + auth-scram.h \ + auth-scram-server.h pkginc_libdir=$(pkgincludedir) pkginc_lib_HEADERS = $(headers) diff --git a/src/auth/auth-scram-server.c b/src/lib-auth/auth-scram-server.c similarity index 100% rename from src/auth/auth-scram-server.c rename to src/lib-auth/auth-scram-server.c diff --git a/src/auth/auth-scram-server.h b/src/lib-auth/auth-scram-server.h similarity index 100% rename from src/auth/auth-scram-server.h rename to src/lib-auth/auth-scram-server.h