File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ function(enable_dtrace_for TARGET PROBES_D PROBES_H)
30
30
set_source_files_properties (${TARGET} _probes.o PROPERTIES
31
31
GENERATED true
32
32
EXTERNAL_OBJECT true )
33
- else () # not Linux
33
+ return ()
34
+ endif ()
35
+ cmake_host_system_information (RESULT OS_RELEASE QUERY OS_RELEASE )
36
+ if (NOT (CMAKE_HOST_SYSTEM_NAME STREQUAL Darwin AND OS_RELEASE VERSION_GREATER_EQUAL 11 ))
34
37
set (PROBES_C ${TARGET} _probes.cc )
35
38
file (GENERATE
36
39
OUTPUT ${CMAKE_CURRENT_BINARY_DIR} /${PROBES_C}
Original file line number Diff line number Diff line change 6
6
7
7
** Changes from beta2:**
8
8
9
+ * Fix [ gh #108 ] ( https://github.com/m6w6/libmemcached/issues/105 ) :
10
+ macOS Big Sur: dtrace does not understand -G switch
9
11
* Fix libmemcachedprotocol's binary ` STAT ` and ` VERSION ` handlers.
10
12
* Fix [ gh #105 ] ( https://github.com/m6w6/libmemcached/issues/105 ) :
11
13
EINTR handled too defensively when polling.
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ v 1.1.0-beta3
16
16
**Changes from beta2: **
17
17
18
18
19
+ * Fix `gh #108 <https://github.com/m6w6/libmemcached/issues/105 >`_\ :
20
+ macOS Big Sur: dtrace does not understand -G switch
19
21
* Fix libmemcachedprotocol's binary ``STAT `` and ``VERSION `` handlers.
20
22
* Fix `gh #105 <https://github.com/m6w6/libmemcached/issues/105 >`_\ :
21
23
EINTR handled too defensively when polling.
You can’t perform that action at this time.
0 commit comments