Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
On Mon, 4 Mar 2002, Rasmus Lerdorf wrote: > Yup, it is. But you still need to add that PHP_EXTENSION line to your > config.m4 if it isn't already there. Did that. I actually got dl'ing of my test module working using phpize. Wrote a function that displays info in phpinfo() too. I think it's pre

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Rasmus Lerdorf
Yup, it is. But you still need to add that PHP_EXTENSION line to your config.m4 if it isn't already there. -Rasmus On Mon, 4 Mar 2002, Steven J. Sobol wrote: > On Sun, 3 Mar 2002, Rasmus Lerdorf wrote: > > > Make sure you have: > > > > PHP_EXTENSION(exif, $ext_shared) > > > > in your config.m4

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
On Sun, 3 Mar 2002, Rasmus Lerdorf wrote: > Make sure you have: > > PHP_EXTENSION(exif, $ext_shared) > > in your config.m4 and then simply do: > > ./configure --with-foo=shared > > You will find it in your ./modules directory. I haven't tried this yet. I will later. I did find phpize, whic

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
On Sun, 3 Mar 2002, Steven J. Sobol wrote: > > I've followed the instructions at http://www.zend.com/apidoc/ > and generated test code for a php extension, and can get it to compile > into a PHP binary, but I'm having difficulty finding the info I need to > get it to compile as a shared library.

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Rasmus Lerdorf
Make sure you have: PHP_EXTENSION(exif, $ext_shared) in your config.m4 and then simply do: ./configure --with-foo=shared You will find it in your ./modules directory. -Rasmus On Sun, 3 Mar 2002, Steven J. Sobol wrote: > On 3 Mar 2002, Lars Torben Wilson wrote: > > > On Sun, 2002-03-03 at

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Markus Fischer
On Sun, Mar 03, 2002 at 10:25:14PM -0500, Steven J. Sobol wrote : > I've followed the instructions at http://www.zend.com/apidoc/ > and generated test code for a php extension, and can get it to compile > into a PHP binary, but I'm having difficulty finding the info I need to > get it to compile

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Steven J. Sobol
On 3 Mar 2002, Lars Torben Wilson wrote: > On Sun, 2002-03-03 at 17:30, topside wrote: > > Where can I get information/documentation on creating my own PHP modules in > > C? I basicly just want to use some C functions within PHP - so I figure I > > can write a PHP module with functions which use

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Lars Torben Wilson
On Sun, 2002-03-03 at 17:30, topside wrote: > Where can I get information/documentation on creating my own PHP modules in > C? I basicly just want to use some C functions within PHP - so I figure I > can write a PHP module with functions which use the C functions I need. > > thanks > --topside T

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Brian Foddy
This is a good place to start... http://www.zend.com/apidoc/ Brian On Sun, 3 Mar 2002 19:30:09 -0600, topside wrote: >st want to use some C functions with -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PHP module creation

2002-03-03 Thread topside
Where can I get information/documentation on creating my own PHP modules in C? I basicly just want to use some C functions within PHP - so I figure I can write a PHP module with functions which use the C functions I need. thanks --topside -- PHP Development Mailing List