summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2012-06-21PAC client: add krb5 authdata pluginSumit Bose1-0/+1
2012-06-21PAC responder: add basic infrastructureSumit Bose1-0/+1
This adds only the basic outline of the PAC responder, it won't support any operations, it will just start and initialize itself.
2012-06-14Make krb5_ccname_template and krb5_ccachedir configurableJakub Hrozek1-0/+2
2012-05-31SSSDConfig: Make default config and schema file locations configurableStephen Gallagher1-1/+3
https://fedorahosted.org/sssd/ticket/1008
2012-03-26Add idmap librarySumit Bose1-0/+1
2012-03-19nsssrv: shared memory cache server initializationSimo Sorce1-0/+1
2012-02-07Make sudo installation path configurable, install into libdir by defaultJakub Hrozek1-0/+1
2012-02-07BUILD: Introduce a --with-ssh config optionJan Cholasta1-0/+1
2012-02-05BUILD: Introduce a --with-autofs config optionJakub Hrozek1-0/+1
This would allow to select the autofs feature during build without having to select the other features.
2012-02-04SUDO: introduce a new config option --with-sudoJakub Hrozek1-5/+1
At the time being the option is also turned on when --enable-all-experimental-features is specified. https://fedorahosted.org/sssd/ticket/1145
2012-02-01Use profiling Docbook XSLT only if available, fall back to normalJakub Hrozek1-2/+18
2012-01-30SUDO: Provide documentation for the SUDO APIJakub Hrozek1-1/+2
2012-01-17Export libsss_sudo as a separate packageJakub Hrozek1-1/+2
2012-01-17Add a configure switch to specify 3rd party app libraries locationJakub Hrozek1-0/+1
2012-01-04make dist fixesSimo Sorce1-1/+1
Use pax format for tar as it is the only one that will succeed (albeit spitting warnings) to create a tar file if user UID values are above ~2M
2011-12-16SUDO integration - client common interfacePavel Březina1-0/+5
2011-12-08Added sssd --version optionPavel Březina1-1/+4
https://fedorahosted.org/sssd/ticket/953
2011-12-05Allow using Glib for UTF8 supportStephen Gallagher1-1/+13
2011-10-14BUILDSYS: Fix --without-manpagesStephen Gallagher1-0/+1
We weren't honoring the --without-manpages option, and this was causing builds to break. Note: 'make dist[check]' will not work if you have configured with --without-manpages because it will not be able to pre-generate the translation files necessary for tarball release.
2011-09-28Unbreak ./configureMarko Myllynen1-1/+1
./configure at least from 1.5.13 is failing on Ubuntu Oneiric. The node ``Conditionals'' of automake manual states: Note that you must arrange for _every_ `AM_CONDITIONAL' to be invoked every time `configure' is run. If `AM_CONDITIONAL' is run conditionally (e.g., in a shell `if' statement), then the result will confuse `automake'. So the trick is to run AM_CONDITIONAL unconditionally.
2011-09-08Improve documentation of libipa_hbacStephen Gallagher1-1/+1
2011-09-02Add option to specify the kerberos replay cache dirStephen Gallagher1-0/+1
Adds a configure option to set the distribution default as well as an sssd.conf option to override it. https://fedorahosted.org/sssd/ticket/980
2011-07-29sss_client: avoid leaking file descriptorsSimo Sorce1-0/+12
If a pam or nss module is dlcolse()d and unloaded we were leaking the file descriptor used to communicate to sssd in the process. Make sure the fucntion used to close the socket file descriptor is called on dlclose() Silence autoconf 2.28 warnings (Patch by Jakub Hrozek)
2011-07-29libipa_hbac: Support case-insensitive comparisons with UTF8Stephen Gallagher1-0/+1
2011-07-13Fix python HBAC bindings for python <= 2.4Jakub Hrozek1-0/+1
Several parts of the HBAC python bindings did not work with old Python versions, such as the one shipped in RHEL5. The changes include: * a compatibility wrapper around python set object * PyModule_AddIntMacro compat macro * Py_ssize_t compat definition * Do not use PyUnicode_FromFormat * several function prototypes and structures used to have "char arguments where they have "const char *" in recent versions. This caused compilation warnings this patch mitigates by using the discard_const hack on python 2.4
2011-07-08Add HBAC evaluator and testsStephen Gallagher1-1/+2
2011-05-23Remove unused defines from configure.acSumit Bose1-12/+0
2011-05-23Set _GNU_SOURCE globallySumit Bose1-0/+4
2011-05-20Add new options to override shell valueJakub Hrozek1-0/+1
https://fedorahosted.org/sssd/ticket/742
2011-04-27Disable libcrypto codeJakub Hrozek1-9/+2
2011-04-27Warn that some crypto features are implemented in NSS onlyJakub Hrozek1-0/+2
2011-04-27Require openssl-devel is libcrypto backend is selectedJakub Hrozek1-0/+8
2011-04-12Only check systemd unit dir if systemd is selectedJakub Hrozek1-1/+3
2011-04-12Provide a configuration option to use systemd unit fileJakub Hrozek1-0/+8
https://fedorahosted.org/sssd/ticket/837
2011-01-17Remove support for pre-1.1 netlinkStephen Gallagher1-1/+1
Netlink 1.0 and older is buggy and unreliable, occasionally causing tight-loops. We're no longer going to try to support it. https://fedorahosted.org/sssd/ticket/755
2010-12-22Make manual pages translatableJakub Hrozek1-1/+3
Utilizes PO4A to extract translatable strings from Docbook XML sources and allows translators to submit ordinary .PO files. PO4A then generates translated Docbook documents that can be used to generate translated end user documentation. https://fedorahosted.org/sssd/ticket/297
2010-11-22sss_client: make code thread-safeSimo Sorce1-0/+6
Add mutexes around nss operations and serialize them. This is necessary because nss operations may have global state. For pam it is sufficient to protect socket operations instead. As pam functions use only the provided pam handler. Fixes: https://fedorahosted.org/sssd/ticket/640
2010-09-02Package systemd unit fileJakub Hrozek1-1/+2
So far, the systemd unit file is only packaged but not used in any of the packaged spec files. Fixes: #483
2010-09-02Add gentoo-specific init dirMaxim1-1/+3
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
2010-09-02Add custom pam module dirMaxim1-0/+7
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
2010-08-19Rewrite toplevel MakefileStephen Gallagher1-5/+159
There is no longer a need to have nested Makefiles and configure scripts. This patch combines the src/ Makefile and configure.ac into the root.
2010-08-19Remove common directoryStephen Gallagher1-1/+1
All files formerly in common are now being built individually out of the ding-libs repository. git clone git://git.fedorahosted.org/git/ding-libs.git
2010-02-18Rename server/ directory to src/Stephen Gallagher1-1/+1
Also update BUILD.txt
2010-02-18Eliminate separate build tree for sss_clientStephen Gallagher1-1/+1
2010-02-16Remove replaceSumit Bose1-1/+1
2010-01-21Add 'prerelease-srpms' target to MakefileStephen Gallagher1-0/+2
This target is available only if building from a git checkout. It will automatically populate the PRERELEASE_VERSION in version.m4 with the current datestamp and git commit id for creating an SRPM.
2010-01-21Use version.m4 for setting the SSSD versionStephen Gallagher1-9/+3
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-15Add PRERELEASE_VERSION variable for use in sssd.spec.inStephen Gallagher1-0/+10
This will add a second, optional line to the VERSION file that will be used by the automated build scripts to create snapshot versions.
2009-09-03configure cleanupsSumit Bose1-1/+3
- replaced mailing list address - let sssd base components read version from VERSION
2009-09-02Move RPM specfiles into contrib/Stephen Gallagher1-1/+1
Support RHEL 5 in the spec file