<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nx-libs/nx-X11/lib/X11/util, branch 3.5.99.6</title>
<subtitle>NXv3 (redistributed) 
</subtitle>
<id>https://cgit.arctica-project.org/nx-libs/atom?h=3.5.99.6</id>
<link rel='self' href='https://cgit.arctica-project.org/nx-libs/atom?h=3.5.99.6'/>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/'/>
<updated>2016-11-02T16:54:04+00:00</updated>
<entry>
<title>remove unused mkks.sh</title>
<updated>2016-11-02T16:54:04+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2016-10-30T18:05:56+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=7d884049b20e50f7a35098874dad2a42e36bf6b6'/>
<id>urn:sha1:7d884049b20e50f7a35098874dad2a42e36bf6b6</id>
<content type='text'>
although upstream still includes it.
</content>
</entry>
<entry>
<title>makekeys: move buf declaration from global to main to silence gcc -Wshadow</title>
<updated>2016-10-10T20:52:32+00:00</updated>
<author>
<name>Alan Coopersmith</name>
<email>alan.coopersmith@oracle.com</email>
</author>
<published>2011-12-14T03:58:30+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=6165dafdae0eaac74e46ffffb1ea85fcaa7a96a4'/>
<id>urn:sha1:6165dafdae0eaac74e46ffffb1ea85fcaa7a96a4</id>
<content type='text'>
The global was only referenced in the main() function, which passes it
as an argument of the same name to the parse_line() function, leading
to gcc -Wshadow warnings:

makekeys.c: In function ‘parse_line’:
makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
makekeys.c:54:13: warning: shadowed declaration is here

Signed-off-by: Alan Coopersmith &lt;alan.coopersmith@oracle.com&gt;
</content>
</entry>
<entry>
<title>makekeys: Fix build/target word size mismatch when cross-compiling</title>
<updated>2016-10-10T20:52:32+00:00</updated>
<author>
<name>Derek Buitenhuis</name>
<email>derek.buitenhuis@gmail.com</email>
</author>
<published>2011-09-22T22:44:13+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=62e5b0ff80f91a66163386e2192bcb8e0b2d1721'/>
<id>urn:sha1:62e5b0ff80f91a66163386e2192bcb8e0b2d1721</id>
<content type='text'>
Since makekeys is built using build environment's gcc and
runs natively, we have to make sure that the size of the
Signature type is the same on both the native environment
and the target, otherwise we get mismatches upon running X,
and some LSB test failures (xts5).

Use an unsigned 32-bit integer on all platforms. Also,
eliminate the redundant multiple typedefs for the
Signature type.

Signed-off-by: Derek Buitenhuis &lt;derek.buitenhuis@gmail.com&gt;
Reviewed-by: Daniel Stone &lt;daniel@fooishbar.org&gt;
</content>
</entry>
<entry>
<title>makekeys: Scan vendor keysyms as well as core</title>
<updated>2016-10-10T20:52:32+00:00</updated>
<author>
<name>Daniel Stone</name>
<email>daniel@fooishbar.org</email>
</author>
<published>2010-06-15T17:48:48+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=c98265ab4634db314eeaa54e55ee8edb3c803967'/>
<id>urn:sha1:c98265ab4634db314eeaa54e55ee8edb3c803967</id>
<content type='text'>
Since we can't really live without vendor keysyms, scan them all in to
generate ks_tables.h, rather than only doing the core ones, and leaving
the vendor syms to be manually synchronised with XKeysymDB.

Signed-off-by: Daniel Stone &lt;daniel@fooishbar.org&gt;
Reviewed-by: Alan Coopersmith &lt;alan.coopersmith@oracle.com&gt;
</content>
</entry>
<entry>
<title>When makekeys fails to find a good hash, print error instead of divide-by-zero</title>
<updated>2016-10-10T20:52:31+00:00</updated>
<author>
<name>Alan Coopersmith</name>
<email>alan.coopersmith@sun.com</email>
</author>
<published>2009-03-17T22:42:19+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=70327993a44f2cfbe8ba46d42bdda7fea2327e1e'/>
<id>urn:sha1:70327993a44f2cfbe8ba46d42bdda7fea2327e1e</id>
<content type='text'>
Signed-off-by: Alan Coopersmith &lt;alan.coopersmith@sun.com&gt;
</content>
</entry>
<entry>
<title>Increase size of working arrays in the makekeys utility program.</title>
<updated>2016-10-10T20:52:31+00:00</updated>
<author>
<name>James Cloos</name>
<email>cloos@jhcloos.com</email>
</author>
<published>2008-10-25T13:13:08+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=f573654008c47d8a9e8ea8bbb6d91edffa08ced2'/>
<id>urn:sha1:f573654008c47d8a9e8ea8bbb6d91edffa08ced2</id>
<content type='text'>
Makekeys is used to create an optimal hash of the keysyms defined
in x11proto’s keysymdef.h.

The recent addition of new keysyms there has triggered a bug in
makekeys where it tries to use a zero on the rhs of the % (mod)
operator (resulting in a divide by zero error) whenever it fails
to find a solution within its constraints.

Increasing the size of the arrays allows it to find a solution for
the current set of keysyms.

Makekeys is only run durring the build process, so this has no impact
on users of libX11, only on the amount of VM needed to build it.

It still needs a more complete fix, but this allows compiles to
progress until that is completed.
</content>
</entry>
<entry>
<title>update makekeys.c to libX11 1.3.4 (+ fix)</title>
<updated>2016-10-10T20:52:30+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2016-08-01T22:51:13+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=7b0bdde5c5ce290d52d6e6aba1cd73fe3130093a'/>
<id>urn:sha1:7b0bdde5c5ce290d52d6e6aba1cd73fe3130093a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>VCS info lines: Remove ancient X.org / XFree86 VCS info line from code files.</title>
<updated>2016-07-05T23:09:15+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-07-05T14:32:57+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=6144b615dd7ae2acd786aaa08f66c9743870b709'/>
<id>urn:sha1:6144b615dd7ae2acd786aaa08f66c9743870b709</id>
<content type='text'>
 This has already been started while replacing copyright info in file
 headers and has now been completed with this commit.
</content>
</entry>
<entry>
<title>Clear header file namespace separation (&lt;X11/...&gt; vs. &lt;nx-X11/...&gt;).</title>
<updated>2015-12-28T12:15:24+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2015-07-08T14:16:40+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=433d8186588698ce6a435fbff5e9d40a37b78be9'/>
<id>urn:sha1:433d8186588698ce6a435fbff5e9d40a37b78be9</id>
<content type='text'>
 In the process of building nxagent against more and more system-wide installed
 X.org libraries, we come to the limit of including structs from this (bundled
 nx-X11) and that (system-wide X.Org) library.

 This commit introduces a clear namespace separation of headers provided by
 nx-X11 and headers provided by X.Org. This approach is only temporary as we
 want to drop all nx-X11 bundled libraries from nx-libs.

 However, for a while we need to make this separation clear and also ship
 some reduced fake X.Org headers that avoid pulling in libX* and libNX_X*
 symbols at the same time.

 This patch has been tested on Debian jessie and unstable and requires no
 overall testing on various distros and distro versions, as we finally will
 drop all libNX_X* libraries and build against X.org's client libs.

 For now, this hack eases our development / cleanup process.
</content>
</entry>
<entry>
<title>Imported nx-X11-3.1.0-1.tar.gz</title>
<updated>2011-10-10T15:43:39+00:00</updated>
<author>
<name>Reinhard Tartler</name>
<email>siretart@tauware.de</email>
</author>
<published>2011-10-10T15:43:39+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/nx-libs/commit/?id=f4092abdf94af6a99aff944d6264bc1284e8bdd4'/>
<id>urn:sha1:f4092abdf94af6a99aff944d6264bc1284e8bdd4</id>
<content type='text'>
Summary: Imported nx-X11-3.1.0-1.tar.gz
Keywords:

Imported nx-X11-3.1.0-1.tar.gz
into Git repository
</content>
</entry>
</feed>
