~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/ssh/src/ssh.app.src

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%%% This is an -*- erlang -*- file.
 
2
 
 
3
{application, ssh,
 
4
 [{description, "SSH-2 for Erlang/OTP"},
 
5
  {vsn, "%VSN%"},
 
6
  {modules, ['DSS',
 
7
             'PKCS-1',
 
8
             ssh,
 
9
             ssh_app,
 
10
             ssh_bits,
 
11
             ssh_cli,
 
12
             ssh_cm,
 
13
             ssh_dsa,
 
14
             ssh_file,
 
15
             ssh_io,
 
16
             ssh_math,
 
17
             ssh_no_io,
 
18
             ssh_rsa,
 
19
             ssh_sftp,
 
20
             ssh_sftpd,
 
21
             ssh_ssh,
 
22
             ssh_sshd,
 
23
             ssh_tcp,
 
24
             ssh_tcp_wrap,
 
25
             ssh_transport,
 
26
             ssh_userauth,
 
27
             ssh_xfer]},
 
28
  {registered, []},
 
29
  {applications, [kernel, stdlib, crypto]},
 
30
  {env, []},
 
31
  {mod, {ssh_app, []}}]}.
 
32
 
 
33