From: Wez Furlong Date: Fri, 19 Dec 2003 23:19:19 +0000 (+0000) Subject: Forgot to add embed config.w32, and tweak version resource when CREDITS file is missing. X-Git-Tag: php-5.0.0b3~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=deb3bff21afe9ab805e13edcbcdae231caccf160;p=php Forgot to add embed config.w32, and tweak version resource when CREDITS file is missing. --- diff --git a/sapi/embed/config.w32 b/sapi/embed/config.w32 new file mode 100644 index 0000000000..8ea0781ed3 --- /dev/null +++ b/sapi/embed/config.w32 @@ -0,0 +1,8 @@ +// vim:ft=javascript +// $Id$ + +ARG_ENABLE('embed', 'Embedded SAPI library', 'no'); + +if (PHP_EMBED != "no") { + SAPI('embed', 'php_embed.c', 'php' + PHP_VERSION + 'embed.lib'); +} diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 15310f91b8..7cb4f2ec93 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.22 2003-12-19 20:39:02 wez Exp $ +// $Id: confutils.js,v 1.23 2003-12-19 23:19:18 wez Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -541,7 +541,7 @@ function generate_version_info_resource(makefiletarget, creditspath) var res_desc = "PHP " + makefiletarget; var res_prod_name = res_desc; var credits; - var thanks = null; + var thanks = ""; var logo = ""; if (FSO.FileExists(creditspath + '/CREDITS')) {