mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-06 10:25:18 +00:00
8ab38b6b95
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
8 lines
270 B
Plaintext
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}).
|