c4ea8f7c71
- switch to cmake. - add missing setusercontext() call in switchuser.cpp, now the ulimits are properly applied when logging in. - add support for bsd_auth(3) through auth_userokay(3). Now allows to login via login_ldap/login_yubikey/etc... - add support for consolekit, no need to do ck-launch-session in .xinitrc anymore. - make consolekit support at runtime optional, ie don't badly bail out if systemwide dbus daemon is not running. Being discussed with upstream. parts based on a diff from 'johnw', ok ajacoutot@
13 lines
397 B
Plaintext
13 lines
397 B
Plaintext
$OpenBSD: patch-image_cpp,v 1.1 2012/09/02 09:22:59 landry Exp $
|
|
--- image.cpp.orig Sat Sep 1 19:52:57 2012
|
|
+++ image.cpp Sat Sep 1 19:53:20 2012
|
|
@@ -781,7 +781,7 @@ Image::readPng(const char *filename, int *width, int *
|
|
(png_infopp) NULL);
|
|
}
|
|
|
|
- if (setjmp(png_ptr->jmpbuf)) {
|
|
+ if (setjmp(png_jmpbuf(png_ptr))) {
|
|
goto png_destroy;
|
|
}
|
|
|