How to see package build configure args?

I build openssl in `security/openssl`, but I want change args in configure script!

How to see or log build args for configure script?
 
If you run in man ports(7) a search for config it will give you besides the desired information all other informations connected to ports configuration.

Running pkg options openssl will also show the installed ports/packages build options. Try pkg alias, you may find other usefull options.
 
Openssl doesn't use Autotools, it's has a custom Perl config script.
Code:
CONFIGURE_ARGS+=-v
gives me
Code:
/usr/bin/env __CNF_CPPDEFINES='' __CNF_CPPINCLUDES='' __CNF_CPPFLAGS='' __CNF_CFLAGS='' __CNF_CXXFLAGS='' __CNF_LDFLAGS='' __CNF_LDLIBS='' /usr/local/bin/perl ./Configure BSD-x86_64 '--openssldir=/usr/local/openssl' '--prefix=/usr/local' 'no-aria' 'enable-ec_nistp_64_gcc_128' 'no-idea' 'no-mdc2' 'no-rfc3779' 'enable-sctp' 'no-sm2' 'no-sm3' 'no-sm4'
 
Back
Top