~ubuntu-branches/ubuntu/edgy/libapache2-mod-perl2/edgy

« back to all changes in this revision

Viewing changes to docs/user/config/custom.pod

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2004-08-19 06:23:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040819062348-jxl4koqbtvgm8v2t
Tags: 1.99.14-4
Remove the LFS CFLAGS, and build-dep against apache2-*-dev (>= 2.0.50-10)
as we're backing out of the apache2/apr ABI transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
910
910
      my($base, $add) = @_;
911
911
  
912
912
      my %mrg = ();
913
 
      for my $key (keys %$base, %$add) {
 
913
      for my $key (keys %$base, keys %$add) {
914
914
          next if exists $mrg{$key};
915
915
          if ($key eq 'MyPlus') {
916
916
              $mrg{$key} = ($base->{$key}||0) + ($add->{$key}||0);