Re: [PHP-DEV] config.w32 quirk

2006-08-14 Thread Frank M. Kromann
For some reason it needs to be re = new RegExp("^\\s*(ARG_(ENABLE|WITH)\([^;]+\);)", "gm"); But that will work. - Frank > Frank M. Kromann wrote: > > That has to do with the way the config.w32 files are processed. > > > > changing one line in win32\build\buildconf.js from > > > > re = new Reg

Re: [PHP-DEV] config.w32 quirk

2006-08-14 Thread Stut
Frank M. Kromann wrote: > That has to do with the way the config.w32 files are processed. > > changing one line in win32\build\buildconf.js from > > re = new RegExp("(ARG_(ENABLE|WITH)\([^;]+\);)", "gm"); > > to > > re = new RegExp("^(ARG_(ENABLE|WITH)\([^;]+\);)", "gm"); > > will prevent this

Re: [PHP-DEV] config.w32 quirk

2006-08-14 Thread Frank M. Kromann
That has to do with the way the config.w32 files are processed. changing one line in win32\build\buildconf.js from re = new RegExp("(ARG_(ENABLE|WITH)\([^;]+\);)", "gm"); to re = new RegExp("^(ARG_(ENABLE|WITH)\([^;]+\);)", "gm"); will prevent this from happening. This change will require the

[PHP-DEV] config.w32 quirk

2006-08-13 Thread runner60
I had this in a config.w32 file: ARG_ENABLE("winbinder", "winbinder support", "no"); //ARG_WITH("winbinder", "winbinder support", "no"); line 2 is not treated as comment and after buildconf cscript configure.js --help both --enable-winbinder and --with-winbinder were listed as availabe options.