diff options
author | Anders Svensson <[email protected]> | 2014-03-29 13:21:11 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-03-31 16:43:10 +0200 |
commit | 1106d1e478f979cd201a66d3180a4511bfa56a93 (patch) | |
tree | 204c12a9ce87efc5555a84cce33083d9d90abb0d /lib/diameter/src/diameter.app.src | |
parent | 9feffa030c4d1791f76e5b57658945c013df636d (diff) | |
download | otp-1106d1e478f979cd201a66d3180a4511bfa56a93.tar.gz otp-1106d1e478f979cd201a66d3180a4511bfa56a93.tar.bz2 otp-1106d1e478f979cd201a66d3180a4511bfa56a93.zip |
Generate runtime_dependencies in app file
To avoid having to specify applications more than once.
Diffstat (limited to 'lib/diameter/src/diameter.app.src')
-rw-r--r-- | lib/diameter/src/diameter.app.src | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/lib/diameter/src/diameter.app.src b/lib/diameter/src/diameter.app.src index 4ede488b31..ac1d847753 100644 --- a/lib/diameter/src/diameter.app.src +++ b/lib/diameter/src/diameter.app.src @@ -27,16 +27,20 @@ ]}, {registered, [%REGISTERED%]}, {applications, [ - stdlib, kernel - %, syntax_tools - %, runtime_tools - %, ssl + {stdlib, "2.0"}, {kernel, "3.0"}%, {erts, "6.0"} + %% {syntax-tools, "1.6.14"} + %% {runtime-tools, "1.8.14"} + %, {ssl, "5.3.4"} ]}, {env, []}, {mod, {diameter_app, []}}, - {runtime_dependencies, ["erts-6.0", - "kernel-3.0", - "stdlib-2.0", - "ssl-5.3.4"]} - %% Note that ssl is only required if configured on TCP transports. + {runtime_dependencies, [ + ]} + %% + %% Note that ssl is only required if configured on TCP transports, + %% and syntax-tools and runtime-tools are only required if the + %% dictionary compiler and debug modules (respectively) are + %% needed/wanted at runtime, which they typically aren't. These + %% modules are the two commented lines in the 'modules' tuple. + %% ]}. |