On Tue, 2003-09-23 at 11:59, Manfred Stienstra wrote:
> gcc -fpic -DCOMPILE_DL=1 -I/usr/local/include -I. -I.. -I ../..
> -I../../Zend -I../../include -I../../main -I../../TSRM -c -o monet.o
> monet.c

I had this problem myself recently before I figured out how to build the
standalone shared module. If memory serves me correctly your above line
is incorrect and should be as follows:

> gcc -fpic -DCOMPILE_DL_MONET=1 -I/usr/local/include -I. -I.. -I ../..
> -I../../Zend -I../../include -I../../main -I../../TSRM -c -o monet.o
> monet.c

The change was to add _MONET to the -DCOMPILE_DL portion of the
statement.

HTH,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to