summaryrefslogtreecommitdiffstats
path: root/server/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Make socket paths a compile-time optionStephen Gallagher2009-08-111-0/+3
| | | | | | 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.
* Revert build-breaking libsss_util_la change.Stephen Gallagher2009-08-101-9/+20
| | | | | | Moving the common utility sources into a libtool convenience library caused problems with symbols when loading the plugin libraries.
* Build and run tests with 'make check'Stephen Gallagher2009-08-101-21/+11
| | | | | | | | | | | When --enable-tests is set by configure, the sysdb, stress and resolver tests will be built by 'make check', which will also then run the sysdb and resolver tests automatically. This patch also updates the server Makefile to create a libtool convenience library of the common source files to spare them being built separately for every library/executable that has different CFLAGS.
* Add async resolver testsJakub Hrozek2009-07-241-1/+13
| | | | | | Add some basic unit tests of the async resolver module. One of the tests resolves a name on the Internet, therefore it is off by default and is turned on with the -n switch.
* Add ares helpers into sssdJakub Hrozek2009-07-241-1/+11
| | | | | | | | | | This patch adds ares parsing functions that are not yet upstreamed together with a private ares header file (ares_dns.h) that contains some necessary macros for parsing common structures in the replies. Users of these two parsing functions must also include the header files ares_parse_{srv,txt}_reply.h that contain the function and structures declarations that should eventually end up in upstream ares.h
* Async DNS integrationJakub Hrozek2009-07-241-1/+5
| | | | Integrates the c-ares asynchronous resolved library into SSSD.
* Remove unused InfoPipe and PolicyKit codeStephen Gallagher2009-07-201-64/+2
|
* Add async helper functionsSimo Sorce2009-07-081-1/+5
| | | | | | These functions use the tevent_req async model, where a pair of _send/_recv functions pilot requests, with additional helpers like _done functions, and where needed multiple stage helpers.
* Add dumb way to clean up .X filesSimo Sorce2009-07-081-0/+1
|
* Rework transaction code to use tevent_reqSimo Sorce2009-07-031-1/+0
| | | | | | This is part of a set of patches to rewrite sysdb to a hopefully better API, that will also let use use tevent_req async style calls to manipulate our cache.
* added kerberos backend with tevent_req event handlingSumit Bose2009-07-021-1/+16
|
* added kerberos locator pluginSumit Bose2009-07-021-0/+14
|
* Allow the use of custom CFLAGS on the make command lineStephen Gallagher2009-06-191-0/+4
| | | | | | | | | | | Setting CFLAGS explicitly in configure.ac means that they would be overwritten when using e.g. make CFLAGS="-O0 -g" This replaces the explicit setting of CFLAGS with an AM_CONDITIONAL to have Makefile.am set these instead. Also fixes a missing #include that was coincidentally obscured because gcc's -O2 happened to be able to locate it. Setting -O0 revealed the problem.
* Create gettext framework for SSSD daemonStephen Gallagher2009-06-171-1/+6
|
* Control sssd_be exported functionsStephen Gallagher2009-06-161-2/+5
|
* Add --with-aux-info config option to SSSD daemonStephen Gallagher2009-06-161-0/+5
|
* Make SysV script install executableStephen Gallagher2009-06-161-1/+1
|
* Link crypt functions only to sssd binariesSimo Sorce2009-06-101-4/+2
|
* fix shadow-utils base pathJakub Hrozek2009-06-081-1/+1
|
* man page for LDAP domainsJakub Hrozek2009-06-031-1/+1
|
* sssd.conf(5) man pageJakub Hrozek2009-06-021-1/+1
|
* Do not statically link data provider pluginsStephen Gallagher2009-06-011-4/+3
|
* Add more manpagesJakub Hrozek2009-06-011-1/+3
|
* Build non-versioned sss_pam.so, libnss_sss.so and memberof.soStephen Gallagher2009-05-281-1/+1
|
* Link proxy backend against internal crypto libraryStephen Gallagher2009-05-261-2/+4
|
* Clean up automake build to work on older versions of libtoolStephen Gallagher2009-05-261-0/+1
| | | | | | | | | | | | | | 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.
* Fix infopipe packagingJakub Hrozek2009-05-261-0/+4
|
* Add some more InfoPipe testsJakub Hrozek2009-05-261-1/+12
|
* Enable automake builds for sssd serverStephen Gallagher2009-05-191-0/+431