2016-08-16 08:07:05 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
|
|
|
|
# DBM support in NSS
|
|
|
|
# ==============================================================
|
2018-12-11 22:34:28 +03:00
|
|
|
@depends(build_project)
|
|
|
|
def dbm_default(build_project):
|
2018-03-20 12:46:23 +03:00
|
|
|
return build_project != 'mobile/android'
|
2016-08-16 08:07:05 +03:00
|
|
|
|
2018-10-16 14:28:12 +03:00
|
|
|
option('--enable-dbm', default=dbm_default,
|
|
|
|
help='{Enable|Disable} building DBM')
|
2016-08-16 08:07:05 +03:00
|
|
|
|
|
|
|
set_config('NSS_DISABLE_DBM', depends('--enable-dbm')(lambda x: not x))
|