Skip to content

Commit 3686682

Browse files
committed
add stubs
1 parent 0d3856f commit 3686682

10 files changed

+2214
-3
lines changed

config.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PHP_ARG_ENABLE(git2-debug, for git2 debug support,
77
if test $PHP_GIT2 != "no"; then
88
PHP_SUBST(GIT2_SHARED_LIBADD)
99

10-
PHP_NEW_EXTENSION(git2, php_git2.c repository.c commit.c tree.c clone.c blob.c helper.c revwalk.c treebuilder.c reference.c g_config.c, $ext_shared)
10+
PHP_NEW_EXTENSION(git2, php_git2.c repository.c commit.c tree.c clone.c blob.c helper.c revwalk.c treebuilder.c reference.c g_config.c object.c index.c, $ext_shared)
1111
PHP_ADD_INCLUDE([$ext_srcdir/libgit2/include])
1212

1313
# for now

gen.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
$d--;
2424
}
2525

26-
if (isset($_SERVER['argv'][3]) && !preg_match("/{$_SERVER['argv'][3]}/", $match[2][$i])) {
26+
if (isset($_SERVER['argv'][3]) && preg_match("/{$_SERVER['argv'][3]}/", $match[2][$i])) {
2727
continue;
2828
}
2929

0 commit comments

Comments
 (0)