Skip to content

Commit 41c74b1

Browse files
author
Git for Windows Build Agent
committed
Generate Visual Studio solution
Auto-generated by `make vcxproj`
1 parent d7ae4d7 commit 41c74b1

File tree

89 files changed

+33980
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+33980
-0
lines changed

GIT-BUILD-OPTIONS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
SHELL_PATH='/bin/sh'
2+
TEST_SHELL_PATH='/bin/sh'
3+
PERL_PATH='/usr/bin/perl'
4+
DIFF='diff'
5+
PYTHON_PATH='/usr/bin/python'
6+
TAR='tar'
7+
NO_CURL=''
8+
NO_EXPAT=''
9+
USE_LIBPCRE1=''
10+
USE_LIBPCRE2=''
11+
NO_LIBPCRE1_JIT=''
12+
NO_PERL=''
13+
NO_PTHREADS=''
14+
NO_PYTHON='YesPlease'
15+
NO_UNIX_SOCKETS='YesPlease'
16+
PAGER_ENV='LESS=FRX LV=-c'
17+
DC_SHA1='YesPlease'
18+
X='.exe'
19+
NO_GETTEXT='YesPlease'

bin-wrappers/git

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git.exe" "$@"
36+
;;
37+
esac

bin-wrappers/git-cvsserver

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-cvsserver.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git-cvsserver" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git-cvsserver" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git-cvsserver" "$@"
36+
;;
37+
esac

bin-wrappers/git-receive-pack

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-receive-pack.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git.exe" receive-pack "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git.exe" receive-pack "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git.exe" receive-pack "$@"
36+
;;
37+
esac

bin-wrappers/git-remote-ext

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-remote-ext.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git.exe" remote-ext "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git.exe" remote-ext "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git.exe" remote-ext "$@"
36+
;;
37+
esac

bin-wrappers/git-shell

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-shell.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git-shell.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git-shell.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git-shell.exe" "$@"
36+
;;
37+
esac

bin-wrappers/git-upload-archive

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-upload-archive.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git.exe" upload-archive "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git.exe" upload-archive "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git.exe" upload-archive "$@"
36+
;;
37+
esac

bin-wrappers/git-upload-pack

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and git-upload-pack.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/git-upload-pack.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/git-upload-pack.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/git-upload-pack.exe" "$@"
36+
;;
37+
esac

bin-wrappers/test-fake-ssh

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and t/helper/test-fake-ssh.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH":"$GIT_EXEC_PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/t/helper/test-fake-ssh.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/t/helper/test-fake-ssh.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/t/helper/test-fake-ssh.exe" "$@"
36+
;;
37+
esac

bin-wrappers/test-line-buffer

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and t/helper/test-line-buffer.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH":"$GIT_EXEC_PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/t/helper/test-line-buffer.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/t/helper/test-line-buffer.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/t/helper/test-line-buffer.exe" "$@"
36+
;;
37+
esac

bin-wrappers/test-svn-fe

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/sh
2+
3+
# wrap-for-bin.sh: Template for git executable wrapper scripts
4+
# to run test suite against sandbox, but with only bindir-installed
5+
# executables in PATH. The Makefile copies this into various
6+
# files in bin-wrappers, substituting
7+
# /d/a/1/s and t/helper/test-svn-fe.exe.
8+
9+
test -n "${GIT_EXEC_PATH##*:*}" ||
10+
GIT_EXEC_PATH="$(cygpath -u "$GIT_EXEC_PATH")"
11+
if test -n "$NO_SET_GIT_TEMPLATE_DIR"
12+
then
13+
unset GIT_TEMPLATE_DIR
14+
else
15+
GIT_TEMPLATE_DIR="$GIT_EXEC_PATH"'/templates/blt'
16+
export GIT_TEMPLATE_DIR
17+
fi
18+
GITPERLLIB="$GIT_EXEC_PATH"'/perl/build/lib'"${GITPERLLIB:+:$GITPERLLIB}"
19+
GIT_TEXTDOMAINDIR="$GIT_EXEC_PATH"'/po/build/locale'
20+
PATH="$GIT_EXEC_PATH"'/bin-wrappers:'"$PATH":"$GIT_EXEC_PATH"
21+
22+
export GIT_EXEC_PATH GITPERLLIB PATH GIT_TEXTDOMAINDIR
23+
24+
case "$GIT_DEBUGGER" in
25+
'')
26+
exec "${GIT_EXEC_PATH}/t/helper/test-svn-fe.exe" "$@"
27+
;;
28+
1)
29+
unset GIT_DEBUGGER
30+
exec gdb --args "${GIT_EXEC_PATH}/t/helper/test-svn-fe.exe" "$@"
31+
;;
32+
*)
33+
GIT_DEBUGGER_ARGS="$GIT_DEBUGGER"
34+
unset GIT_DEBUGGER
35+
exec ${GIT_DEBUGGER_ARGS} "${GIT_EXEC_PATH}/t/helper/test-svn-fe.exe" "$@"
36+
;;
37+
esac

0 commit comments

Comments
 (0)