Hi, I'm using PHP as .so module (libphp4.so) on apache 1.3.14 on Linux. If I use any external library (extension) for PHP (like MySQL, IMAP, GD, etc.), all these libraries are compiled into this .so file. I'm using this configure file: "./configure" \ "--with-apxs=/usr/local/apache/bin/apxs" \ "--with-curl" \ "--with-imap=/usr/local/lib" \ "--with-mcrypt" \ "--with-mysql=/usr/local" \ "--enable-trans-sid" \ "$@" How can I create these extensions to compile as .so modules as well and load them in php.ini with extension=xxx.so? It's pain to recompile the whole PHP when I need to upgrade only one extension. It seems like --enable-shared is not doing what I want? Or I'm wrong? BTW: what is --enable-sysvsem --enable-sysvshm doing? Shall I use it on Linux (Intel Pentium II)? Thanks a lot. Martin -- Martin Pavlas ParsCom IS s.r.o. http://www.parscom.cz -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]