Add config.w32 template to ext_skel

This commit is contained in:
Wez Furlong 2004-05-16 11:49:35 +00:00
parent 9e3956b313
commit 57cf4805a9

View File

@ -170,6 +170,22 @@ if test "\$PHP_$EXTNAME" != "no"; then
fi
eof
$ECHO_N " config.w32$ECHO_C"
cat >config.w32 <<eof
// \$Id\$
// vim:ft=javascript
// If your extension references something external, use ARG_WITH
// ARG_WITH("$extname", "for $extname support", "no");
// Otherwise, use ARG_ENABLE
// ARG_ENABLE("$extname", "enable $extname support", "no");
if (PHP_$EXTNAME != "no") {
EXTENSION("$extname", "$extname.c")
}
eof
$ECHO_N " .cvsignore$ECHO_C"
cat >.cvsignore <<eof