[PHP-DEV] Problem with config.m4

2004-03-30 Thread Stéphane Degré
Hi, I am currently developing a PHP extension which provides a lot of functions to code/decode large mail attachments. This extension is based on the C-library UUDeview. On Windows platforms, the extension works well. I have downloaded the Windows version of UUDeview, I have specified the path of

Re: [PHP-DEV] Problem with config.m4

2004-03-30 Thread Rasmus Lerdorf
You missed the most important step. You need to tell config.m4 that you want to link against that libuu.a library. Look at some of the other extensions to see how to do it. Specifically look for PHP_CHECK_LIBRARY and PHP_ADD_LIBRARY_WITH_PATH -Rasmus On Tue, 30 Mar 2004, Stéphane Degré

Re: [PHP-DEV] Problem with config.m4

2004-03-30 Thread Stéphane Degré
It works fine now with the line : PHP_ADD_LIBRARY_WITH_PATH(uu, /usr/local/lib, ATT_CODEC_SHARED_LIBADD) Thank you. Rasmus Lerdorf [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] You missed the most important step. You need to tell config.m4 that you want to link against