diff options
author | David Carlier <dcarlier@afilias.info> | 2020-01-28 12:53:32 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2020-01-28 12:53:32 (GMT) |
commit | aabdeb766b7fa581e7de01f3c953b12792f0736d (patch) | |
tree | 3ed6c4b6c00b8142775b9a996e84e3be383d3265 /configure | |
parent | 2cca8efe46935c39c445f585bce54954fad2485b (diff) | |
download | cpython-aabdeb766b7fa581e7de01f3c953b12792f0736d.zip cpython-aabdeb766b7fa581e7de01f3c953b12792f0736d.tar.gz cpython-aabdeb766b7fa581e7de01f3c953b12792f0736d.tar.bz2 |
bpo-38960: DTrace build fix for FreeBSD. (GH-17451)
DTrace build fix for FreeBSD.
- allowing passing an extra flag as it need to define the arch size.
- casting some probe's arguments.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -11386,7 +11386,6 @@ $as_echo "$with_dtrace" >&6; } DTRACE= -DFLAGS= DTRACE_HEADERS= DTRACE_OBJS= @@ -11452,7 +11451,7 @@ if ${ac_cv_dtrace_link+:} false; then : else ac_cv_dtrace_link=no echo 'BEGIN{}' > conftest.d - "$DTRACE" -G -s conftest.d -o conftest.o > /dev/null 2>&1 && \ + "$DTRACE" "$DFLAGS" -G -s conftest.d -o conftest.o > /dev/null 2>&1 && \ ac_cv_dtrace_link=yes fi |