$NetBSD: patch-ao,v 1.3 2024/02/12 21:36:09 hans Exp $ --- libs/imap/mkpop3dcert.in.orig 2013-11-11 02:56:33.000000000 +0000 +++ libs/imap/mkpop3dcert.in @@ -8,7 +8,13 @@ # POP3 over SSL. Normally this script would get called by an automatic # package installation routine. -if test "@ssllib@" = "openssl" +case "$1" in +gnutls) ssllib="gnutls" ;; +openssl) ssllib="openssl" ;; +*) ssllib="@ssllib@" ;; +esac + +if test "$ssllib" = "openssl" then test -x @OPENSSL@ || exit 0 else @@ -39,7 +45,7 @@ umask 077 BITS="$BITS" set -e -if test "@ssllib@" = "openssl" +if test "$ssllib" = "openssl" then cp /dev/null @certsdir@/pop3d.pem chmod 600 @certsdir@/pop3d.pem