~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/config/settings-get.pl

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
print '#include "file-lock.h"'."\n";
9
9
print '#include "fsync-mode.h"'."\n";
10
10
print '#include "hash-format.h"'."\n";
11
 
print '#include "network.h"'."\n";
 
11
print '#include "net.h"'."\n";
12
12
print '#include "unichar.h"'."\n";
13
13
print '#include "settings-parser.h"'."\n";
14
14
print '#include "all-settings.h"'."\n";
136
136
print "};\n";
137
137
 
138
138
print "const struct setting_parser_info *all_default_roots[] = {\n";
 
139
print "\t&master_service_setting_parser_info,\n";
 
140
print "\t&master_service_ssl_setting_parser_info,\n";
139
141
foreach my $name (keys %parsers) {
140
142
  my $module = $parsers{$name};
141
143
  next if (!$module);