diff options
author | Tobias Stoeckmann <tobias@stoeckmann.org> | 2024-01-22 21:17:35 +0100 |
---|---|---|
committer | Tobias Stoeckmann <tobias@stoeckmann.org> | 2024-01-24 18:19:29 +0100 |
commit | 54a0aee65b3d8129a55ece62ab8540f1cac3e929 (patch) | |
tree | 63e926ebaed3cb371d0cfdc6c9f742e54a05f7bf /libpamc | |
parent | 8f9d8239344354c5c80d85a326b1a6c6661ea9b6 (diff) | |
download | pam-54a0aee65b3d8129a55ece62ab8540f1cac3e929.tar.gz pam-54a0aee65b3d8129a55ece62ab8540f1cac3e929.tar.bz2 pam-54a0aee65b3d8129a55ece62ab8540f1cac3e929.zip |
libpam_internal: supply debug functionality
Move function bodies from headers into dedicated object files stored in
libpam_internal. This library won't be installed.
Keep the debug function body in header, even though disabled when
building Linux-PAM, to stay API compatible with previous versions.
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Diffstat (limited to 'libpamc')
-rw-r--r-- | libpamc/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpamc/Makefile.am b/libpamc/Makefile.am index 2ebeadca..c0cb698c 100644 --- a/libpamc/Makefile.am +++ b/libpamc/Makefile.am @@ -18,6 +18,7 @@ libpamc_la_LDFLAGS = -no-undefined -version-info 82:1:82 if HAVE_VERSIONING libpamc_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libpamc.map endif +libpamc_la_LIBADD = $(top_builddir)/libpam_internal/libpam_internal.la lib_LTLIBRARIES = libpamc.la |