pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail/php-imap
Module Name: pkgsrc
Committed By: jdolecek
Date: Fri Feb 16 22:22:58 UTC 2018
Added Files:
pkgsrc/mail/php-imap: options.mk
Log Message:
also add the options.mk split off Makefile + kerberos support
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/mail/php-imap/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/mail/php-imap/options.mk
diff -u /dev/null pkgsrc/mail/php-imap/options.mk:1.1
--- /dev/null Fri Feb 16 22:22:58 2018
+++ pkgsrc/mail/php-imap/options.mk Fri Feb 16 22:22:58 2018
@@ -0,0 +1,34 @@
+# $NetBSD: options.mk,v 1.1 2018/02/16 22:22:58 jdolecek Exp $
+
+.include "../../mk/bsd.prefs.mk"
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.imap-uw
+PKG_SUPPORTED_OPTIONS+= ssl kerberos
+PKG_SUGGESTED_OPTIONS+= ssl
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Support GSSAPI authentication via Kerberos 5.
+###
+.if !empty(PKG_OPTIONS:Mkerberos)
+. include "../../mk/krb5.buildlink3.mk"
+CONFIGURE_ARGS+= --with-kerberos
+.endif
+
+###
+### Support SSL/TLS connections.
+###
+.if !empty(PKG_OPTIONS:Mssl)
+. include "../../security/openssl/buildlink3.mk"
+
+# Imap extension's config.m4 calls m4 macro PHP_SETUP_OPENSSL() which
+# expects PHP_ARG_WITH(openssl, ...) being called beforehand so that
+# PHP_OPENSSL is set. For a self contained extension build like for
+# this package this is not the case of course.
+CONFIGURE_ENV.SunOS+= PHP_OPENSSL=yes
+CONFIGURE_ENV.*+= PHP_OPENSSL=${SSLBASE:Q}
+CONFIGURE_ARGS.SunOS+= --with-${MODNAME}-ssl=yes
+CONFIGURE_ARGS.*+= --with-${MODNAME}-ssl=${SSLBASE}
+
+.endif
Home |
Main Index |
Thread Index |
Old Index