Description: Update to work with apache file globs
 such as Include /etc/apache2/mods-enabled/*.load
Author: Stephen Gran <sgran@debian.org>
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=7537

--- a/ApacheFormat.pm
+++ b/ApacheFormat.pm
@@ -599,6 +599,8 @@ sub _read {
                                      "line $$line_num: $!");
                         @files = map { "$f/$_" } sort grep { -f "$f/$_" } readdir INCD;
                         closedir(INCD);
+                    } elsif ($f =~ /\*/) { # Apache file glob
+                        @files = glob $f;
                     } else {
                         @files = $f;
                     }
