summaryrefslogtreecommitdiff
path: root/pam-ck-connector/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2017-05-21chore: simplify configure.acEric Koegel1-1/+0
Pull in the m4 macros from the xfce4-dev-tools so we have ways to simplify and shorten the configure.ac file.
2015-07-12Add an --enable-tests configure optionEric Koegel1-2/+4
And document the --enable-debug option better. The enable-tests option defaults to off so that normal release builds don't have to waste time compiling tests that won't be installed or used.
2015-02-17Check for Linux-PAM features rather than just Linux.Andrew Aldridge1-1/+1
Some Linux distros use OpenPAM.
2014-10-05Undefine _FORTIFY_SOURCE before redefining itEric Koegel1-0/+1
Otherwise GCC nags us with warnings.
2014-10-04Update makefiles and remove unused codeEric Koegel1-1/+1
2009-02-11fix building with Solaris PAMHalton Huo1-0/+2
This patch is a little different with Brian's. Let's me explain the whole patch one by one. 1. pam-ck-connector/Makefile.am (same with Brian's) Solaris does not have libpam_misc, so only build test_pam under linux 2. +#include <limits.h> This is to get macro PATH_MAX from system. I think it is better than +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif On ubuntu, PATH_MAX=4096, on Solaris, PATH_MAX=1024 3. +#include <security/pam_appl.h> This is to include declaration of pam_handle_t, to resolve error like: "/usr/include/security/pam_modules.h", line 38: syntax error before or at: * "/usr/include/security/pam_modules.h", line 45: syntax error before or at: * 4.-#include <security/_pam_macros.h> Solaris does not have this file, I remove it, no more error, seems no use here. 5. +#ifndef PAM_EXTERN ... part Solaris PAM_EXTERN marco in pam_modules.h, while Ubuntu has, I just copy the logic from Ubuntu. 6. getpwnam_r part (same with Brian's) getpwnam_r() have difference behavior between Solaris and Ubuntu. https://bugs.freedesktop.org/show_bug.cgi?id=18173
2007-04-02autoconf fixes, separate pamlibdir variable, path expansion at make timeMichael Biebl1-2/+1
The attached patch does the following: - Use a separate $pam-module-dir variable for the pam module - Instead of defining a custom $slibdir variable, just use the standard $libdir variable specified by autoconf - Use the standard autoconf $docdir variable (Add AC_PREREQ(2.59) for that). - Drop AS_AC_EXPAND macro and remove AC_DEFINE_UNQUOTED for dir variables. + Build the init script at make time using sed + Use defines in src/Makefile.am to pass the variables to gcc at make time - Consistently use AC_HELP_STRING everywhere - Remove/Replace deprecated macros: + AM_INIT_AUTOMAKE takes the package name and version number from AC_INIT + AM_CONFIG_HEADER -> AC_CONFIG_HEADERS + AC_OUTPUT -> AC_CONFIG_FILES Patch is tested and make distcheck works.
2007-03-30make pam module install into $slibdirDoug Goldstein1-1/+1
Basically the path for the pam module is hardcoded to /lib/security which isn't right. Attached is a patch that uses the value of slibdir for /lib/.
2007-03-01dist the manual page for the PAM moduleDavid Zeuthen1-0/+4
2007-03-01add a test program for the PAM moduleWilliam Jon McCann1-4/+34
Basically this is a mini login. It authenticates, opens a session, sleeps 20 seconds, and then closes the session.
2007-02-28add a connector library and (reluctantly) a PAM moduleDavid Zeuthen1-0/+17
Here are some patches to add one library and one PAM module so other programs (apart from gdm) can easily interact with ConsoleKit. It's mainly going to be used, I think, by login(1) and xinit(1). I'm not super happy about doing a PAM module but the Fedora util-linux package maintainer seems to be insist on this instead of just patching login(1). The PAM module isn't built by default. Both pieces of code are licensed under the MIT license as god knows what might want to use them. Sounds good to you?