diff options
author | pav <pav@FreeBSD.org> | 2006-06-06 05:14:20 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-06-06 05:14:20 +0800 |
commit | 055353b6086ec43a5f55d0956d2ae46d813a5cd3 (patch) | |
tree | 11360567da721574f181b99f6cf07434d47be307 /net/freeradius2 | |
parent | 31807feb43e3b9d35f2ad220d9434e69776415de (diff) | |
download | freebsd-ports-graphics-055353b6086ec43a5f55d0956d2ae46d813a5cd3.tar.gz freebsd-ports-graphics-055353b6086ec43a5f55d0956d2ae46d813a5cd3.tar.zst freebsd-ports-graphics-055353b6086ec43a5f55d0956d2ae46d813a5cd3.zip |
- Fix OpenSSL handling
PR: ports/98525
Submitted by: Dan Lukes <dan@obluda.cz>
Diffstat (limited to 'net/freeradius2')
-rw-r--r-- | net/freeradius2/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/net/freeradius2/Makefile b/net/freeradius2/Makefile index 603e28846f0..adc04cea3ba 100644 --- a/net/freeradius2/Makefile +++ b/net/freeradius2/Makefile @@ -25,14 +25,6 @@ USE_AUTOTOOLS= libltdl:15 libtool:15 USE_GMAKE= yes USE_PERL5= yes USE_OPENSSL= yes -CONFIGURE_ARGS= --prefix=${PREFIX} --quiet --with-logdir=${LOGDIR} \ - --localstatedir=/var \ - --disable-ltdl-install \ - --with-ltdl-include=${LOCALBASE}/include \ - --with-ltdl-lib=${LOCALBASE}/lib \ - --with-large-files --without-rlm_sql_unixodbc \ - --without-rlm_sql_oracle --without-rlm_sql_iodbc \ - --without-rlm_sql_db2 MAKE_ARGS+= LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" PLIST_SUB= PORTVERSION=${PORTVERSION} @@ -47,6 +39,17 @@ OPTIONS= KERBEROS "With Kerberos support" off \ .include <bsd.port.pre.mk> +CONFIGURE_ARGS= --prefix=${PREFIX} --quiet --with-logdir=${LOGDIR} \ + --localstatedir=/var \ + --disable-ltdl-install \ + --with-ltdl-include=${LOCALBASE}/include \ + --with-ltdl-lib=${LOCALBASE}/lib \ + --with-large-files --without-rlm_sql_unixodbc \ + --without-rlm_sql_oracle --without-rlm_sql_iodbc \ + --without-rlm_sql_db2 \ + --with-openssl-includes=${OPENSSLINC} \ + --with-openssl-libraries=${OPENSSLLIB} + .if ${ARCH} == amd64 CONFIGURE_ARGS+= --with-pic .endif |