<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/lib/replace/libreplace_cc.m4, branch talloc-2.0.8</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>build: define _BSD_TYPES on IRIX to have types like u_short</title>
<updated>2012-09-07T14:42:14+00:00</updated>
<author>
<name>Björn Jacke</name>
<email>bj@sernet.de</email>
</author>
<published>2012-09-07T13:56:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=5c3769b056ee0e7c2243907dc87714587695ea2a'/>
<id>5c3769b056ee0e7c2243907dc87714587695ea2a</id>
<content type='text'>
why the hell do IRIX systems headers like quota.h use types that are available
only with such a define...?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
why the hell do IRIX systems headers like quota.h use types that are available
only with such a define...?
</pre>
</div>
</content>
</entry>
<entry>
<title>s3/aio_fork: fix build on irix</title>
<updated>2012-07-26T16:27:40+00:00</updated>
<author>
<name>Björn Jacke</name>
<email>bj@sernet.de</email>
</author>
<published>2012-07-26T16:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=4f0b8f30c981249012c958768e58857d5b4c27f5'/>
<id>4f0b8f30c981249012c958768e58857d5b4c27f5</id>
<content type='text'>
IRIX needs _XOPEN_SOURCE defined for SCM_RIGHTS to be available
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
IRIX needs _XOPEN_SOURCE defined for SCM_RIGHTS to be available
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/replace: Add getconf LFS_CFLAGS support to autoconf build</title>
<updated>2012-04-05T00:39:08+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2012-04-04T22:25:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=813d31183dfba7ac702e93b26640ce4d5d0d9918'/>
<id>813d31183dfba7ac702e93b26640ce4d5d0d9918</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>libreplace: Don't check for standards.h on darwin (Lion)</title>
<updated>2011-12-25T12:31:58+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2011-12-23T20:37:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=c3a4057a21c87cabbc03692b170e9e78badd9e5c'/>
<id>c3a4057a21c87cabbc03692b170e9e78badd9e5c</id>
<content type='text'>
standards.h on Lion holds a #warning that standards.h will be removed. This is
annoying during the build.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
standards.h on Lion holds a #warning that standards.h will be removed. This is
annoying during the build.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change uint_t to unsigned int in lib/replace</title>
<updated>2010-02-02T06:18:16+00:00</updated>
<author>
<name>Matt Kraai</name>
<email>mkraai@beckman.com</email>
</author>
<published>2010-01-05T17:43:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=a2c95a5d961594f2accbb032cd7e8da9767e2e47'/>
<id>a2c95a5d961594f2accbb032cd7e8da9767e2e47</id>
<content type='text'>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid using deprecated form of AC_CHECK_TYPE.</title>
<updated>2009-04-22T08:36:47+00:00</updated>
<author>
<name>Brad Hards</name>
<email>bradh@frogmouth.net</email>
</author>
<published>2009-04-22T08:32:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=703d5897701c22250a2d6e8ffba9ecf01db58f1f'/>
<id>703d5897701c22250a2d6e8ffba9ecf01db58f1f</id>
<content type='text'>
libreplace makes use of an older form of AC_CHECK_TYPE which basically
provides a fallback definition for the type if it isn't available.
http://www.gnu.org/software/hello/manual/autoconf/Obsolete-Macros.html#Obsolete-Macros
shows why this isn't a good idea (its not so important, except for pointer types).
This patch partly addresses the issue.

Signed-off-by: Jelmer Vernooij &lt;jelmer@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
libreplace makes use of an older form of AC_CHECK_TYPE which basically
provides a fallback definition for the type if it isn't available.
http://www.gnu.org/software/hello/manual/autoconf/Obsolete-Macros.html#Obsolete-Macros
shows why this isn't a good idea (its not so important, except for pointer types).
This patch partly addresses the issue.

Signed-off-by: Jelmer Vernooij &lt;jelmer@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Move common libraries from root to lib/.</title>
<updated>2008-09-17T12:11:12+00:00</updated>
<author>
<name>Jelmer Vernooij</name>
<email>jelmer@samba.org</email>
</author>
<published>2008-09-17T12:11:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=94855cd69248f0f90b6c828588afa012adc8bd45'/>
<id>94855cd69248f0f90b6c828588afa012adc8bd45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
