Bolt.Sips v0.1.9 Release Notes

Release Date: 2017-01-27 // about 7 years ago
  • 🚀 Some of the users are encountering difficulties when trying to compile bolt_sips on Windows. This release is addressing their concern.

    Bolt.Sips will use the optional System variable: BOLT_WITH_ETLS, for depending on the ETLS package. If that variable is not defined, then Bolt.Sips will use the standard Erlang :ssl module, for the SSL/TLS protocol; the default behavior, starting with this version.

    Therefore, if you want the much faster ssl/tls support offered by ETLS, then use this: export BOLT_WITH_ETLS=true on Linux/OSX, for example. Then:

     mix deps.get
     mix test
    

    and so on.

    (Don't forget to mix deps.unlock --all, if you plan to plan to further debugging/developing w/ or w/o the BOLT_WITH_ETLS support)

    Many thanks to: Ben Wilson, for advices.