diff options
author | vsevolod <vsevolod@FreeBSD.org> | 2014-07-22 22:05:43 +0800 |
---|---|---|
committer | vsevolod <vsevolod@FreeBSD.org> | 2014-07-22 22:05:43 +0800 |
commit | 2a8202e79d03dc7439d89140aefdb0b3f83b92ca (patch) | |
tree | 1b2d6e6957475ae32ce3369db9b9da2b6507fda7 | |
parent | 0a0a30c225ffb576b27fc65135dc5efccde849d1 (diff) | |
download | freebsd-ports-gnome-2a8202e79d03dc7439d89140aefdb0b3f83b92ca.tar.gz freebsd-ports-gnome-2a8202e79d03dc7439d89140aefdb0b3f83b92ca.tar.zst freebsd-ports-gnome-2a8202e79d03dc7439d89140aefdb0b3f83b92ca.zip |
Convert to OPTIONS_SLAVE.
PR: 191949
Submitted by: v.chernyadev at tradesoft.ru
Patch by: dumbbell
-rw-r--r-- | mail/exim-ldap2/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-mysql/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-postgresql/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-sa-exim/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-sqlite/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/mail/exim-ldap2/Makefile b/mail/exim-ldap2/Makefile index e0513b9b9ed3..3f50f19a37d3 100644 --- a/mail/exim-ldap2/Makefile +++ b/mail/exim-ldap2/Makefile @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -ldap2 MASTERDIR= ${.CURDIR}/../exim -WITH_OPENLDAP= yes +OPTIONS_SLAVE= OPENLDAP .include "${MASTERDIR}/Makefile" diff --git a/mail/exim-mysql/Makefile b/mail/exim-mysql/Makefile index 5cc267262f87..b44d1943bfaf 100644 --- a/mail/exim-mysql/Makefile +++ b/mail/exim-mysql/Makefile @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -mysql MASTERDIR= ${.CURDIR}/../exim -WITH_MYSQL= yes +OPTIONS_SLAVE= MYSQL .include "${MASTERDIR}/Makefile" diff --git a/mail/exim-postgresql/Makefile b/mail/exim-postgresql/Makefile index 4a2e965e0119..2dafd81b5cb8 100644 --- a/mail/exim-postgresql/Makefile +++ b/mail/exim-postgresql/Makefile @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -postgresql MASTERDIR= ${.CURDIR}/../exim -WITH_PGSQL= yes +OPTIONS_SLAVE= PGSQL .include "${MASTERDIR}/Makefile" diff --git a/mail/exim-sa-exim/Makefile b/mail/exim-sa-exim/Makefile index 24c5b1a2b3f1..dfec2edd4d2b 100644 --- a/mail/exim-sa-exim/Makefile +++ b/mail/exim-sa-exim/Makefile @@ -6,6 +6,6 @@ MASTERDIR= ${.CURDIR}/../exim PORTVERSION?= ${EXIM_VERSION}+${SA_EXIM_VERSION} -WITH_SA_EXIM= yes +OPTIONS_SLAVE= SA_EXIM .include "${MASTERDIR}/Makefile" diff --git a/mail/exim-sqlite/Makefile b/mail/exim-sqlite/Makefile index e7e428030302..4823e65e1909 100644 --- a/mail/exim-sqlite/Makefile +++ b/mail/exim-sqlite/Makefile @@ -4,6 +4,6 @@ PKGNAMESUFFIX= -sqlite MASTERDIR= ${.CURDIR}/../exim -WITH_SQLITE= yes +OPTIONS_SLAVE= SQLITE .include "${MASTERDIR}/Makefile" |