[PHP] Imlib Errors Still

2001-08-15 Thread Chris Aitken
Okay, Im really having a hard time with imlib2 and php. There is so little documentation on this so I dont know what im doing Firstly When Imlib2 is compiled into PHP, how do I know (like should there be an entry in phpinfo() ) Secondly Whats the easiest way people have installed

Re: [PHP] Imlib Errors Still

2001-08-15 Thread Rasmus Lerdorf
Firstly When Imlib2 is compiled into PHP, how do I know (like should there be an entry in phpinfo() ) Of course. For an example see http://conf.php.net/info.php Secondly Whats the easiest way people have installed imlib2 into PHP. Im trying the way the (very small) INSTALL file

[PHP] IMLIB

2001-04-25 Thread Charles
Hello, Somebody know how to make IMLIB library compile into php ? i tried --with, --enable, but doesn't work ! Thanks. -- Charles -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] IMLIB

2001-04-25 Thread Matt McClanahan
On Wed, Apr 25, 2001 at 03:34:18PM -0400, Charles wrote: Hello, Somebody know how to make IMLIB library compile into php ? i tried --with, --enable, but doesn't work ! Check to see that it actually got added to the source properly with: ./configure --help|grep imlib If it isn't there,

Re: [PHP] IMLIB

2001-04-25 Thread Rasmus Lerdorf
Or just type: phpize in the imlib extension directory then type: ./configure --with-imlib=shared make Then you will have an imlib.so file in your modules/ directory which you can then point an extension=imlib.so directive to in your php.ini file. -Rasmus On Wed, 25 Apr 2001, Matt McClanahan