This is the mail archive of the cygwin-apps@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: [PATCH]webmin with camp and cygwin


> Hi,
>
> for an intranet project in our company I have problems with iis and try to
> migrate to apache. Apache is avaliable for windows or cygwin, but graphical
> remote configuring apache was left. As I'm using webmin for other linux based
> web server, I tried to use webmin on cygwin for doing this.
>
<snip>

I have created an additional patch for apache module handling

/usr/local/webmin-0.88/apache/core.pl - patch

--- core.pl.orig        Sat Oct 27 21:52:19 2001
+++ core.pl     Sat Oct 27 21:53:32 2001
@@ -1056,6 +1056,12 @@
        elsif ($d->{'words'}->[1] =~ /lib([^\/\s]+)\.so/) {
                push(@allmods, "mod_$1");
                }
+       elsif ($d->{'words'}->[1] =~ /(mod_\S+)\.dll/) {
+               push(@allmods, $1);
+               }
+       elsif ($d->{'words'}->[1] =~ /lib([^\/\s]+)\.dll/) {
+               push(@allmods, "mod_$1");
+               }
        }

 if (@{$_[0]}) {


Ralf



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]