Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
krakjoe committed Nov 6, 2013
1 parent c69c60c commit 9cb7028
Show file tree
Hide file tree
Showing 9 changed files with 542 additions and 0 deletions.
1 change: 1 addition & 0 deletions CREDITS
@@ -0,0 +1 @@
explain
Empty file added EXPERIMENTAL
Empty file.
13 changes: 13 additions & 0 deletions config.m4
@@ -0,0 +1,13 @@
dnl $Id$
dnl config.m4 for extension explain

dnl Comments in this file start with the string 'dnl'.
dnl Remove where necessary. This file will not work
dnl without editing.

PHP_ARG_ENABLE(explain, whether to enable explain support,
[ --enable-explain Enable explain support], yes, yes)

if test "$PHP_EXPLAIN" != "no"; then
PHP_NEW_EXTENSION(explain, explain.c, $ext_shared)
fi
9 changes: 9 additions & 0 deletions config.w32
@@ -0,0 +1,9 @@
// $Id$
// vim:ft=javascript

ARG_ENABLE("explain", "enable explain support", "yes");

if (PHP_EXPLAIN != "no") {
EXTENSION("explain", "explain.c");
}

0 comments on commit 9cb7028

Please sign in to comment.