summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2013-10-15Add CIFS idmap pluginBenjamin Franzke1-0/+2
https://fedorahosted.org/sssd/ticket/1534
2013-09-18Add journald supportJakub Hrozek1-0/+6
2013-09-11Enable printf format string checkingLukas Slebodnik1-0/+18
https://fedorahosted.org/sssd/ticket/1945
2013-09-09AUTOTOOLS: More robust detection of inotify.Lukas Slebodnik1-1/+2
We checked only header file "sys/inotify" for detection whether inotify works. Some platforms do not have built in inotify, but contain library, which provides inotify-compatible interface. This patch adds more robust detection of inotify in configuration time and appends linker flags to Makefile if inotify is provided by library.
2013-09-09AUTOTOOLS: Refactor unicode library detectionLukas Slebodnik1-8/+7
If $libdir is not in default library path libunistring cannot be found. (pkg-config can not be used in this case). This patch helps to search libunistring in "$libdir" directory. In refactoring part, indentation was updated to be more readable and some duplicated parts were removed.
2013-09-09AUTOMAKE: Use portable way to link with dlopenLukas Slebodnik1-0/+1
2013-08-28CONFIGURE: Get rid of bashismLukas Slebodnik1-1/+1
2013-08-28UTIL: Create new wraper header file sss_endian.hLukas Slebodnik1-0/+3
Some platform have header file endian.h and anothers have sys/endian.h. We nedd to use conditional build to handle it correctly, therefore new header file sss_endian.h was created.
2013-07-22Fix autotols warnings: macro xyz not found in libraryLukas Slebodnik1-4/+2
2013-07-02BUILD: Use pkg-config to detect cmockaLukas Slebodnik1-1/+1
2013-06-25init script: source /etc/sysconfig/sssdPavel Březina1-0/+1
https://fedorahosted.org/sssd/ticket/1959
2013-06-21Configure SYSV init scripts properlyStephen Gallagher1-1/+3
Previously, these contained hard-coded paths. Now they are populated correctly by the configure script. https://fedorahosted.org/sssd/ticket/1986
2013-06-16subdomains: touch krb5.conf when creating new domain-realm mappingsPavel Březina1-0/+1
https://fedorahosted.org/sssd/ticket/1815
2013-05-21Check NSCD configuration fileOndrej Kos1-0/+4
https://fedorahosted.org/sssd/ticket/1785 nscd.conf file is now checked for the presence of caching settings for databases controlled by SSSD. Syslog warning is now written only if NSCD is running with interfering configuration or if configuration file couldn't be loaded. New configure option added to support non-standard locations --with-nscd-conf=PATH (defaultly set to /etc/nscd.conf) This is just a workaround until the following bugzilla is resolved: https://bugzilla.redhat.com/show_bug.cgi?id=963908
2013-05-03Add client library for SID related lookupsSumit Bose1-0/+2
This patch add a library for client side lookups for a SID or with a SID through the calls: - sss_nss_getsidbyname - sss_nss_getsidbyid - sss_nss_getnamebysid - sss_nss_getidbysid The library is called libsss_nss_idmap and the contributed spec file will create two new packages libsss_nss_idmap and libsss_nss_idmap-devel.
2013-05-02DNS sites support - add AD SRV pluginPavel Březina1-0/+1
https://fedorahosted.org/sssd/ticket/1032
2013-03-27Provide libnl3 supportOndrej Kos1-5/+2
https://fedorahosted.org/sssd/ticket/812 Update the monitor code to be using the new libnl3 API. Changed configure option --with-libnl By default, it tries to build with libnl3, if not found, then with libnl1, if this isn't found either, build proceeds without libnl, just with warning. Specifing --with-libnl=<libnl3|libnl1|no> checks for the specific given version, if not found, configure ends with error.
2013-03-26sssd-1.8.0: work around a bug in cov-build from CoverityKamil Dudka1-0/+3
2013-03-21Move signal.m4 from src/util to externalJakub Hrozek1-1/+1
2013-03-20BUILD: Always run distcheck and RPM tests in /dev/shmStephen Gallagher1-0/+2
Some of the tests (such as the sysdb tests) are highly I/O limited. By running them on a ramdisk, we can significantly speed up the test runs when doing a distcheck or RPM build. https://fedorahosted.org/sssd/ticket/1840
2013-03-11BUILD: Fix cmocka detectionStephen Gallagher1-1/+1
We were not properly detecting that cmocka was unavailable. It was expecting an empty value and getting "no" instead. This patch corrects the expectation, so we will now skip building and running cmocka tests on platforms that do not have it available. Also, we were missing the cmocka header files in the distribution tarball, so 'make distcheck' was failing.
2013-03-08Detect the presence of libcmocka during configureJakub Hrozek1-0/+2
2013-01-28TOOLS: Compile on old platforms such as RHEL5Jakub Hrozek1-0/+4
Provides compatible declarations for modern file management functions such as futimens or opening with the O_CLOEXEC flag
2012-10-23Require ar in configure.acJakub Hrozek1-0/+2
This seems to be a change in recent autotools. I was getting a lot of messages such as: /usr/share/automake-1.12/am/ltlibrary.am: warning: 'libipa_hbac.la': linking libtool libraries using a non-POSIX /usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
2012-10-12Remove libsss_sudo.pc and move libsss_sudo.so to libsss_sudoJakub Hrozek1-1/+0
2012-09-04Check if the SELinux login directory existsJakub Hrozek1-0/+1
https://fedorahosted.org/sssd/ticket/1492
2012-08-27Use PTHREAD_MUTEX_ROBUST to avoid deadlock in the clientJakub Hrozek1-1/+14
https://fedorahosted.org/sssd/ticket/1460
2012-06-26libcrypto fully implementedGeorge McCollister1-2/+7
Implemented working versions of the following functions for libcrypto: sss_base64_encode sss_base64_decode sss_hmac_sha1 sss_password_encrypt sss_password_decrypt test_encrypt_decrypt now expects EOK from libcrypto. test_hmac_sha1 now expects EOK from libcrypto. Added test_base64_encode to test base64 encoding implementation. Added test_base64_decode to test base64 decoding implementation. Signed-off-by: George McCollister <George.McCollister@gmail.com>
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