diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2008-03-31 15:19:03 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2008-03-31 15:19:03 +0000 |
commit | 602609e11bfedd9b3e2d974bd625a95ba1052804 (patch) | |
tree | 6805998a31396d4f5563eeaaa470d9256f6eb530 /misc/amanda-server | |
parent | 9c7c4ab5dbcc76309c5f5375f56384f198b79240 (diff) | |
download | ports-602609e11bfedd9b3e2d974bd625a95ba1052804.tar.gz ports-602609e11bfedd9b3e2d974bd625a95ba1052804.zip |
Notes
Diffstat (limited to 'misc/amanda-server')
-rw-r--r-- | misc/amanda-server/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/amanda-server/Makefile b/misc/amanda-server/Makefile index 6b6de0f49912..33bc49a983d6 100644 --- a/misc/amanda-server/Makefile +++ b/misc/amanda-server/Makefile @@ -116,7 +116,8 @@ MAN8= amadmin.8 amaespipe.8 amcheck.8 \ OPTIONS+= PLOT "enable ploting, requires X11 libraries" off\ SAMBA "enable the use of smbclient" off \ MTX "enable the use of mtx changer scripts" off \ - AESPIPE "enable encryption. Needed by amcrypt" off + AESPIPE "enable encryption. Needed by amcrypt" off \ + SSH "enable ssh-auth" off .if defined (WITH_PLOT) BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot @@ -142,6 +143,10 @@ RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe .endif +.if defined (WITH_SSL) +CONFIGURE_ARGS+= --with-ssh-security +.endif + .if defined (AMANDA_TAPE) CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} .endif |