<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/compat, branch v1.4.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.4.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.4.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2006-07-10T07:36:44Z</updated>
<entry>
<title>Fix more typos, primarily in the code</title>
<updated>2006-07-10T07:36:44Z</updated>
<author>
<name>Pavel Roskin</name>
<email>proski@gnu.org</email>
</author>
<published>2006-07-10T05:50:18Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=82e5a82fd73edb80a841f5fab1660e14b9b8f3ad'/>
<id>urn:sha1:82e5a82fd73edb80a841f5fab1660e14b9b8f3ad</id>
<content type='text'>
The only visible change is that git-blame doesn't understand
"--compability" anymore, but it does accept "--compatibility" instead,
which is already documented.

Signed-off-by: Pavel Roskin &lt;proski@gnu.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Rename safe_strncpy() to strlcpy().</title>
<updated>2006-06-25T06:16:25Z</updated>
<author>
<name>Peter Eriksen</name>
<email>s022018@student.dtu.dk</email>
</author>
<published>2006-06-24T14:01:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=817151e61a74241df5b5dd206d27086283f28b84'/>
<id>urn:sha1:817151e61a74241df5b5dd206d27086283f28b84</id>
<content type='text'>
This cleans up the use of safe_strncpy() even more.  Since it has the
same semantics as strlcpy() use this name instead.  Also move the
definition from inside path.c to its own file compat/strlcpy.c, and use
it conditionally at compile time, since some platforms already has
strlcpy().  It's included in the same way as compat/setenv.c.

Signed-off-by: Peter Eriksen &lt;s022018@student.dtu.dk&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>NO_INET_NTOP and compat/inet_ntop.c for some systems (e.g. old Cygwin).</title>
<updated>2006-05-21T23:44:36Z</updated>
<author>
<name>Yakov Lerner</name>
<email>iler.ml@gmail.com</email>
</author>
<published>2006-05-21T21:37:00Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=6ba68ab2884e6c1db942e3bff63d4aa0bf354094'/>
<id>urn:sha1:6ba68ab2884e6c1db942e3bff63d4aa0bf354094</id>
<content type='text'>
For systems which lack inet_ntop(), this adds compat/inet_ntop.c,
and related build constant, NO_INET_NTOP. Older Cygwin(s) lack
inet_ntop().

Signed-off-by: Yakov Lerner &lt;iler.ml@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Add compat/unsetenv.c .</title>
<updated>2006-01-25T23:10:39Z</updated>
<author>
<name>Jason Riedy</name>
<email>ejr@EECS.Berkeley.EDU</email>
</author>
<published>2006-01-25T20:38:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=731043fd4d55b1561ebb5a53daa4b9ff6dfac046'/>
<id>urn:sha1:731043fd4d55b1561ebb5a53daa4b9ff6dfac046</id>
<content type='text'>
Implement a (slow) unsetenv() for older systems.

Signed-off-by: Jason Riedy &lt;ejr@cs.berkeley.edu&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Clean up compatibility definitions.</title>
<updated>2005-12-05T23:50:29Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-12-05T19:54:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4050c0df8ec7043315e2192695de432875239775'/>
<id>urn:sha1:4050c0df8ec7043315e2192695de432875239775</id>
<content type='text'>
This attempts to clean up the way various compatibility
functions are defined and used.

 - A new header file, git-compat-util.h, is introduced.  This
   looks at various NO_XXX and does necessary function name
   replacements, equivalent of -Dstrcasestr=gitstrcasestr in the
   Makefile.

 - Those function name replacements are removed from the Makefile.

 - Common features such as usage(), die(), xmalloc() are moved
   from cache.h to git-compat-util.h; cache.h includes
   git-compat-util.h itself.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>compat/setenv: do not free what we fed putenv(3).</title>
<updated>2005-12-04T22:41:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-12-04T22:41:35Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3a2674337c12e958f8c697af991a0ef6c06ddd4d'/>
<id>urn:sha1:3a2674337c12e958f8c697af991a0ef6c06ddd4d</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Add compat/setenv.c, use in git.c.</title>
<updated>2005-12-04T06:25:25Z</updated>
<author>
<name>Jason Riedy</name>
<email>ejr@EECS.Berkeley.EDU</email>
</author>
<published>2005-12-02T23:08:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e40b61fb6bd2e0ed2dc4799096fcf4c828c28d6d'/>
<id>urn:sha1:e40b61fb6bd2e0ed2dc4799096fcf4c828c28d6d</id>
<content type='text'>
There is no setenv() in Solaris 5.8.  The trivial calls to
setenv() were replaced by putenv() in a much earlier patch,
but setenv() was used again in git.c.  This patch just adds
a compat/setenv.c.

The rule for building git$(X) also needs to include compat.
objects and compiler flags.  Those are now in makefile vars
COMPAT_OBJS and COMPAT_CFLAGS.

Signed-off-by: E. Jason Riedy &lt;ejr@cs.berkeley.edu&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Yank writing-back support from gitfakemmap.</title>
<updated>2005-10-08T22:54:36Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-10-08T22:54:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=f48000fcbe1009c18f1cc46e56cde2cb632071fa'/>
<id>urn:sha1:f48000fcbe1009c18f1cc46e56cde2cb632071fa</id>
<content type='text'>
We do not write through our use of mmap(), so make sure callers pass
MAP_PRIVATE and remove support for writing changes back.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>[PATCH] If NO_MMAP is defined, fake mmap() and munmap()</title>
<updated>2005-10-08T22:54:36Z</updated>
<author>
<name>Johannes Schindelin</name>
<email>Johannes.Schindelin@gmx.de</email>
</author>
<published>2005-10-08T22:54:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=730d48a2ef88a7fb7aa4409d40b1e6964a93267f'/>
<id>urn:sha1:730d48a2ef88a7fb7aa4409d40b1e6964a93267f</id>
<content type='text'>
Since some platforms do not support mmap() at all, and others do only just
so, this patch introduces the option to fake mmap() and munmap() by
malloc()ing and read()ing explicitely.

Signed-off-by: Johannes Schindelin &lt;Johannes.Schindelin@gmx.de&gt;
</content>
</entry>
<entry>
<title>Further clarify licensing status of compat/subprocess.py.</title>
<updated>2005-09-24T01:43:53Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-09-24T01:43:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=dc56bc034176d76ce95e9ba7636e3551d51dc897'/>
<id>urn:sha1:dc56bc034176d76ce95e9ba7636e3551d51dc897</id>
<content type='text'>
PSF license explicitly states the files in Python distribution is
compatible with GPL, and upstream clarified the licensing terms by
shortening its file header.  This version is a verbatim copy from
release24-maint branch form Python CVS.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
