Browse Source

Add config.w32 template to ext_skel

PHP-5.0
Wez Furlong 22 years ago
parent
commit
57cf4805a9
  1. 16
      ext/ext_skel

16
ext/ext_skel

@ -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

Loading…
Cancel
Save