Re: How to ensure dependency is compiled with some flags?

2003-08-26 Thread Kris Kennaway
On Mon, Aug 25, 2003 at 01:33:33PM +0200, Thierry Thomas wrote: Selon Sergey Akifyev [EMAIL PROTECTED]: On Mon, 2003-08-25 at 11:09, Edwin Groothuis wrote: On Mon, Aug 25, 2003 at 09:56:49AM +0400, Sergey Akifyev wrote: See ports/mail/imp3/MAkefile about line 180 where they do ${LDD}

How to ensure dependency is compiled with some flags?

2003-08-25 Thread Sergey Akifyev
Hello, All! I'm porting one piece of software, which depends on PHP. The problem is that PHP must be built with two options: WITH_SOCKETS and WITH_SNMP. So, how do I force the port to pull PHP with theese options? Thanks in advance! -- regards, Sergey Akifyev [EMAIL PROTECTED] JSC Gascom

Re: How to ensure dependency is compiled with some flags?

2003-08-25 Thread Joe Marcus Clarke
On Mon, 2003-08-25 at 05:56, Sergey Akifyev wrote: Hello, All! I'm porting one piece of software, which depends on PHP. The problem is that PHP must be built with two options: WITH_SOCKETS and WITH_SNMP. So, how do I force the port to pull PHP with theese options? Create a slave port.

Re: How to ensure dependency is compiled with some flags?

2003-08-25 Thread Edwin Groothuis
On Mon, Aug 25, 2003 at 09:56:49AM +0400, Sergey Akifyev wrote: I'm porting one piece of software, which depends on PHP. The problem is that PHP must be built with two options: WITH_SOCKETS and WITH_SNMP. So, how do I force the port to pull PHP with theese options? See

Re: How to ensure dependency is compiled with some flags?

2003-08-25 Thread Sergey Akifyev
On Mon, 2003-08-25 at 11:09, Edwin Groothuis wrote: On Mon, Aug 25, 2003 at 09:56:49AM +0400, Sergey Akifyev wrote: See ports/mail/imp3/MAkefile about line 180 where they do ${LDD} ${PHPSO} on how you might want to do it. Very interesting solution, thanks! Edwin -- regards, Sergey Akifyev

Re: How to ensure dependency is compiled with some flags?

2003-08-25 Thread Thierry Thomas
Selon Sergey Akifyev [EMAIL PROTECTED]: On Mon, 2003-08-25 at 11:09, Edwin Groothuis wrote: On Mon, Aug 25, 2003 at 09:56:49AM +0400, Sergey Akifyev wrote: See ports/mail/imp3/MAkefile about line 180 where they do ${LDD} ${PHPSO} on how you might want to do it. Very interesting