summaryrefslogtreecommitdiff
path: root/sss_client/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2010-01-21Use version.m4 for setting the SSSD versionStephen Gallagher1-1/+2
This is the preferred way of setting the version in a file, as autotools will properly monitor this file for changes and rerun autoconf/configure when necessary to update the version. This means that we don't need to manually perform an autoreconf in order to build a new RPM
2009-09-23add a man page for pam_sssSumit Bose1-23/+11
2009-09-03configure cleanupsSumit Bose1-1/+3
- replaced mailing list address - let sssd base components read version from VERSION
2009-08-28add configure check for errno_tSumit Bose1-0/+2
2009-08-20Support gettext >= 0.14 instead of 0.17Stephen Gallagher1-1/+1
This is needed for support of RHEL5 Adding the assignment of $(localedir) was necessary, as gettext 0.14 does not include automatically assign it.
2009-08-11Make socket paths a compile-time optionStephen Gallagher1-0/+19
Previously, we had hardcoded the paths for the NSS, PAM and private PAM sockets to /var/lib/sss/pipes. With this patch, we will specify the sockets with --with-pipe-path.
2009-07-13Build all SSSD components with warnings enabledStephen Gallagher1-0/+2
Previously, only the SSSD server components were being built with compile-time warnings enabled. This patch will ensure that all components in common and sss_client are also built the same way.
2009-06-16Add --with-aux-info config option to SSS clientStephen Gallagher1-0/+8
2009-06-02Enable quiet build for automake >= 1.11Stephen Gallagher1-0/+3
If automake 1.11 or higher is available, use of the configure option '--enable-silent-rules' will suppress most build messages and replace them with lines such as CC sysdb.o This affects libtool as well.
2009-05-28gettext cleanupsSumit Bose1-3/+4
This patch removes a couple of files which can be created by autopoint automatically. The pot file now contains no changes compared to the output of xgettext. This should help to avoid unnecesary changes to the pot or po files during a 'make dist' or similar calls.
2009-05-26Initial gettext framework for sss_clientsStephen Gallagher1-1/+2
2009-05-26Clean up automake build to work on older versions of libtoolStephen Gallagher1-1/+2
LT_INIT is supported only on Libtool >= 2.0, so I reverted it to using AC_PROG_LIBTOOL. Also reorganized how the common libraries were being built. Now they are treated as libtool convenience libraries instead of installable libraries (the --with-singlelib configure flag can still be used to generate a combined, installable DSO) I cleaned up the set of files being installed by automake, so the list of things we need to remove before packaging the RPM is now only the .la files associated with our own plugins.
2009-05-19Fix RPM generation issues with sssdStephen Gallagher1-1/+1
Ensures that the common libraries build statically. Also ensures that the sssd.spec creates the SYSV init script with the appropriate permissions. Cleans up the useless rpmdist target that was obsolete. Adds the *.so.N.0.0 files to the RPM, as the .so and .so.N files were dangling symlinks.
2009-05-19Use freeipa-devel@redhat.com for bug reportsStephen Gallagher1-1/+1
2009-05-19Enable automake builds for sss_clientStephen Gallagher1-9/+22
2009-04-27Update sss_client configure.ac tooSimo Sorce1-1/+1
2009-04-20sssd 0.3.2Jakub Hrozek1-1/+1
2009-04-13Bump up to 0.3.1Simo Sorce1-1/+1
2009-03-10Remove unexisting left over headerSimo Sorce1-1/+1
Also bump up the version as this error prevented a successful build of 0.2.0
2009-03-10Bump up to version 0.2.0Simo Sorce1-1/+1
Change version after changes in protocol and MPG behavior.
2009-02-24Add PAM clientSumit Bose1-0/+13
Also rename nss_client to sss_client and reuse the same pipe protocol for both the NSS and PAM client libraries. Signed-off-by: Simo Sorce <ssorce@redhat.com>