<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.6.4-rc2</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.6.4-rc2</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.6.4-rc2'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2009-07-23T04:57:41Z</updated>
<entry>
<title>configure.ac: properly unset NEEDS_SSL_WITH_CRYPTO when sha1 func is missing</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Brandon Casey</name>
<email>drafnel@gmail.com</email>
</author>
<published>2009-07-22T22:20:53Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=0ad8ff2cd185e84fd49dd961370411e379681f10'/>
<id>urn:sha1:0ad8ff2cd185e84fd49dd961370411e379681f10</id>
<content type='text'>
The empty assignment NEEDS_SSL_WITH_CRYPTO= was mistakenly paired with the
assignment NEEDS_SSL_WITH_CRYPTO=YesPlease in the "action-if-found"
parameter of the AC_CHECK_LIB macro.  The empty assignment was intended for
the "action-if-not-found" section, since in that case, the necessary sha1
hash function was not found and the internal sha1 implementation will be
used instead.

Signed-off-by: Brandon Casey &lt;drafnel@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>janitor: useless checks before free</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Pierre Habouzit</name>
<email>madcoder@debian.org</email>
</author>
<published>2009-07-22T21:51:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=24deea5273709f3685f981c33468a0cead6cc147'/>
<id>urn:sha1:24deea5273709f3685f981c33468a0cead6cc147</id>
<content type='text'>
Signed-off-by: Pierre Habouzit &lt;madcoder@debian.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>janitor: add DIV_ROUND_UP and use it.</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Pierre Habouzit</name>
<email>madcoder@debian.org</email>
</author>
<published>2009-07-22T21:34:35Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=98cb6f30f708ef416572bf65bd26ac9f998ae0dc'/>
<id>urn:sha1:98cb6f30f708ef416572bf65bd26ac9f998ae0dc</id>
<content type='text'>
Signed-off-by: Pierre Habouzit &lt;madcoder@debian.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>refactor: use bitsizeof() instead of 8 * sizeof()</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Pierre Habouzit</name>
<email>madcoder@debian.org</email>
</author>
<published>2009-07-22T21:34:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f630cfda8800aee03c7eb2fcd0f840730fbe43b9'/>
<id>urn:sha1:f630cfda8800aee03c7eb2fcd0f840730fbe43b9</id>
<content type='text'>
Signed-off-by: Pierre Habouzit &lt;madcoder@debian.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>janitor: use NULL and not 0 for pointers.</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Pierre Habouzit</name>
<email>madcoder@debian.org</email>
</author>
<published>2009-07-22T21:34:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=67da52bedc5750c10a732b9da7d64d5ef73f3b8a'/>
<id>urn:sha1:67da52bedc5750c10a732b9da7d64d5ef73f3b8a</id>
<content type='text'>
Brought to you thanks to coccinelle:

    ---8&lt;----
    @@
    expression *E;
    @@
    (
      E ==
    - 0
    + NULL
    |
      E !=
    - 0
    + NULL
    |
      E =
    - 0
    + NULL
    )

    @@
    identifier f;
    type T;
    @@
    T *f(...) {
    &lt;...
    - return 0;
    + return NULL;
    ...&gt;
    }
    ---&gt;8----

There are a lot more hits in compat/nedmallox and compat/regex but these
are borrowed code we rather do not want to maintain our own forks for,
and this patch refrains from touching them.

Signed-off-by: Pierre Habouzit &lt;madcoder@debian.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git stash: modernize use of "dashed" git-XXX calls</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Martin Koegler</name>
<email>mkoegler@auto.tuwien.ac.at</email>
</author>
<published>2009-07-22T05:30:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=520707905388e293a482066599a1c181ef32f2f0'/>
<id>urn:sha1:520707905388e293a482066599a1c181ef32f2f0</id>
<content type='text'>
Replace remaining git-XXX calls with git XXX.

Signed-off-by: Martin Koegler &lt;mkoegler@auto.tuwien.ac.at&gt;
Acked-by: Nanako Shiraishi &lt;nanako3@lavabit.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Improve doc for format-patch threading options.</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Yann Dirson</name>
<email>ydirson@altern.org</email>
</author>
<published>2009-07-22T21:39:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f693b7e9a5b7b009e71389310322fe864cd16046'/>
<id>urn:sha1:f693b7e9a5b7b009e71389310322fe864cd16046</id>
<content type='text'>
This hopefully makes the relationship between threading options of
format-patch and send-email easier to grasp.

Signed-off-by: Yann Dirson &lt;ydirson@altern.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>List send-email config options in config.txt.</title>
<updated>2009-07-23T04:57:41Z</updated>
<author>
<name>Yann Dirson</name>
<email>ydirson@altern.org</email>
</author>
<published>2009-07-22T21:39:30Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=65180c6618653acf7642fc2f2d4a93afacb489d8'/>
<id>urn:sha1:65180c6618653acf7642fc2f2d4a93afacb489d8</id>
<content type='text'>
Also mention deprecated aliases that do not appear in the send-email
manpage.

Signed-off-by: Yann Dirson &lt;ydirson@altern.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>configure.ac: rework/fix the NEEDS_RESOLV and NEEDS_LIBGEN tests</title>
<updated>2009-07-23T04:56:51Z</updated>
<author>
<name>Brandon Casey</name>
<email>drafnel@gmail.com</email>
</author>
<published>2009-07-21T20:23:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a1142892fd505c304e2e825902bf5d7a38044e87'/>
<id>urn:sha1:a1142892fd505c304e2e825902bf5d7a38044e87</id>
<content type='text'>
The "action" parameters for these two tests were supplied incorrectly for
the way the tests were implemented.  The tests check whether a program
which calls hstrerror() or basename() successfully links when -lresolv or
-lgen are used, respectively.  A successful linking would result in
NEEDS_RESOLV or NEEDS_LIBGEN being unset, and failure would result in
setting the respective variable.

Aside from that issue, the tests did not handle the case where neither
library was necessary for accessing the functions in question.  So solve
both of these issues by re-working the two tests so that their form is like
the NEEDS_SOCKET test which attempts to link with just the c library, and
if it fails then assumes that the additional library is necessary and sets
the appropriate variable.

Also an entry in the config.mak.in file is necessary for the NEEDS_LIBGEN
variable to appear in the config.mak.autogen file with the value assigned
by the configure script.  Without it, the generated shell script would
contain a snippet like this:

   for ac_lib in ; do
      ...

which is incorrect.

Signed-off-by: Brandon Casey &lt;drafnel@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2009-07-23T04:56:46Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-07-23T04:56:46Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=248b6c0609cf7cc9411a9094c4868ce9cdbd4922'/>
<id>urn:sha1:248b6c0609cf7cc9411a9094c4868ce9cdbd4922</id>
<content type='text'>
* maint:
  Trailing whitespace and no newline fix
  diff --cc: a lost line at the beginning of the file is shown incorrectly
  combine-diff.c: fix performance problem when folding common deleted lines
</content>
</entry>
</feed>
