summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* print out tools libs after configureWilliam Jon McCann2007-08-081-0/+1
|
* don't use PERROR if not availableWilliam Jon McCann2007-08-071-1/+7
|
* don't use stderr or stdout as variable namesWilliam Jon McCann2007-08-071-11/+11
|
* change user to unix-userWilliam Jon McCann2007-08-011-1/+1
|
* use unix-user instead of userWilliam Jon McCann2007-08-011-3/+3
|
* Add preliminary support for seats with devicesWilliam Jon McCann2007-07-206-8/+319
|
* Add --display option to tool.William Jon McCann2007-07-201-4/+18
|
* Add new helper for getting tty from DISPLAYWilliam Jon McCann2007-07-182-0/+149
|
* a few fixes for getfd suggested by LennartWilliam Jon McCann2007-05-151-4/+12
| | | | | | | | | | | | | | | | | | | | | | I am currently investigating how to best integrate PulseAudio with ConsoleKit/PolicyKit. While doing that I had a look on your code, and found a few issues in getfd.c I'd like to report, before I forget them. I couldn't find any bugzilla with at consolekit project (neither fedora, nor fdo, nor gnome?) hence I am mailing you in person. In getfd.c in open_a_console() a close() is missing if is_a_console is missing. The open() in open_a_console() should probably use O_NOCTTY. Otherwise C-c on the console might end up in a SIGINT to your daemon process! Also I'd add an isatty() check to is_a_console(), to makes sure that you're actually talking to a TTY before you issue KDGKBTYPE on it. ioctl()s are unfortunately not unique, hence i'd recommend that check. That's it, Lennart
* bump versionWilliam Jon McCann2007-04-101-1/+1
|
* 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
|