aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2024-01-22 21:17:35 +0100
committerTobias Stoeckmann <tobias@stoeckmann.org>2024-01-24 18:19:29 +0100
commit54a0aee65b3d8129a55ece62ab8540f1cac3e929 (patch)
tree63e926ebaed3cb371d0cfdc6c9f742e54a05f7bf /tests
parent8f9d8239344354c5c80d85a326b1a6c6661ea9b6 (diff)
downloadpam-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 'tests')
-rw-r--r--tests/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index a33d3d8d..be7da35f 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -4,7 +4,8 @@
AM_CFLAGS = -DLIBPAM_COMPILE -I$(top_srcdir)/libpam/include \
-I$(top_srcdir)/libpam $(WARN_CFLAGS)
-LDADD = $(top_builddir)/libpam/libpam.la
+LDADD = $(top_builddir)/libpam_internal/libpam_internal.la \
+ $(top_builddir)/libpam/libpam.la
CLEANFILES = *~
@@ -18,4 +19,4 @@ EXTRA_DIST = confdir
check_PROGRAMS = ${TESTS} tst-dlopen
-tst_dlopen_LDADD = -ldl
+tst_dlopen_LDADD = $(top_builddir)/libpam_internal/libpam_internal.la -ldl