Skip to content

Commit 1a38f82

Browse files
authored
Merge pull request #102 from puzza007/otp-23
erl_interface.h is deprecated in OTP 23+
2 parents 9eca365 + 67370b1 commit 1a38f82

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ install:
1212
- cd $ORIG_DIR
1313

1414
otp_release:
15-
- 20.3
16-
- 21.3
15+
- 23.0
1716

1817
script:
1918
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

c_src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ endif
3030
CFLAGS += -fPIC -I $(ERTS_INCLUDE_DIR) -I $(ERL_INTERFACE_INCLUDE_DIR)
3131
CXXFLAGS += -fPIC -I $(ERTS_INCLUDE_DIR) -I $(ERL_INTERFACE_INCLUDE_DIR)
3232

33-
LDLIBS += -L $(ERL_INTERFACE_LIB_DIR) -lerl_interface -lei -lcurl -lssl -lcrypto -levent
33+
LDLIBS += -L $(ERL_INTERFACE_LIB_DIR) -lei -lcurl -lssl -lcrypto -levent
3434

3535
c_verbose_0 = @echo " C " $(?F);
3636
c_verbose = $(c_verbose_$(V))

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{erl_opts, [debug_info]}.
44

5-
{minimum_otp_vsn, "20.3"}.
5+
{minimum_otp_vsn, "23.0"}.
66

77
{deps, [
88
{worker_pool, "3.1.1"},

rebar.lock

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
{"1.1.0",
1+
{"1.2.0",
22
[{<<"metrics">>,{pkg,<<"metrics">>,<<"2.5.0">>},0},
33
{<<"worker_pool">>,{pkg,<<"worker_pool">>,<<"3.1.1">>},0}]}.
44
[
55
{pkg_hash,[
66
{<<"metrics">>, <<"268D218D56529CB5F070D74BBFC3AF64C668379B5B18FAFDA88959442F790C57">>},
7-
{<<"worker_pool">>, <<"A9BF27CFF366999784A3F0657F016CE3A57901490858CCA3FB3BE1208BF2110D">>}]}
7+
{<<"worker_pool">>, <<"A9BF27CFF366999784A3F0657F016CE3A57901490858CCA3FB3BE1208BF2110D">>}]},
8+
{pkg_hash_ext,[
9+
{<<"metrics">>, <<"AE061938C8C3BDE97D17BE9A792B63E15C1E1EFFE16598AB87A62384F5F3714B">>},
10+
{<<"worker_pool">>, <<"355B6680F2C16C02FA916F66BF9C7460780A36AD6562F181AED6B690585FF1D5">>}]}
811
].

src/katipo.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, 'katipo',
22
[{description, "HTTP client based on libcurl"},
3-
{vsn, "0.8.1"},
3+
{vsn, "0.9.0"},
44
{registered, []},
55
{mod, {'katipo_app', []}},
66
{applications,

0 commit comments

Comments
 (0)