=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 4.9 retrieving revision 4.10 diff -u -p -r4.9 -r4.10 --- cvsweb/Attic/cvsweb.conf 2019/11/26 10:58:15 4.9 +++ cvsweb/Attic/cvsweb.conf 2019/11/26 11:08:16 4.10 @@ -1,5 +1,5 @@ # -*- perl -*- -# $Id: cvsweb.conf,v 4.9 2019/11/26 10:58:15 schwarze Exp $ +# $Id: cvsweb.conf,v 4.10 2019/11/26 11:08:16 schwarze Exp $ # $doc: cvsweb.conf,v 1.38 2006/01/19 19:53:38 ceri # $knu: cvsweb.conf,v 1.97 2005/06/19 09:13:50 scop # @@ -510,23 +510,6 @@ $ENV{CVSREADONLYFS} = 1 unless exists($ENV{CVSREADONLY # this should be set to 0 or commented out. # #$DEBUG = 1; - -# Enable this to let CVSweb load extra configuration files from the "conf.d" -# subdirectory of the directory this file is located in. This enables site -# specific configuration without having to modify this "master" configuration -# file (except for enabling this functionality below :) -# -if (0) { - my $confdir = catdir(dirname(__FILE__), 'conf.d'); - if (opendir(CONFD, $confdir)) { - my @files = sort(map(catfile($confdir, $_), readdir(CONFD))); - close(CONFD); - for my $conffile (grep(-f && -r _, @files)) { - ($conffile) = ($conffile =~ /(.+\.conf)$/) or next; - do "$conffile" or config_error($conffile, $@); - } - } -} 1;