Re: [PHP-DEV] Problems with extensions...

2002-05-24 Thread Brian France
Sorry ignore that last email it should read like this: Brian -- After reviewing my fix for this I realize that #define labels can only have A-Z and underscores so this is a better fix: From: AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z-,A-Z_), 1, Whether to build $1 as dynamic module)

Re: [PHP-DEV] Problems with extensions...

2002-05-24 Thread Brian France
After reviewing my fix for this I realize that #define labels can only have A-Z and underscores so this is a better fix: From: AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z-,A-Z_), 1, Whether to build $1 as dynamic module) To: AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z-,A-Z_), 1, Whe

[PHP-DEV] Problems with extensions...

2002-05-24 Thread Brian France
I am changing the way I build my PHP extension and am running into some problems. I was originally would build it by copying the directory foo_bar into the ext directory and added --enable-foo_bar=shared to the configure line of PHP and build PHP. Everything worked great! Now I am looking to