<feed xmlns='http://www.w3.org/2005/Atom'>
<title>krb5.git/src/util, branch proxymech</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/'/>
<entry>
<title>Fix typo in util/support/Makefile.in</title>
<updated>2012-09-12T19:04:35+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-09-12T19:04:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=59633beb46cbc5f0eb83e9a1aee8814fdfec2067'/>
<id>59633beb46cbc5f0eb83e9a1aee8814fdfec2067</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make depend</title>
<updated>2012-09-12T17:41:12+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-09-12T17:40:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=eabc8e91c70031a8e9dc1da1341201c89cbd898c'/>
<id>eabc8e91c70031a8e9dc1da1341201c89cbd898c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add internal JSON encoding and decoding support</title>
<updated>2012-09-11T05:14:31+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-08-09T22:05:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=382a87cf344b002bf5660ed3f27799ed18c54948'/>
<id>382a87cf344b002bf5660ed3f27799ed18c54948</id>
<content type='text'>
Add JSON support based loosely on Heimdal's heimbase code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add JSON support based loosely on Heimdal's heimbase code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add internal base64 encoding and decoding support</title>
<updated>2012-09-11T05:14:06+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-08-27T08:18:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=3b55b8aba850fa54a4d0c5017a91641538c16835'/>
<id>3b55b8aba850fa54a4d0c5017a91641538c16835</id>
<content type='text'>
Add base64 support based on Heimdal's libroken base64 code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add base64 support based on Heimdal's libroken base64 code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Define SED in util/verto/Makefile.in</title>
<updated>2012-09-06T16:42:04+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-09-06T16:42:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=17aaa7d19c64c5804a71e5ac021f0f8ded2e44ba'/>
<id>17aaa7d19c64c5804a71e5ac021f0f8ded2e44ba</id>
<content type='text'>
When the rules from util/k5ev/Makefile.in were moved to
util/verto/Makefile.in, the rule to make rename.h was broken on
non-gmake makes because the definition of SED wasn't carried over.
Define it now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the rules from util/k5ev/Makefile.in were moved to
util/verto/Makefile.in, the rule to make rename.h was broken on
non-gmake makes because the definition of SED wasn't carried over.
Define it now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid libdl dependencies in bundled libverto</title>
<updated>2012-09-04T05:31:46+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-07-08T22:04:56+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=c91cda209a1e2467bbb5fbb5a3116757d38ef374'/>
<id>c91cda209a1e2467bbb5fbb5a3116757d38ef374</id>
<content type='text'>
The upstream libverto depends on dynamic loading and in particular on
dladdr(), which is not universal.  To avoid this dependency, stub out
support for module loading (by replacing module.c) and instead
integrate the k5ev module directly into the bundled verto library.

This change removes the need to link, include, and invoke libverto
differently depending on whether we're using the bundled library; we
can always just link with -lverto and call verto_default().

bigredbutton: whitespace
ticket: 7351 (new)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The upstream libverto depends on dynamic loading and in particular on
dladdr(), which is not universal.  To avoid this dependency, stub out
support for module loading (by replacing module.c) and instead
integrate the k5ev module directly into the bundled verto library.

This change removes the need to link, include, and invoke libverto
differently depending on whether we're using the bundled library; we
can always just link with -lverto and call verto_default().

bigredbutton: whitespace
ticket: 7351 (new)
</pre>
</div>
</content>
</entry>
<entry>
<title>Update bundled libverto to 0.2.5</title>
<updated>2012-09-03T23:25:48+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-09-03T23:25:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=6b60871d961eff2fa4c476867ae9d8cbcffb8953'/>
<id>6b60871d961eff2fa4c476867ae9d8cbcffb8953</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Try harder not to use clock_gettime in verto-k5ev</title>
<updated>2012-09-03T23:20:34+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-09-03T23:20:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=fe285ec16b65ac6177a404baa635c1d09054dc81'/>
<id>fe285ec16b65ac6177a404baa635c1d09054dc81</id>
<content type='text'>
We already define EV_USE_REALTIME to 0 to avoid the use of
clock_gettime() (to avoid depending on librt).  But in some build
environments libev can detect support for a monotonic clock, which
also results in using clock_gettime().  Define EV_USE_MONOTONIC to 0
as well to prevent this.

ticket: 7350 (new)
target_version: 1.10.4
tags: pullup
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We already define EV_USE_REALTIME to 0 to avoid the use of
clock_gettime() (to avoid depending on librt).  But in some build
environments libev can detect support for a monotonic clock, which
also results in using clock_gettime().  Define EV_USE_MONOTONIC to 0
as well to prevent this.

ticket: 7350 (new)
target_version: 1.10.4
tags: pullup
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop misusing gss_release_buffer in test programs</title>
<updated>2012-08-11T04:28:34+00:00</updated>
<author>
<name>Greg Hudson</name>
<email>ghudson@mit.edu</email>
</author>
<published>2012-08-11T04:17:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=64903f771f8ca381013ec49fc2a5e5d69bf4bcff'/>
<id>64903f771f8ca381013ec49fc2a5e5d69bf4bcff</id>
<content type='text'>
Use free() instead of gss_release_buffer() when freeing the locally
allocated context_token in the sample gss-server program.  Use
gssalloc_free() instead of free when freeing buffers in
t_kgss_kernel.c (where we can't use gss_release_buffer).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use free() instead of gss_release_buffer() when freeing the locally
allocated context_token in the sample gss-server program.  Use
gssalloc_free() instead of free when freeing buffers in
t_kgss_kernel.c (where we can't use gss_release_buffer).
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the UNICODE defines from wshelper</title>
<updated>2012-07-16T13:31:15+00:00</updated>
<author>
<name>Alexey Melnikov</name>
<email>alexey.melnikov@isode.com</email>
</author>
<published>2011-09-22T17:12:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gd/public_git/krb5.git/commit/?id=7d156d88ce5cdc40b1df02f051d65b3ad93c60e1'/>
<id>7d156d88ce5cdc40b1df02f051d65b3ad93c60e1</id>
<content type='text'>
wshelper is clearly not intended to use unicode:
wprintf is used extensively and exclusively to write to char[] buffers and
fields in dns structs are used as explicitly ASCII text.

Signed-off-by: Alexey Melnikov &lt;aamelnikov@gmail.com&gt;

ticket: 7210 (new)
tags: pullup
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
wshelper is clearly not intended to use unicode:
wprintf is used extensively and exclusively to write to char[] buffers and
fields in dns structs are used as explicitly ASCII text.

Signed-off-by: Alexey Melnikov &lt;aamelnikov@gmail.com&gt;

ticket: 7210 (new)
tags: pullup
</pre>
</div>
</content>
</entry>
</feed>
