<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/lib/replace/system, branch v3-5-test</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>Fix bug 7462 - Non-standard SA_RESETHAND is used in ...lib/tevent/tevent_sig</title>
<updated>2011-08-02T18:49:46+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2011-08-02T18:49:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=490986add9d5e80b24e90dbfe3e3ef23ce5584a0'/>
<id>490986add9d5e80b24e90dbfe3e3ef23ce5584a0</id>
<content type='text'>
Make SA_RESETHAND conditional on its existance.

Autobuild-User: Jeremy Allison &lt;jra@samba.org&gt;
Autobuild-Date: Mon Aug  1 22:03:45 CEST 2011 on sn-devel-104
(cherry picked from commit 0c67efdd68b9808542c090b9fd9920e4e37d85d0)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make SA_RESETHAND conditional on its existance.

Autobuild-User: Jeremy Allison &lt;jra@samba.org&gt;
Autobuild-Date: Mon Aug  1 22:03:45 CEST 2011 on sn-devel-104
(cherry picked from commit 0c67efdd68b9808542c090b9fd9920e4e37d85d0)
</pre>
</div>
</content>
</entry>
<entry>
<title>libreplace: include sys/file.h only when available</title>
<updated>2011-06-17T19:01:19+00:00</updated>
<author>
<name>Björn Jacke</name>
<email>bj@sernet.de</email>
</author>
<published>2010-05-30T19:52:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=a33b6032beb45f7ba07432899236fccb133a6dfc'/>
<id>a33b6032beb45f7ba07432899236fccb133a6dfc</id>
<content type='text'>
thanks to Joachim Schmitz &lt;schmitz@hp.com&gt;. This fixes #7460.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
thanks to Joachim Schmitz &lt;schmitz@hp.com&gt;. This fixes #7460.
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/replace: add replacement for IPV6_V6ONLY on linux systems with broken headers</title>
<updated>2010-05-11T12:53:09+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2010-04-24T17:02:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=15b509b4b03a2c19caf4abfe475666f0720b4441'/>
<id>15b509b4b03a2c19caf4abfe475666f0720b4441</id>
<content type='text'>
This is needed on SLES8. See bug 7196.

metze
(cherry picked from commit e06cf3950252a46486aa046a4552ed6ebff175b3)

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is needed on SLES8. See bug 7196.

metze
(cherry picked from commit e06cf3950252a46486aa046a4552ed6ebff175b3)

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>libreplace: white space cleanups</title>
<updated>2009-09-15T18:26:24+00:00</updated>
<author>
<name>Björn Jacke</name>
<email>bj@sernet.de</email>
</author>
<published>2009-09-15T18:26:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=8703d9f5bfd8ded57f263fd4a1f70d121b656b03'/>
<id>8703d9f5bfd8ded57f263fd4a1f70d121b656b03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>libreplace: undef AI_ADDRCONFIG on QNX 6.3.0 (fix bug #6630)</title>
<updated>2009-08-12T11:27:39+00:00</updated>
<author>
<name>Matt Kraai</name>
<email>mkraai@beckman.com</email>
</author>
<published>2009-08-12T06:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=91d13b68be55728a85b3832e2da9267dbf4f2464'/>
<id>91d13b68be55728a85b3832e2da9267dbf4f2464</id>
<content type='text'>
Some of the functions in source3/lib/util_sock.c use AI_ADDRCONFIG.  On QNX
6.3.0, this macro is defined but, if it's used, getaddrinfo will fail.  This
prevents smbd from opening any sockets.

If I undefine AI_ADDRCONFIG on such systems and allow
lib/replace/system/network.h to define it to be 0, this works around the issue.

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some of the functions in source3/lib/util_sock.c use AI_ADDRCONFIG.  On QNX
6.3.0, this macro is defined but, if it's used, getaddrinfo will fail.  This
prevents smbd from opening any sockets.

If I undefine AI_ADDRCONFIG on such systems and allow
lib/replace/system/network.h to define it to be 0, this works around the issue.

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:heimdal: import lorikeet-heimdal-200906080040 (commit 904d0124b46eed7a8ad6e5b73e892ff34b6865ba)</title>
<updated>2009-06-11T21:45:48+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2009-06-08T09:06:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=9b261c008a395a323e0516f4cd3f3134aa050577'/>
<id>9b261c008a395a323e0516f4cd3f3134aa050577</id>
<content type='text'>
Also including the supporting changes required to pass make test

A number of heimdal functions and constants have changed since we last
imported a tree (for the better, but inconvenient for us).

Andrew Bartlett
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also including the supporting changes required to pass make test

A number of heimdal functions and constants have changed since we last
imported a tree (for the better, but inconvenient for us).

Andrew Bartlett
</pre>
</div>
</content>
</entry>
<entry>
<title>Add langinfo.h to the system/locale.h</title>
<updated>2009-06-08T11:20:51+00:00</updated>
<author>
<name>Timur I. Bakeyev</name>
<email>timur@com.bat.ru</email>
</author>
<published>2009-06-07T12:39:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=40178dd81e829878bbc7dcbb51184f747421e84b'/>
<id>40178dd81e829878bbc7dcbb51184f747421e84b</id>
<content type='text'>
This patch for Samba4. It's not really inspired by any real need, just
for the consistency. We define replace/system/locale.h as a generic
header, that includes all locale related headers and we are using
nl_langinfo at least in Samba3. So, it would be consistent to add yet
another locale-related header to the set of locale.h headers.

Here is the patch.

With regards,
Timur Bakeyev.

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch for Samba4. It's not really inspired by any real need, just
for the consistency. We define replace/system/locale.h as a generic
header, that includes all locale related headers and we are using
nl_langinfo at least in Samba3. So, it would be consistent to add yet
another locale-related header to the set of locale.h headers.

Here is the patch.

With regards,
Timur Bakeyev.

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>replace: add fallback define for IOV_MAX</title>
<updated>2009-06-08T07:40:11+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2009-06-08T07:01:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=bccef8251654f52751ad65e9906323a73c47fdb4'/>
<id>bccef8251654f52751ad65e9906323a73c47fdb4</id>
<content type='text'>
This hopefully fixes the build on IRIX.

metze
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This hopefully fixes the build on IRIX.

metze
</pre>
</div>
</content>
</entry>
<entry>
<title>nss_wrapper: try to fix the build of nss_wrapper on solaris.</title>
<updated>2009-05-30T21:08:12+00:00</updated>
<author>
<name>Günther Deschner</name>
<email>gd@samba.org</email>
</author>
<published>2009-05-30T20:43:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=241db90c310cb930b857d0f8fd20b5428e8ebb68'/>
<id>241db90c310cb930b857d0f8fd20b5428e8ebb68</id>
<content type='text'>
Guenther
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Guenther
</pre>
</div>
</content>
</entry>
<entry>
<title>Only define waitpid replacement if wait4 is available. (It isn't on</title>
<updated>2009-04-20T14:25:16+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2009-04-20T13:47:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39'/>
<id>20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39</id>
<content type='text'>
Windows.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Windows.)
</pre>
</div>
</content>
</entry>
</feed>
