Re: [PHP-DEV] Getting rid of --disable-session configure option.

2001-12-29 Thread Yasuo Ohgaki
Sascha Schumann wrote: >>Problem is in loading *.so file at start up. >>Session module is designed to provide globals >>for sub modules, if session module is not compiled >>in and user load sub module, it spits "undefined >>symbol" error at start up. >>Runtime "undefined symbol" error for p

Re: [PHP-DEV] Getting rid of --disable-session configure option.

2001-12-28 Thread Sascha Schumann
> Problem is in loading *.so file at start up. > Session module is designed to provide globals > for sub modules, if session module is not compiled > in and user load sub module, it spits "undefined > symbol" error at start up. > Runtime "undefined symbol" error for perfectly valid > php.ini (or c

Re: [PHP-DEV] Getting rid of --disable-session configure option.

2001-12-28 Thread Yasuo Ohgaki
Derick Rethans wrote: > Hello, > > in your code you can easily do this: > > #ifndef HAVE_PHP_SESSION > #error: no session support in this PHP build > #endif > > there is no need to get rid of --disable-session then It is okay to compile without session module. > > > I only wonder how exac

Re: [PHP-DEV] Getting rid of --disable-session configure option.

2001-12-26 Thread Derick Rethans
Hello, in your code you can easily do this: #ifndef HAVE_PHP_SESSION #error: no session support in this PHP build #endif there is no need to get rid of --disable-session then I only wonder how exactly do you build that pgsql_session handler, and how is it supposed to be enabled in PHP, as a .

[PHP-DEV] Getting rid of --disable-session configure option.

2001-12-25 Thread Yasuo Ohgaki
Hi all, I keep posting about "undefiend symbol" error with sub module at start up Since, session is internal module now. How about get rid of --disable-session option from configure? This prevents "undefined symbol" error at runtime. This does not solve sub module related issues, though... --