diff options
author | shattered <shattered@pkgsrc.org> | 2012-02-23 12:16:31 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2012-02-23 12:16:31 +0000 |
commit | 18f1d4b5cc71989873187cd71cda134ae5edf4c8 (patch) | |
tree | 466bf394536f849458d583fd49bfbf2fe913cbab /sysutils | |
parent | fe36be141296bfed879da7528b78a5c05dca96bd (diff) | |
download | pkgsrc-18f1d4b5cc71989873187cd71cda134ae5edf4c8.tar.gz |
PR/42954: bacula-static option is broken. It requires non-libtool build,
but Makefiles' "all" targets include both dynamic and static targets.
Package PLISTs also don't support static-only build.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bacula-clientonly/options.mk | 5 | ||||
-rw-r--r-- | sysutils/bacula/options.mk | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sysutils/bacula-clientonly/options.mk b/sysutils/bacula-clientonly/options.mk index a44a0b53c5f..203114c4544 100644 --- a/sysutils/bacula-clientonly/options.mk +++ b/sysutils/bacula-clientonly/options.mk @@ -1,7 +1,8 @@ -# $NetBSD: options.mk,v 1.6 2012/02/03 09:57:19 shattered Exp $ +# $NetBSD: options.mk,v 1.7 2012/02/23 12:16:32 shattered Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.bacula-clientonly -PKG_SUPPORTED_OPTIONS= bacula-static ssl +# bacula-static is broken -- see PR 42954 +PKG_SUPPORTED_OPTIONS= ssl .include "../../mk/bsd.options.mk" diff --git a/sysutils/bacula/options.mk b/sysutils/bacula/options.mk index cb33c7da72d..b78c527087a 100644 --- a/sysutils/bacula/options.mk +++ b/sysutils/bacula/options.mk @@ -1,7 +1,8 @@ -# $NetBSD: options.mk,v 1.17 2011/06/18 10:40:33 shattered Exp $ +# $NetBSD: options.mk,v 1.18 2012/02/23 12:16:31 shattered Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.bacula -PKG_SUPPORTED_OPTIONS= bacula-static ssl python +# bacula-static is broken -- see PR 42954 +PKG_SUPPORTED_OPTIONS= ssl python PKG_OPTIONS_REQUIRED_GROUPS= database PKG_OPTIONS_GROUP.database= catalog-sqlite3 catalog-pgsql catalog-mysql PKG_SUGGESTED_OPTIONS= catalog-sqlite3 |