forked from erlyaws/yaws
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config.script
119 lines (102 loc) · 4.42 KB
/
rebar.config.script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
Dir = filename:dirname(SCRIPT),
ErtsVsn = case string:tokens(erlang:system_info(version), ".") of
[A,B] ->
{list_to_integer(A), list_to_integer(B), 0};
[A,B,C|_] ->
{list_to_integer(A), list_to_integer(B), list_to_integer(C)}
end.
%% generate a default test/t11/include/srcdir_test.hrl file so rebar can
%% compile the tests
ok = filelib:ensure_dir(filename:join(Dir, "test/t11/include/srcdir_test.hrl")),
ok = file:write_file(filename:join(Dir, "test/t11/include/srcdir_test.hrl"),
<<"-define(SRCDIR_VERSION, \"1.0\").\n">>),
%% generate a charset include file
ok = file:write_file(filename:join(Dir, "src/yaws_charset.hrl"),
case os:getenv("YAWS_CHARSET") of
false ->
<<"-define(YAWS_CHARSET, undefined).\n">>;
Charset ->
[<<"-define(YAWS_CHARSET, \"">>,
Charset, <<"\").\n">>]
end),
SoapDeps = [{erlsom, ".*", {git, "git://github.com/willemdj/erlsom.git", {branch, "master"}}},
{xmlrpc, ".*", {git, "git://github.com/rwbr/exmlrpc.git", {branch, "master"}}}],
Cfg0 = case os:getenv("YAWS_SOAP") of
false ->
CONFIG;
_ ->
case lists:keyfind(deps, 1, CONFIG) of
{deps, Deps} ->
NDeps = Deps ++ SoapDeps,
lists:keyreplace(deps, 1, CONFIG, {deps, NDeps});
false ->
CONFIG ++ [{deps, SoapDeps}]
end
end,
ErlOpts0 = case lists:keyfind(erl_opts, 1, Cfg0) of
{erl_opts, EOpts} -> EOpts;
false -> []
end,
PortEnv0 = case lists:keyfind(port_env, 1, Cfg0) of
{port_env, PEnv} -> PEnv;
false -> []
end,
PortSpecs0 = case lists:keyfind(port_specs, 1, Cfg0) of
{port_specs, PSpecs} ->
case os:getenv("YAWS_DISABLE_PAM") of
false ->
PSpecs;
_ ->
lists:keydelete("priv/lib/epam.so", 1, PSpecs)
end;
false -> []
end,
%% yaws:sendfile/5 was buggy in R15B (ERTS = 5.9)
code:ensure_loaded(file),
ErlOpts1 = case erlang:function_exported(file,sendfile,5) of
true when ErtsVsn >= {5,9,1} ->
ErlOpts0 ++ [{d,'HAVE_ERLANG_SENDFILE'}];
_ ->
ErlOpts0
end,
code:ensure_loaded(crypto),
ErlOpts2 = case erlang:function_exported(crypto,hash,2) of
true -> ErlOpts1 ++ [{d,'HAVE_CRYPTO_HASH'}];
false -> ErlOpts1
end,
code:ensure_loaded(inet),
ErlOpts3 = case erlang:function_exported(inet,parse_strict_address,1) of
true -> ErlOpts2 ++ [{d,'HAVE_INET_PARSE_STRICT_ADDRESS'}];
false -> ErlOpts2
end,
%% Unicode module was buggy for R14B04 and previous (ERTS <= 5.8.5)
ErlOpts4 = if
ErtsVsn =< {5,8,3} -> ErlOpts3 ++ [{d,'HAVE_BAD_UNICODE'}];
true -> ErlOpts3
end,
%% filelib:wildcard/2 was buggy for R15B03 and previous (ERTS <= 5.9.3)
ErlOpts5 = if
ErtsVsn =< {5,9,3} -> ErlOpts4 ++ [{d,'HAVE_BAD_WILDCARD'}];
true -> ErlOpts4
end,
%% Check for support of honor_cipher_order SSL option (ERTS >= 6.0)
ErlOpts6 = if
ErtsVsn >= {6,0,0} -> ErlOpts5 ++ [{d,'HAVE_SSL_HONOR_CIPHER_ORDER'}];
true -> ErlOpts5
end,
HaveSendFile = lists:keymember('HAVE_SENDFILE', 3, ErlOpts6),
{PortEnv1, PortSpecs1} =
if
HaveSendFile ->
{PortEnv0 ++ [{"DRV_CFLAGS", "$DRV_CFLAGS -DHAVE_SENDFILE"}],
PortSpecs0 ++ [{"priv/lib/yaws_sendfile_drv.so",
["c_src/yaws_sendfile_drv.c", "c_src/hashtable.c"]}]};
true ->
{PortEnv0, PortSpecs0}
end,
Cfg1 = lists:keyreplace(erl_opts, 1, Cfg0, {erl_opts, ErlOpts6}),
Cfg2 = lists:keyreplace(port_env, 1, Cfg1, {port_env, PortEnv1}),
Cfg3 = lists:keyreplace(port_specs, 1, Cfg2, {port_specs, PortSpecs1}),
Cfg3.