~clint-fewbar/ubuntu/precise/erlang/merge-15b

« back to all changes in this revision

Viewing changes to bootstrap/lib/kernel/ebin/kernel.app

  • Committer: Package Import Robot
  • Author(s): Sergei Golovan
  • Date: 2011-12-15 19:20:10 UTC
  • mfrom: (1.1.18) (3.5.15 sid)
  • mto: (3.5.16 sid)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20111215192010-jnxcfe3tbrpp0big
Tags: 1:15.b-dfsg-1
* New upstream release.
* Upload to experimental because this release breaks external drivers
  API along with ABI, so several applications are to be fixed.
* Removed SSL patch because the old SSL implementation is removed from
  the upstream distribution.
* Removed never used patch which added native code to erlang beam files.
* Removed the erlang-docbuilder binary package because the docbuilder
  application was dropped by upstream.
* Documented dropping ${erlang-docbuilder:Depends} substvar in
  erlang-depends(1) manpage.
* Made erlang-base and erlang-base-hipe provide virtual package
  erlang-abi-15.b (the number means the first erlang version, which
  provides current ABI).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%%
2
 
%% %CopyrightBegin%
3
 
%% 
4
 
%% Copyright Ericsson AB 1996-2009. All Rights Reserved.
5
 
%% 
6
 
%% The contents of this file are subject to the Erlang Public License,
7
 
%% Version 1.1, (the "License"); you may not use this file except in
8
 
%% compliance with the License. You should have received a copy of the
9
 
%% Erlang Public License along with this software. If not, it can be
10
 
%% retrieved online at http://www.erlang.org/.
11
 
%% 
12
 
%% Software distributed under the License is distributed on an "AS IS"
13
 
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
14
 
%% the License for the specific language governing rights and limitations
15
 
%% under the License.
16
 
%% 
17
 
%% %CopyrightEnd%
18
 
%%
19
 
%% This is an -*- erlang -*- file.
20
 
%%
21
 
{application, kernel,
22
 
 [
23
 
  {description, "ERTS  CXC 138 10"},
24
 
  {vsn, "2.14.2"},
25
 
  {modules, [application,
26
 
             application_controller,
27
 
             application_master,
28
 
             application_starter,
29
 
             auth,
30
 
             code,
31
 
             packages,
32
 
             code_server,
33
 
             dist_util,
34
 
             erl_boot_server,
35
 
             erl_distribution,
36
 
             erl_reply,
37
 
             error_handler,
38
 
             error_logger,
39
 
             file,
40
 
             file_server,
41
 
             file_io_server,
42
 
             global,
43
 
             global_group,
44
 
             global_search,
45
 
             group,
46
 
             heart,
47
 
             hipe_unified_loader,
48
 
             inet6_tcp,
49
 
             inet6_tcp_dist,
50
 
             inet6_udp,
51
 
             inet6_sctp,
52
 
             inet_config,
53
 
             inet_hosts,
54
 
             inet_gethost_native,
55
 
             inet_tcp_dist,
56
 
             kernel,
57
 
             kernel_config,
58
 
             net,
59
 
             net_adm,
60
 
             net_kernel,
61
 
             os,
62
 
             ram_file,
63
 
             rpc,
64
 
             user,
65
 
             user_drv,
66
 
             user_sup,
67
 
             disk_log,
68
 
             disk_log_1,
69
 
             disk_log_server,
70
 
             disk_log_sup,
71
 
             dist_ac,
72
 
             erl_ddll,
73
 
             erl_epmd,
74
 
             erts_debug,
75
 
             gen_tcp,
76
 
             gen_udp,
77
 
             gen_sctp,
78
 
             inet,
79
 
             inet_db,
80
 
             inet_dns,
81
 
             inet_parse,
82
 
             inet_res,
83
 
             inet_tcp,
84
 
             inet_udp,
85
 
             inet_sctp,
86
 
             pg2,
87
 
             seq_trace,
88
 
             standard_error,
89
 
             wrap_log_reader]},
90
 
  {registered, [application_controller,
91
 
                erl_reply,
92
 
                auth,
93
 
                boot_server,
94
 
                code_server,
95
 
                disk_log_server,
96
 
                disk_log_sup,
97
 
                erl_prim_loader,
98
 
                error_logger,
99
 
                file_server_2,
100
 
                fixtable_server,
101
 
                global_group,
102
 
                global_name_server,
103
 
                heart,
104
 
                init,
105
 
                kernel_config,
106
 
                kernel_sup,
107
 
                net_kernel,
108
 
                net_sup,
109
 
                rex,
110
 
                user,
111
 
                os_server,
112
 
                ddll_server,
113
 
                erl_epmd,
114
 
                inet_db,
115
 
                pg2]},
116
 
  {applications, []},
117
 
  {env, [{error_logger, tty}]},
118
 
  {mod, {kernel, []}}
119
 
 ]
120
 
}.