| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
These should all be native programs found on the build machine. We
should not try to execute them via QEMU. Users would therefore expect to
configure them using the native file, not the cross file.
See https://mesonbuild.com/Reference-manual_functions.html#find_program.
|
|
|
|
|
|
|
|
| |
When build is configured with a custom prefix, ignore the value of
systemdsystemunitdir pkgconfig variable if it doesn't start with that
custom prefix.
Resolves: https://github.com/linux-pam/linux-pam/issues/863
|
|
|
|
|
|
|
|
|
|
|
|
| |
sizeof is meant for *types*, and in case of cross compiling
the test program produced by it has incorrect syntax
__NR_keyctl something;
and will always fail to compile.
* meson.build: Use cc.get_define() instead of cc.sizeof() to check for
preprocessor symbols.
Co-authored-by: Dmitry V. Levin <ldv@strace.io>
|
|
|
|
|
|
|
|
|
|
| |
The systemd functionality used here is also supported by elogind.
Introduce elogind meson option that could be used to enable logind
support in pam_issue, pam_limits, and pam_timestamp via elogind.
When elogind support is enabled, search for libelogind as well
and use the appropriate headers.
|
|
|
|
|
|
|
| |
While building any documentation requires xsltproc, only the PDF
documentation requires fop, which is dependency-heavy, and not always
available (e.g. it is not included in RHEL). This allows the HTML
documentation to be built while skipping the PDFs.
|
|
|
|
| |
Resolves: https://github.com/linux-pam/linux-pam/issues/847
|
|
|
|
|
|
|
|
|
|
| |
* meson.build: Raise project version to 1.7.0.
* po/meson.build: Likewise.
* po/Linux-PAM.pot (Project-Id-Version): Likewise.
* libpam/include/security/_pam_types.h (__LINUX_PAM_MINOR__): Update.
* NEWS: Update.
Resolves: https://github.com/linux-pam/linux-pam/issues/844
|
|
|
|
|
|
|
|
| |
gdbm_close() used to return void, later it was changed to return int.
We cannot assume either way and have to check whether gdbm_close()
returns int.
Fixes: 45c2c496dcf8 ("pam_userdb: enable GDBM support")
|
|
|
|
|
| |
If vendordir is enabled, the distribution provided configuration files
should be below this directory and not in /etc.
|
|
On my non-representative hardware, the full build using autotools
(./autogen.sh && CFLAGS=-O2 ./configure && make -j`nproc` && make -j`nproc` install)
takes about 45 seconds.
On the same hardware, the full build using meson
(meson setup -Doptimization=2 dir && meson compile -C dir && meson install -C dir)
takes just about 7.5 seconds.
|