How to pass configure options

2005-07-11 Thread scuba
Hi all, How can I pass some extra configure options when making ports? I could not find it on FAQ or handbook. I´m using the hard way. make fetch cd work/someprog/ ./configure --with... cd ../../ make make install

Re: How to pass configure options

2005-07-11 Thread Charles Swiger
On Jul 11, 2005, at 5:24 PM, [EMAIL PROTECTED] wrote: How can I pass some extra configure options when making ports? Edit the port's top-level Makefile, and add whatever options you'd like to $CONFIGURE_ARGS, as in: CONFIGURE_ARGS+=--disable-nls -- -Chuck

Re: How to pass configure options

2005-07-11 Thread Kövesdán Gábor
[EMAIL PROTECTED] wrote: Hi all, How can I pass some extra configure options when making ports? I could not find it on FAQ or handbook. I´m using the hard way. make fetch cd work/someprog/ ./configure --with... cd ../../ make

Re: How to pass configure options

2005-07-11 Thread Drew Tomlinson
On 7/11/2005 2:36 PM Kövesdán Gábor wrote: [EMAIL PROTECTED] wrote: Hi all, How can I pass some extra configure options when making ports? I could not find it on FAQ or handbook. I´m using the hard way. make fetch cd work/someprog/ ./configure --with... cd