summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update for release0.2.1William Jon McCann2007-04-101-0/+15
|
* disable static libsWilliam Jon McCann2007-04-101-0/+1
|
* use inotify to detect activity on tty when possibleWilliam Jon McCann2007-04-0512-62/+1496
|
* fix typosWilliam Jon McCann2007-04-041-2/+2
|
* add support for CKCON_X11_DISPLAY_DEVICE environment variableWilliam Jon McCann2007-04-042-9/+23
| | | | | In order to set the x11-display-device parameter on the new session.
* make sure no values are NULLWilliam Jon McCann2007-04-031-0/+8
|
* check for empty string as well as null valuesWilliam Jon McCann2007-04-031-6/+11
|
* add some input validationWilliam Jon McCann2007-04-031-3/+15
|
* daemonize a little earlierWilliam Jon McCann2007-04-031-4/+4
|
* add a glib message to syslog handlerWilliam Jon McCann2007-04-0311-311/+366
| | | | | Also add ability to toggle debugging when SIGUSR1 is received.
* bump the ac_prereq and use the docdir varWilliam Jon McCann2007-04-032-16/+2
|
* daemonize properlyDavid Zeuthen2007-04-021-2/+1
|
* autoconf fixes, separate pamlibdir variable, path expansion at make timeMichael Biebl2007-04-028-129/+99
| | | | | | | | | | | | | | | | | | The attached patch does the following: - Use a separate $pam-module-dir variable for the pam module - Instead of defining a custom $slibdir variable, just use the standard $libdir variable specified by autoconf - Use the standard autoconf $docdir variable (Add AC_PREREQ(2.59) for that). - Drop AS_AC_EXPAND macro and remove AC_DEFINE_UNQUOTED for dir variables. + Build the init script at make time using sed + Use defines in src/Makefile.am to pass the variables to gcc at make time - Consistently use AC_HELP_STRING everywhere - Remove/Replace deprecated macros: + AM_INIT_AUTOMAKE takes the package name and version number from AC_INIT + AM_CONFIG_HEADER -> AC_CONFIG_HEADERS + AC_OUTPUT -> AC_CONFIG_FILES Patch is tested and make distcheck works.
* add unix-user to parse listWilliam Jon McCann2007-04-021-1/+1
| | | | Oops.
* add missing prefix and exec_prefixWilliam Jon McCann2007-04-021-0/+2
| | | | Apparently this is required.
* make pam module install into $slibdirDoug Goldstein2007-03-301-1/+1
| | | | | | Basically the path for the pam module is hardcoded to /lib/security which isn't right. Attached is a patch that uses the value of slibdir for /lib/.
* use xlib directly instead of via gdkWilliam Jon McCann2007-03-262-9/+35
|
* add CanActivateSessions to Seat interfaceWilliam Jon McCann2007-03-197-21/+67
| | | | And associated documentation and added to test-fus.
* fix missed pam_syslog changeWilliam Jon McCann2007-03-152-6/+5
| | | | Also make the configure checks simpler.
* fix building pam module on debian systemsWilliam Jon McCann2007-03-152-14/+90
| | | | | Only include what is available. Use a alternative to pam_syslog if it isn't available.
* more typos in docsWilliam Jon McCann2007-03-151-2/+2
|
* typoWilliam Jon McCann2007-03-151-1/+1
|
* bump versionWilliam Jon McCann2007-03-141-2/+2
|
* update for release0.2.0William Jon McCann2007-03-141-0/+18
|
* bump the version arbitrarilyWilliam Jon McCann2007-03-141-2/+2
|
* update todoWilliam Jon McCann2007-03-141-1/+1
|
* add some more docsWilliam Jon McCann2007-03-143-4/+213
|
* add missing instead attributeWilliam Jon McCann2007-03-141-0/+1
|
* don't include the generated html in gitWilliam Jon McCann2007-03-142-318/+0
|
* dont' mark the user properties to be set in the constructorWilliam Jon McCann2007-03-141-2/+2
| | | | | | | | Now that we have two properties (one deprecated) that refer to the same thing we can't require that they are both set during the constructor. Furthermore, we can't require that either of them are set because we don't know which will be used.
* missed a namespace on the permission tagWilliam Jon McCann2007-03-133-70/+70
|
* updated doc dtdWilliam Jon McCann2007-03-132-65/+65
|
* add a new configure option --with-slibdir to use for connectorWilliam Jon McCann2007-03-133-2/+18
| | | | Turns out that just using libdir breaks the .pc file install.
* deprecate the user properties and add unix-user propertiesWilliam Jon McCann2007-03-1315-99/+295
| | | | | Also added deprecated notes to the docs. New code should be using GetUnixUser instead of GetUser etc.
* add more doc stubsWilliam Jon McCann2007-03-136-57/+108
|
* various leak fixesWilliam Jon McCann2007-03-134-21/+68
|
* convert to utf8 and xhtml outputWilliam Jon McCann2007-03-133-62/+64
| | | | Seems to fix some problems with invalid characters showing up.
* add the last bits of spec frameworkWilliam Jon McCann2007-03-1323-771/+1832
| | | | | | The spec is the introspection format extended with docs. There are tools to build docbook and strip the docs to make dbus introspect xml.
* install the connector into libdir by defaultWilliam Jon McCann2007-03-132-3/+2
| | | | | | | | If building the PAM module then it probably should be going into /lib. However, hardcoding /lib makes it very difficult to build as non-root, breaks make distcheck, and probably isn't correct for 64 bit systems. If you are a distro you should probably configure using --libdir=/lib.
* regenerate docsWilliam Jon McCann2007-03-102-54/+54
|
* add the generated doc htmlWilliam Jon McCann2007-03-102-1/+96
|
* give root permission to use the property interfaceWilliam Jon McCann2007-03-091-1/+5
|
* fix the user prop typeWilliam Jon McCann2007-03-091-9/+9
|
* add a few more parameters to session idlWilliam Jon McCann2007-03-092-1/+97
|
* add uuid to cookieWilliam Jon McCann2007-03-091-1/+9
|
* add a tool to autogenerate dbus object ref docsWilliam Jon McCann2007-03-0913-160/+884
| | | | | | | I hope I didn't reinvent a wheel but it seems to work much better than hand coding these refentries. Still need to add support for comments and actual descriptions ala gtk-doc.
* tweak the css for the docsWilliam Jon McCann2007-03-082-15/+66
|
* update all .gitignore filesWilliam Jon McCann2007-03-085-1/+28
|
* add a stub for docbook documentationWilliam Jon McCann2007-03-0811-30/+378
|
* prevent the use of the glib properties interfaceWilliam Jon McCann2007-03-081-1/+3
| | | | | We don't want anyone to be able to directly modify properties. Also make these policies mandatory.