diff options
author | Anders Svensson <[email protected]> | 2014-03-29 13:21:11 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-03-29 19:20:45 +0100 |
commit | c23b242d0d634d10b03412c19768d381906578ab (patch) | |
tree | 7947b4d755780739c854ceb7765c8dacf61ce1ce /lib/diameter/src/diameter.app.src | |
parent | 888504300eb9b3f87de8243bbd8fa7e4dbf97f1d (diff) | |
download | otp-c23b242d0d634d10b03412c19768d381906578ab.tar.gz otp-c23b242d0d634d10b03412c19768d381906578ab.tar.bz2 otp-c23b242d0d634d10b03412c19768d381906578ab.zip |
Include compiler and info modules in app file
Albeit as comments. This is just to make it more obvious that these
aren't include in the modules list, since they typically aren't
needed/wanted on a target system. Also add comments for the
corresponding dependencies on syntax_tools and runtime_tools, as well as
the optional runtime dependency on ssl.
Diffstat (limited to 'lib/diameter/src/diameter.app.src')
-rw-r--r-- | lib/diameter/src/diameter.app.src | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/diameter/src/diameter.app.src b/lib/diameter/src/diameter.app.src index ceefb9b398..0eb9e26a44 100644 --- a/lib/diameter/src/diameter.app.src +++ b/lib/diameter/src/diameter.app.src @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2013. All Rights Reserved. +%% Copyright Ericsson AB 2010-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -20,9 +20,18 @@ {application, diameter, [{description, "Diameter protocol"}, {vsn, "%VSN%"}, - {modules, [%MODULES%]}, + {modules, [ + %MODULES% + %,%COMPILER% + %,%INFO% + ]}, {registered, [%REGISTERED%]}, - {applications, [stdlib, kernel]}, + {applications, [ + stdlib, kernel + %, syntax_tools + %, runtime_tools + %, ssl + ]}, {env, []}, {mod, {diameter_app, []}} ]}. |