<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nx-libs/nx-X11/programs/Xserver/os/utils.c, branch 3.5.99.2</title>
<subtitle>NXv3 (redistributed) 
</subtitle>
<id>https://openid.arctica-project.org/nx-libs/atom?h=3.5.99.2</id>
<link rel='self' href='https://openid.arctica-project.org/nx-libs/atom?h=3.5.99.2'/>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/'/>
<updated>2016-10-06T19:16:17+00:00</updated>
<entry>
<title>xserver: adapt xkbsrc includes syntax to match upstream</title>
<updated>2016-10-06T19:16:17+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2016-10-04T19:24:56+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=736a2333e655ecfee78cb82f074cce5e84bdc218'/>
<id>urn:sha1:736a2333e655ecfee78cb82f074cce5e84bdc218</id>
<content type='text'>
</content>
</entry>
<entry>
<title>replace transport.c link by xstrans.c</title>
<updated>2016-10-06T19:16:17+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2016-09-26T21:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=b60f66bb9df6cbde57bcfb335701c175e0df2c74'/>
<id>urn:sha1:b60f66bb9df6cbde57bcfb335701c175e0df2c74</id>
<content type='text'>
Just like upstream does
</content>
</entry>
<entry>
<title>xserver: use own copy of XKBsrv.h header</title>
<updated>2016-10-06T19:16:16+00:00</updated>
<author>
<name>Ulrich Sibiller</name>
<email>uli42@gmx.de</email>
</author>
<published>2016-09-26T18:43:23+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=3739a9b3033ccaf139a296f8647f7c6cddc9db75'/>
<id>urn:sha1:3739a9b3033ccaf139a296f8647f7c6cddc9db75</id>
<content type='text'>
just like upstream does
</content>
</entry>
<entry>
<title>Per-file copyright notices: Update copyright information in file headers that NoMachine placed there own copyright statement in.</title>
<updated>2016-07-05T23:07:24+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-07-05T14:22:51+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=51c3d42f3d15b181d58a0df1e5abac8d298d4484'/>
<id>urn:sha1:51c3d42f3d15b181d58a0df1e5abac8d298d4484</id>
<content type='text'>
</content>
</entry>
<entry>
<title>os: Make sure that writing our pid to the lock file actually worked</title>
<updated>2016-07-05T06:11:42+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2016-06-29T11:45:20+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=b5cceb740b60b62ab7d79c0ad4c00810b983efc5'/>
<id>urn:sha1:b5cceb740b60b62ab7d79c0ad4c00810b983efc5</id>
<content type='text'>
 There's no sense verifying that we can create the lock file and then
 ignoring the return value from write.

 Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
 Reviewed-by: Jamey Sharp &lt;jamey@minilop.net&gt;
 Backport to nx-libs: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt;
</content>
</entry>
<entry>
<title>os: Remove deprecated malloc/free wrappers, clean {X,XNF}{alloc,calloc,realloc,free,strdup} from pre-C89 baggage</title>
<updated>2016-07-02T12:05:31+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-27T10:12:31+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=f779b2e3c4eba5c15d20cc13ebd08276a66ac012'/>
<id>urn:sha1:f779b2e3c4eba5c15d20cc13ebd08276a66ac012</id>
<content type='text'>
 Backported from X.org:

 commit cad9b053d52f62432dfd70e42e0240de77027cae
 Author: Adam Jackson &lt;ajax@redhat.com&gt;
 Date:   Tue Jul 8 13:24:25 2014 -0400

    os: Remove deprecated malloc/free wrappers

    Reviewed-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;
    Signed-off-by: Adam Jackson &lt;ajax@redhat.com&gt;

 commit e983848ab44b0769f97f6207f1aa8b4f127be6a9
 Author: Mikhail Gusarov &lt;dottedmag@dottedmag.net&gt;
 Date:   Thu May 6 00:16:24 2010 +0700

    Clean {X,XNF}{alloc,calloc,realloc,free,strdup} from pre-C89 baggage

    C89 guarantees alignment of pointers returned from malloc/calloc/realloc, so
    stop fiddling with alignment manually and just pass the arguments to library
    functions.

    Also convert silent error when negative size is passed into function into
    warning in log file.

    Signed-off-by: Mikhail Gusarov &lt;dottedmag@dottedmag.net&gt;
    Reviewed-by: Peter Hutterer &lt;peter.hutterer@who-t.net&gt;

 Backport to nx-libs: Mike Gabriel &lt;mike.gabriel@das-netzwerkteam.de&gt;
</content>
</entry>
<entry>
<title>nx-X11/programs/Xserver: Drop {X,x}realloc() macros, use realloc() instead.</title>
<updated>2016-07-02T12:05:31+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-26T00:08:32+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=74a5450bc058354e55c1589e64ef8e73775cebc4'/>
<id>urn:sha1:74a5450bc058354e55c1589e64ef8e73775cebc4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>nx-X11/programs/Xserver: Drop {X,x}alloc() macros, use malloc() instead.</title>
<updated>2016-07-02T12:05:30+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-25T23:51:18+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=2646fc254e75c4a7fc10d03d1139d0bd708ceae9'/>
<id>urn:sha1:2646fc254e75c4a7fc10d03d1139d0bd708ceae9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>nx-X11/programs/Xserver: Drop {X,x}free() macros, use free() instead.</title>
<updated>2016-07-02T12:05:30+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-25T23:38:22+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=acf87144d019f18e646501657d9082c6eba77f54'/>
<id>urn:sha1:acf87144d019f18e646501657d9082c6eba77f54</id>
<content type='text'>
Fixes ArcticaProject/nx-libs#105
</content>
</entry>
<entry>
<title>noRRXineramaExtension: Make Boolean configurable via new cmdline switch (+|-rrxinerama).</title>
<updated>2016-06-18T17:44:20+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2016-06-09T14:24:10+00:00</published>
<link rel='alternate' type='text/html' href='https://openid.arctica-project.org/nx-libs/commit/?id=3f8aa38feb327688ef62836613d160e80f868575'/>
<id>urn:sha1:3f8aa38feb327688ef62836613d160e80f868575</id>
<content type='text'>
</content>
</entry>
</feed>
