mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
compat: add strtok_r()
Windows does not have strtok_r (and while it does have an identical strtok_s, but it is not obvious how to use it). Grab an implementation from glibc. The svn-fe tool uses strtok_r to parse paths. Acked-by: Johannes Sixt <j6t@kdbg.org> Helped-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
6ad263ce7a
commit
78457bc0cc
@@ -783,6 +783,12 @@ GIT_CHECK_FUNC(strcasestr,
|
||||
[NO_STRCASESTR=YesPlease])
|
||||
AC_SUBST(NO_STRCASESTR)
|
||||
#
|
||||
# Define NO_STRTOK_R if you don't have strtok_r
|
||||
GIT_CHECK_FUNC(strtok_r,
|
||||
[NO_STRTOK_R=],
|
||||
[NO_STRTOK_R=YesPlease])
|
||||
AC_SUBST(NO_STRTOK_R)
|
||||
#
|
||||
# Define NO_MEMMEM if you don't have memmem.
|
||||
GIT_CHECK_FUNC(memmem,
|
||||
[NO_MEMMEM=],
|
||||
|
||||
Reference in New Issue
Block a user