thrift/lib/erl/rebar.config.script
Веселов Андрей 8ab38b6b95 THRIFT-3820 Erlang: Detect OTP >= 18 to use new time correction
erlang:now/0 is deprecated BIF.
See the "Time and Time Correction in Erlang" chapter of the ERTS User's Guide for more information.

This closes #1000
2016-07-23 15:12:42 +09:00

8 lines
270 B
Plaintext

Def0 = case not erlang:is_builtin(erlang, monotonic_time, 0) of
true -> [];
false -> [{d, time_correction}]
end,
Defs = Def0,
lists:keystore(erl_opts, 1, CONFIG,
{erl_opts, proplists:get_value(erl_opts, CONFIG, []) ++ Defs}).