ostinelli / misultin

Misultin (pronounced mee-sool-téen) is an Erlang library for building fast lightweight HTTP(S) servers, which also supports websockets.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

make not working with R13B04

reverendpaco opened this issue · comments

It seems to work fine with R14B03 on my mac, but on my centos machine:

[deklund@internal misultin]$ make
/usr/local/bin/erlc -W -I include -o ebin src/.erl
src/misultin_acceptor.erl:85: referring to built-in type tid as a remote type; please take out the module name
src/misultin_acceptor.erl:149: referring to built-in type tid as a remote type; please take out the module name
src/misultin_acceptor.erl:168: referring to built-in type tid as a remote type; please take out the module name
make: *
* [all] Error 1

hi, have you tried modifying the suggested lines as specified?

i.e. turn the ets:tid() into tid() only?

I've test misultin with R13B04.

It compiles and works after replacing ets:tid to tid.
sed -i 's/ets:tid/tid/g' src/*.erl

sorry... yes, the removal of the module worked for me... thanks for that