]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Move auth-scram-server to lib-auth-common.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Mon, 26 Sep 2022 21:01:38 +0000 (23:01 +0200)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Fri, 27 Jan 2023 09:34:54 +0000 (09:34 +0000)
src/auth/Makefile.am
src/lib-auth/Makefile.am
src/lib-auth/auth-scram-server.c [moved from src/auth/auth-scram-server.c with 100% similarity]
src/lib-auth/auth-scram-server.h [moved from src/auth/auth-scram-server.h with 100% similarity]

index 9ffb01a62fcf48869c9cc06323efdda02eb50c32..b967781564496aa3347896034d381d353157e4f8 100644 (file)
@@ -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 \
index d18c2dec4793cba638725c79cab38acafe1d7abb..47d4136134208379bdfc54b2eaa92c7cfe4e7082 100644 (file)
@@ -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)