]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/config/pthread-mutex-robust/Jamfile.jam
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / log / config / pthread-mutex-robust / Jamfile.jam
1 #
2 # Copyright Andrey Semashev 2015.
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6 #
7
8 import project ;
9
10 project /boost/log/pthread-mutex-robust
11 : source-location .
12 : requirements
13 # Reproduce the same system macros here as are used during the library compilation. See build/Jamfile.v2.
14 <target-os>linux:<define>_XOPEN_SOURCE=600
15 <target-os>linux:<define>_GNU_SOURCE=1
16
17 <target-os>solaris:<define>_XOPEN_SOURCE=500
18 <target-os>solaris:<define>__EXTENSIONS__
19
20 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
21
22 <pch>off
23 ;
24
25 obj pthread_mutex_robust : pthread_mutex_robust.cpp ;