summaryrefslogtreecommitdiffstats
path: root/ldap/c-sdk/common.mozbuild
blob: 4377982c5add48389a55e22380d556a48bc0f3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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/.

NO_VISIBILITY_FLAGS = True
DISABLE_STL_WRAPPING = True
ALLOW_COMPILER_WARNINGS = True

if CONFIG['OS_TARGET'] == 'Linux':
    DEFINES['LINUX'] = 1
    DEFINES['LINUX2_0'] = True
    DEFINES['linux'] = 1
elif CONFIG['OS_TARGET'] == 'Darwin':
    DEFINES["DARWIN"] = 1
elif CONFIG['OS_TARGET'] in ('OpenBSD', 'FreeBSD', 'NetBSD'):
    DEFINES[CONFIG['OS_TARGET'].upper()] = True
elif CONFIG['OS_ARCH'] == 'WINNT':
    DEFINES['_WINDOWS'] = True

DEFINES['_PR_PTHREADS'] = True
DEFINES['NET_SSL'] = True
DEFINES['NS_DOMESTIC'] = True

if CONFIG['MOZ_DEBUG']:
    DEFINES['LDAP_DEBUG'] = True