summaryrefslogtreecommitdiffstats
path: root/server/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Enable quiet build for automake >= 1.11Stephen Gallagher2009-06-021-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.
* Clean up automake build to work on older versions of libtoolStephen Gallagher2009-05-261-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.
* Fix RPM generation issues with sssdStephen Gallagher2009-05-191-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.
* Use freeipa-devel@redhat.com for bug reportsStephen Gallagher2009-05-191-1/+1
|
* Enable automake builds for sssd serverStephen Gallagher2009-05-191-26/+21
|
* Manpage generationJakub Hrozek2009-05-141-0/+8
| | | | | | | | | Provides a set of make rules for generating UNIX manual pages from DocBook 4.5 source as well as sample manpage for sss_useradd. Automatic generation of manual pages during "make" process is tunable with config parameter "--with-manpages". To rebuild the man pages separately, use the "make doc" target. Before building, the manpages are validated using a DTD schema.
* Invoke shadow-utils in sss_ toolsJakub Hrozek2009-04-281-0/+1
| | | | | Make shadow-utils base path configurable Use default values for params, allow configuring them
* Release version 0.3.3sssd-0_3_3Stephen Gallagher2009-04-271-1/+1
|
* sssd 0.3.2sssd-0_3_2Jakub Hrozek2009-04-201-1/+1
|
* Bump up to 0.3.1sssd-0_3_1Simo Sorce2009-04-131-1/+1
|
* Set version to 0.3.0Simo Sorce2009-04-131-1/+1
|
* Allow configuration of the SSSD through /etc/sssd/sssd.confStephen Gallagher2009-04-131-0/+2
| | | | | | | | | | | | | | | | | | | The SSSD now links with the ini_config and collection libraries in the common directory. The monitor will track changes to the /etc/sssd/sssd.conf file using inotify on platforms that support it, or polled every 5 seconds on platforms that do not. At startup or modification of the conf file, the monitor will purge the existing confdb and reread it completely from the conf file, to ensure that there are no lingering entries. It does this in a transaction, so there should be no race condition with the client services. A new option has been added to the startup options for the SSSD. It is now possible to specify an alternate config file with the -c <file> at the command line.
* Add a more flexible way to parse and filter names.Simo Sorce2009-04-011-0/+1
| | | | | | | | | | A new nss_parse_name function uses pcre to parse names, this makes it possible, in future, to make the filter user configurable. Add a new filter mechanism to filter out users that uses the negative cache by setting a permanet negative entry. Rework the entry points where the negative cache is checked for.
* allow compilation with older version of dbusSumit Bose2009-04-011-0/+6
|
* Fix makefilesSimo Sorce2009-03-131-6/+0
| | | | Make so that definitions in the code and install paths actually match
* Remove unexisting left over headersssd-0_2_1Simo Sorce2009-03-101-1/+1
| | | | Also bump up the version as this error prevented a successful build of 0.2.0
* Bump up to version 0.2.0sssd-0_2_0Simo Sorce2009-03-101-1/+1
| | | | Change version after changes in protocol and MPG behavior.
* typo, changed initrd to initSumit Bose2009-03-091-1/+1
|
* Specfile changes related to package review, package initscript Call ldconfigJakub Hrozek2009-03-061-0/+1
|
* minor fixes for the build processSumit Bose2009-03-061-1/+2
| | | | enable --without-tests
* Make tests configurableJakub Hrozek2009-03-021-1/+3
|
* first version of LOCAL pam backendSumit Bose2009-03-021-0/+1
|
* Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce2009-02-261-1/+1
| | | | | | dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
* Add PAM responderSumit Bose2009-02-241-0/+2
| | | | | | | Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>
* Spec file patch Take 2:Stephen Gallagher2009-02-241-1/+3
| | | | | | | | | | | | | | | Adding support for generating RPMS for sssd. Fixing TDB autoconf macros to require version 1.1.3 and support for the tdb_repack symbol (required by LDB) Updating tdb.h to #include <sys/stat.h> for proper autoconf Build system modifications to simplify RPM generation Fixing RPM build system as recommended during code review Minor tweaks to Makefile and sssd.spec Make policykit and infopipe configurable Soname and symlinks
* Add D-BUS introspection to InfoPipe This function is necessary to play nice ↵Stephen Gallagher2009-02-241-0/+3
| | | | with D-BUS clients built in multiple languages. It will read in the XML file on the first request and store the returned XML as a component of the sbus_message_handler_ctx for the connection. All subsequent requests during the process' lifetime will be returned from the stored memory. This is perfectly safe, as the available methods cannot change during the process lifetime.
* Adding sysdb_store_group_posix with unit testStephen Gallagher2009-02-121-1/+2
|
* Preliminary support for enabling InfoPipe to listen on the D-BUS system bus. ↵Stephen Gallagher2009-01-271-0/+1
| | | | It will connect and authenticate successfully (using the included D-BUS policy file installed in the correct /etc directory. Does not yet listen for requests.
* Automatically generate the config.ldb if it doesn't exist (i.e. First startup)Stephen Gallagher2009-01-271-1/+4
|
* Refactoring the monitor code and SBUS utility functions.Stephen Gallagher2009-01-271-1/+1
|
* Fix dependencies for LDBSumit Bose2008-12-151-1/+1
|
* Make a binary out of each major sssd component instead ofSimo Sorce2008-11-251-1/+1
| | | | using the same binary to fork off all services.
* Replacing hard-coded paths with configure script substitutions.Stephen Gallagher2008-11-241-0/+6
| | | | Changing the default SBUS locations to be configure script parameters
* Integrate D-BUS support for use as IPC between parts.Stephen Gallagher2008-10-241-0/+2
| | | | Integrates DBUS with the event system so that it is asynchronous.
* First retrieval of a user (getpwnam only) from an actual ldb fileSimo Sorce2008-10-081-0/+1
|
* Fix build issues surrounding signal blocking and DEBUG macrosStephen Gallagher2008-10-071-0/+1
|
* Initital server code.Simo Sorce2008-10-041-0/+51
Includes test monitor task.