Re: [PATCH] Makefile: promote wildmatch to be the default fnmatch implementation

2013-05-30 Thread Duy Nguyen
On Thu, May 30, 2013 at 9:25 AM, Junio C Hamano wrote: > Nguyễn Thái Ngọc Duy writes: > >> This makes git use wildmatch by default for all fnmatch() calls. Users >> who want to use system fnmatch (or compat fnmatch) need to set >> NO_WILDMATCH flag. >> >> wildmatch is a drop-in fnmatch replaceme

Re: [PATCH] Makefile: promote wildmatch to be the default fnmatch implementation

2013-05-29 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > This makes git use wildmatch by default for all fnmatch() calls. Users > who want to use system fnmatch (or compat fnmatch) need to set > NO_WILDMATCH flag. > > wildmatch is a drop-in fnmatch replacement with more features. Using > wildmatch gives us a consistent b

[PATCH] Makefile: promote wildmatch to be the default fnmatch implementation

2013-05-29 Thread Nguyễn Thái Ngọc Duy
This makes git use wildmatch by default for all fnmatch() calls. Users who want to use system fnmatch (or compat fnmatch) need to set NO_WILDMATCH flag. wildmatch is a drop-in fnmatch replacement with more features. Using wildmatch gives us a consistent behavior across platforms. The tentative pla