upload apache
[bottlenecks.git] / rubbos / app / apache2 / bin / apxs
1 #!/usr/bin/perl -w
2 #
3 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # contributor license agreements.  See the NOTICE file distributed with
5 # this work for additional information regarding copyright ownership.
6 # The ASF licenses this file to You under the Apache License, Version 2.0
7 # (the "License"); you may not use this file except in compliance with
8 # the License.  You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 require 5.003;
19 use strict;
20 package apxs;
21
22 ##
23 ##  Configuration
24 ##
25
26 my %config_vars = ();
27
28 my $installbuilddir = "/bottlenecks/rubbos/app/apache2/build";
29 get_config_vars("$installbuilddir/config_vars.mk",\%config_vars);
30
31 # read the configuration variables once
32
33 my $prefix         = get_vars("prefix");
34 my $CFG_PREFIX     = $prefix;
35 my $exec_prefix    = get_vars("exec_prefix");
36 my $datadir        = get_vars("datadir");
37 my $localstatedir  = get_vars("localstatedir");
38 my $CFG_TARGET     = get_vars("progname");
39 my $CFG_SYSCONFDIR = get_vars("sysconfdir");
40 my $CFG_CFLAGS     = join ' ', map { get_vars($_) }
41   qw(SHLTCFLAGS CFLAGS NOTEST_CPPFLAGS EXTRA_CPPFLAGS EXTRA_CFLAGS);
42 my $includedir     = get_vars("includedir");
43 my $CFG_INCLUDEDIR = eval qq("$includedir");
44 my $CFG_CC         = get_vars("CC");
45 my $libexecdir     = get_vars("libexecdir");
46 my $CFG_LIBEXECDIR = eval qq("$libexecdir");
47 my $sbindir        = get_vars("sbindir");
48 my $CFG_SBINDIR    = eval qq("$sbindir");
49 my $ltflags        = $ENV{'LTFLAGS'};
50 $ltflags or $ltflags = "--silent";
51
52 my %internal_vars = map {$_ => 1}
53     qw(TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB
54        PREFIX SBINDIR INCLUDEDIR LIBEXECDIR SYSCONFDIR);
55
56 ##
57 ##  parse argument line
58 ##
59
60 #   defaults for parameters
61 my $opt_n = '';
62 my $opt_g = '';
63 my $opt_c = 0;
64 my $opt_o = '';
65 my @opt_D = ();
66 my @opt_I = ();
67 my @opt_L = ();
68 my @opt_l = ();
69 my @opt_W = ();
70 my @opt_S = ();
71 my $opt_e = 0;
72 my $opt_i = 0;
73 my $opt_a = 0;
74 my $opt_A = 0;
75 my $opt_q = 0;
76 my $opt_h = 0;
77 my $opt_p = 0;
78
79 #   this subroutine is derived from Perl's getopts.pl with the enhancement of
80 #   the "+" metacharacter at the format string to allow a list to be built by
81 #   subsequent occurrences of the same option.
82 sub Getopts {
83     my ($argumentative, @ARGV) = @_;
84     my $errs = 0;
85     local $_;
86     local $[ = 0;
87
88     my @args = split / */, $argumentative;
89     while (@ARGV && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) {
90         my ($first, $rest) = ($1,$2);
91         if ($_ =~ m|^--$|) {
92             shift @ARGV;
93             last;
94         }
95         my $pos = index($argumentative,$first);
96         if ($pos >= $[) {
97             if ($pos < $#args && $args[$pos+1] eq ':') {
98                 shift @ARGV;
99                 if ($rest eq '') {
100                     unless (@ARGV) {
101                         error("Incomplete option: $first (needs an argument)");
102                         $errs++;
103                     }
104                     $rest = shift(@ARGV);
105                 }
106                 eval "\$opt_$first = \$rest;";
107             }
108             elsif ($pos < $#args && $args[$pos+1] eq '+') {
109                 shift @ARGV;
110                 if ($rest eq '') {
111                     unless (@ARGV) {
112                         error("Incomplete option: $first (needs an argument)");
113                         $errs++;
114                     }
115                     $rest = shift(@ARGV);
116                 }
117                 eval "push(\@opt_$first, \$rest);";
118             }
119             else {
120                 eval "\$opt_$first = 1";
121                 if ($rest eq '') {
122                     shift(@ARGV);
123                 }
124                 else {
125                     $ARGV[0] = "-$rest";
126                 }
127             }
128         }
129         else {
130             error("Unknown option: $first");
131             $errs++;
132             if ($rest ne '') {
133                 $ARGV[0] = "-$rest";
134             }
135             else {
136                 shift(@ARGV);
137             }
138         }
139     }
140     return ($errs == 0, @ARGV);
141 }
142
143 sub usage {
144     print STDERR "Usage: apxs -g [-S <var>=<val>] -n <modname>\n";
145     print STDERR "       apxs -q [-S <var>=<val>] <query> ...\n";
146     print STDERR "       apxs -c [-S <var>=<val>] [-o <dsofile>] [-D <name>[=<value>]]\n";
147     print STDERR "               [-I <incdir>] [-L <libdir>] [-l <libname>] [-Wc,<flags>]\n";
148     print STDERR "               [-Wl,<flags>] [-p] <files> ...\n";
149     print STDERR "       apxs -i [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n";
150     print STDERR "       apxs -e [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n";
151     exit(1);
152 }
153
154 #   option handling
155 my $rc;
156 ($rc, @ARGV) = &Getopts("qn:gco:I+D+L+l+W+S+eiaAp", @ARGV);
157 &usage if ($rc == 0);
158 &usage if ($#ARGV == -1 and not $opt_g);
159 &usage if (not $opt_q and not ($opt_g and $opt_n) and not $opt_i and not $opt_c and not $opt_e);
160
161 #   argument handling
162 my @args = @ARGV;
163 my $name = 'unknown';
164 $name = $opt_n if ($opt_n ne '');
165
166 if (@opt_S) {
167     my ($opt_S);
168     foreach $opt_S (@opt_S) {
169         if ($opt_S =~ m/^([^=]+)=(.*)$/) {
170             my ($var) = $1;
171             my ($val) = $2;
172             my $oldval = eval "\$CFG_$var";
173
174             unless ($var and $oldval) {
175                 print STDERR "apxs:Error: no config variable $var\n";
176                 &usage;
177             }
178
179             eval "\$CFG_${var}=\"${val}\"";
180         } else {
181             print STDERR "apxs:Error: malformatted -S option\n";
182             &usage;
183         }       
184     }
185 }
186
187 ##
188 ##  Initial shared object support check
189 ##
190 my $httpd = get_vars("sbindir") . "/" . get_vars("progname");
191 $httpd = eval qq("$httpd");
192 $httpd = eval qq("$httpd");
193 my $envvars = get_vars("sbindir") . "/envvars";
194 $envvars = eval qq("$envvars");
195 $envvars = eval qq("$envvars");
196
197 #allow apxs to be run from the source tree, before installation
198 if ($0 =~ m:support/apxs$:) {
199     ($httpd = $0) =~ s:support/apxs$::;
200 }
201
202 unless (-x "$httpd") {
203         error("$httpd not found or not executable");
204         exit 1;
205 }
206
207 unless (grep /mod_so/, `. $envvars && $httpd -l`) {
208     error("Sorry, no shared object support for Apache");
209     error("available under your platform. Make sure");
210     error("the Apache module mod_so is compiled into");
211     error("your server binary `$httpd'.");
212     exit 1;
213 }
214
215 sub get_config_vars{
216     my ($file, $rh_config) = @_;
217
218     open IN, $file or die "cannot open $file: $!";
219     while (<IN>){
220         if (/^\s*(.*?)\s*=\s*(.*)$/){
221             $rh_config->{$1} = $2;
222         }
223     }
224     close IN;
225 }
226
227 sub get_vars {
228     my $result = '';
229     my $ok = 0;
230     my $arg;
231     foreach $arg (@_) {
232         if (exists $config_vars{$arg} or exists $config_vars{lc $arg}) {
233             my $val = exists $config_vars{$arg}
234                 ? $config_vars{$arg}
235                 : $config_vars{lc $arg};
236             $val =~ s/[()]//g;
237             $result .= eval "qq($val)" if defined $val;
238             $result .= ";;";
239             $ok = 1;
240         }
241         if (not $ok) {
242             if (exists $internal_vars{$arg} or exists $internal_vars{lc $arg}) {
243                 my $val = exists $internal_vars{$arg} ? $arg : lc $arg;
244                 $val = eval "\$CFG_$val";
245                 $result .= eval "qq($val)" if defined $val;
246                 $result .= ";;";
247                 $ok = 1;
248             }
249             if (not $ok) {
250                 error("Invalid query string `$arg'");
251                 exit(1);
252             }
253         }
254     }
255     $result =~ s|;;$||;
256     $result =~ s|:| |;
257     return $result;
258 }
259
260 ##
261 ##  Operation
262 ##
263
264 #   helper function for executing a list of
265 #   system command with return code checks
266 sub execute_cmds {
267     my (@cmds) = @_;
268     my ($cmd, $rc);
269
270     foreach $cmd (@cmds) {
271         notice($cmd);
272         $rc = system $cmd;
273         if ($rc) {
274             error(sprintf "Command failed with rc=%d\n", $rc << 8);
275             exit 1 ;
276         }
277     }
278 }
279
280 if ($opt_g) {
281     ##
282     ##  SAMPLE MODULE SOURCE GENERATION
283     ##
284
285     if (-d $name) {
286         error("Directory `$name' already exists. Remove first");
287         exit(1);
288     }
289
290     my $data = join('', <DATA>);
291     $data =~ s|%NAME%|$name|sg;
292     $data =~ s|%TARGET%|$CFG_TARGET|sg;
293     $data =~ s|%PREFIX%|$prefix|sg;
294     $data =~ s|%INSTALLBUILDDIR%|$installbuilddir|sg;
295
296     my ($mkf, $mods, $src) = ($data =~ m|^(.+)-=#=-\n(.+)-=#=-\n(.+)|s);
297
298     notice("Creating [DIR]  $name");
299     system("mkdir $name");
300     notice("Creating [FILE] $name/Makefile");
301     open(FP, ">${name}/Makefile") || die;
302     print FP $mkf;
303     close(FP);
304     notice("Creating [FILE] $name/modules.mk");
305     open(FP, ">${name}/modules.mk") || die;
306     print FP $mods;
307     close(FP);
308     notice("Creating [FILE] $name/mod_$name.c");
309     open(FP, ">${name}/mod_${name}.c") || die;
310     print FP $src;
311     close(FP);
312     notice("Creating [FILE] $name/.deps");
313     system("touch ${name}/.deps");
314
315     exit(0);
316 }
317
318
319 if ($opt_q) {
320     ##
321     ##  QUERY INFORMATION 
322     ##
323     my $result = get_vars(@args);
324     print "$result\n";
325 }
326
327 my $apr_bindir = get_vars("APR_BINDIR");
328
329 if (! -x "$apr_bindir/apr-config") {
330     error("$apr_bindir/apr-config not found!");
331     exit(1);
332 }
333
334 my $apu_bindir = get_vars("APU_BINDIR");
335
336 if (! -x "$apu_bindir/apu-config") {
337     error("$apu_bindir/apu-config not found!");
338     exit(1);
339 }
340
341 my $libtool = `$apr_bindir/apr-config --installbuilddir`;
342 chomp($libtool);
343 $libtool = "$libtool/libtool";
344
345 my $apr_includedir = `$apr_bindir/apr-config --includes`;
346 chomp($apr_includedir);
347 my $apu_includedir = `$apu_bindir/apu-config --includes`;
348 chomp($apu_includedir);
349
350 if ($opt_c) {
351     ##
352     ##  SHARED OBJECT COMPILATION
353     ##
354
355     #   split files into sources and objects
356     my @srcs = ();
357     my @objs = ();
358     my $f;
359     foreach $f (@args) {
360         if ($f =~ m|\.c$|) {
361             push(@srcs, $f);
362         }
363         else {
364             push(@objs, $f);
365         }
366     }
367
368     #   determine output file
369     my $dso_file;
370     if ($opt_o eq '') {
371         if ($#srcs > -1) {
372             $dso_file = $srcs[0];
373             $dso_file =~ s|\.[^.]+$|.la|;
374         }
375         elsif ($#objs > -1) {
376             $dso_file = $objs[0];
377             $dso_file =~ s|\.[^.]+$|.la|;
378         }
379         else {
380             $dso_file = "mod_unknown.la";
381         }
382     }
383     else {
384         $dso_file = $opt_o;
385         $dso_file =~ s|\.[^.]+$|.la|;
386     }
387
388     #   create compilation commands
389     my @cmds = ();
390     my $opt = '';
391     my ($opt_Wc, $opt_I, $opt_D);
392     foreach $opt_Wc (@opt_W) {
393         $opt .= "$1 " if ($opt_Wc =~ m|^\s*c,(.*)$|);
394     }
395     foreach $opt_I (@opt_I) {
396         $opt .= "-I$opt_I ";
397     }
398     foreach $opt_D (@opt_D) {
399         $opt .= "-D$opt_D ";
400     }
401     my $cflags = "$CFG_CFLAGS";
402     my $s;
403     my $mod;
404     foreach $s (@srcs) {
405         my $slo = $s;
406         $slo =~ s|\.c$|.slo|;
407         my $lo = $s;
408         $lo =~ s|\.c$|.lo|;
409         my $la = $s;
410         $la =~ s|\.c$|.la|;
411         my $o = $s;
412         $o =~ s|\.c$|.o|;
413         push(@cmds, "$libtool $ltflags --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $apr_includedir $apu_includedir $opt -c -o $lo $s && touch $slo");
414         unshift(@objs, $lo);
415     }
416
417     #   create link command
418     my $o;
419     my $lo;     
420     foreach $o (@objs) {
421         $lo .= " $o";
422     }
423     my ($opt_Wl, $opt_L, $opt_l);
424     $opt = '';
425     foreach $opt_Wl (@opt_W) {
426         $opt .= "$1 " if ($opt_Wl =~ m|^\s*l,(.*)$|);
427     }
428     foreach $opt_L (@opt_L) {
429         $opt .= " -L$opt_L";
430     }
431     foreach $opt_l (@opt_l) {
432         $opt .= " -l$opt_l";
433     }
434
435     if ($opt_p == 1) {
436         
437         my $apr_libs=`$apr_bindir/apr-config --ldflags --link-libtool --libs`;
438         chomp($apr_libs);
439         my $apu_libs=`$apu_bindir/apu-config --ldflags --link-libtool --libs`;
440         chomp($apu_libs);
441         
442         $opt .= " ".$apu_libs." ".$apr_libs;
443     }
444     else {
445         my $apr_ldflags=`$apr_bindir/apr-config --ldflags`;
446         chomp($apr_ldflags);
447         $opt .= " -rpath $CFG_LIBEXECDIR -module -avoid-version $apr_ldflags";
448     }
449
450     push(@cmds, "$libtool $ltflags --mode=link $CFG_CC -o $dso_file $opt $lo");
451
452     #   execute the commands
453     &execute_cmds(@cmds);
454
455     #   allow one-step compilation and installation
456     if ($opt_i or $opt_e) {
457         @args = ( $dso_file );
458     }
459 }
460
461 if ($opt_i or $opt_e) {
462     ##
463     ##  SHARED OBJECT INSTALLATION
464     ##
465
466     #   determine installation commands
467     #   and corresponding LoadModule/AddModule directives
468     my @lmd = ();
469     my @amd = ();
470     my @cmds = ();
471     my $f;
472     foreach $f (@args) {
473         if ($f !~ m#(\.so$|\.la$)#) {
474             error("file $f is not a shared object");
475             exit(1);
476         }
477         my $t = $f;
478         $t =~ s|^.+/([^/]+)$|$1|;
479         $t =~ s|\.la$|\.so|;
480         if ($opt_i) {
481             push(@cmds, "$installbuilddir/instdso.sh SH_LIBTOOL='" .
482                  "$libtool' $f $CFG_LIBEXECDIR");
483             push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t");
484         }
485
486         #   determine module symbolname and filename
487         my $filename = '';
488         if ($name eq 'unknown') {
489             $name = '';
490             my $base = $f;
491             $base =~ s|\.[^.]+$||;
492             if (-f "$base.c") {
493                 open(FP, "<$base.c");
494                 my $content = join('', <FP>);
495                 close(FP);
496                 if ($content =~ m|.*module\s+(?:AP_MODULE_DECLARE_DATA\s+)?([a-zA-Z0-9_]+)_module\s*=\s*.*|s) {
497                     $name = "$1";
498                     $filename = "$base.c";
499                     $filename =~ s|^[^/]+/||;
500                 }
501             }
502             if ($name eq '') {
503                 if ($base =~ m|.*mod_([a-zA-Z0-9_]+)\..+|) {
504                     $name = "$1";
505                     $filename = $base;
506                     $filename =~ s|^[^/]+/||;
507                 }
508             }
509             if ($name eq '') {
510                 error("Sorry, cannot determine bootstrap symbol name");
511                 error("Please specify one with option `-n'");
512                 exit(1);
513             }
514         }
515         if ($filename eq '') {
516             $filename = "mod_${name}.c";
517         }
518         my $dir = $CFG_LIBEXECDIR;
519         $dir =~ s|^$CFG_PREFIX/?||;
520         $dir =~ s|(.)$|$1/|;
521         $t =~ s|\.la$|.so|;
522         push(@lmd, sprintf("LoadModule %-18s %s", "${name}_module", "$dir$t"));
523         push(@amd, sprintf("AddModule %s", $filename));
524     }
525
526     #   execute the commands
527     &execute_cmds(@cmds);
528
529     #   activate module via LoadModule/AddModule directive
530     if ($opt_a or $opt_A) {
531         if (not -f "$CFG_SYSCONFDIR/$CFG_TARGET.conf") {
532             error("Config file $CFG_SYSCONFDIR/$CFG_TARGET.conf not found");
533             exit(1);
534         }
535
536         open(FP, "<$CFG_SYSCONFDIR/$CFG_TARGET.conf") || die;
537         my $content = join('', <FP>);
538         close(FP);
539
540         if ($content !~ m|\n#?\s*LoadModule\s+|) {
541             error("Activation failed for custom $CFG_SYSCONFDIR/$CFG_TARGET.conf file.");
542             error("At least one `LoadModule' directive already has to exist.");
543             exit(1);
544         }
545
546         my $lmd;
547         my $c = '';
548         $c = '#' if ($opt_A);
549         foreach $lmd (@lmd) {
550             my $what = $opt_A ? "preparing" : "activating";
551             my $lmd_re = $lmd;
552             $lmd_re =~ s/\s+/\\s+/g;
553
554             if ($content !~ m|\n#?\s*$lmd_re|) {
555                 # check for open <containers>, so that the new LoadModule
556                 # directive always appears *outside* of an <container>.
557
558                 my $before = ($content =~ m|^(.*\n)#?\s*LoadModule\s+[^\n]+\n|s)[0];
559
560                 # the '()=' trick forces list context and the scalar
561                 # assignment counts the number of list members (aka number
562                 # of matches) then
563                 my $cntopen = () = ($before =~ m|^\s*<[^/].*$|mg);
564                 my $cntclose = () = ($before =~ m|^\s*</.*$|mg);
565
566                 if ($cntopen == $cntclose) {
567                     # fine. Last LoadModule is contextless.
568                     $content =~ s|^(.*\n#?\s*LoadModule\s+[^\n]+\n)|$1$c$lmd\n|s;
569                 }
570                 elsif ($cntopen < $cntclose) {
571                     error('Configuration file is not valid. There are sections'
572                           . ' closed before opened.');
573                     exit(1);
574                 }
575                 else {
576                     # put our cmd after the section containing the last
577                     # LoadModule.
578                     my $found =
579                     $content =~ s!\A (               # string and capture start
580                                   (?:(?:
581                                     ^\s*             # start of conf line with a
582                                     (?:[^<]|<[^/])   # directive which does not
583                                                      # start with '</'
584
585                                     .*(?:$)\n        # rest of the line.
586                                                      # the '$' is in parentheses
587                                                      # to avoid misinterpreting
588                                                      # the string "$\" as
589                                                      # perl variable.
590
591                                     )*               # catch as much as possible
592                                                      # of such lines. (including
593                                                      # zero)
594
595                                     ^\s*</.*(?:$)\n? # after the above, we
596                                                      # expect a config line with
597                                                      # a closing container (</)
598
599                                   ) {$cntopen}       # the whole pattern (bunch
600                                                      # of lines that end up with
601                                                      # a closing directive) must
602                                                      # be repeated $cntopen
603                                                      # times. That's it.
604                                                      # Simple, eh? ;-)
605
606                                   )                  # capture end
607                                  !$1$c$lmd\n!mx;
608
609                     unless ($found) {
610                         error('Configuration file is not valid. There are '
611                               . 'sections opened and not closed.');
612                         exit(1);
613                     }
614                 }
615             } else {
616                 # replace already existing LoadModule line
617                 $content =~ s|^(.*\n)#?\s*$lmd_re[^\n]*\n|$1$c$lmd\n|s;
618             }
619             $lmd =~ m|LoadModule\s+(.+?)_module.*|;
620             notice("[$what module `$1' in $CFG_SYSCONFDIR/$CFG_TARGET.conf]");
621         }
622         my $amd;
623         foreach $amd (@amd) {
624             if ($content !~ m|\n#?\s*$amd|) {
625                  $content =~ s|^(.*\n#?\s*AddModule\s+[^\n]+\n)|$1$c$amd\n|sg;
626             } else {
627                  $content =~ s|^(.*\n)#?\s*$amd[^\n]*\n|$1$c$amd\n|sg;
628             }
629         }
630         if (@lmd or @amd) {
631             if (open(FP, ">$CFG_SYSCONFDIR/$CFG_TARGET.conf.new")) {
632                 print FP $content;
633                 close(FP);
634                 system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf $CFG_SYSCONFDIR/$CFG_TARGET.conf.bak && " .
635                        "cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " .
636                        "rm $CFG_SYSCONFDIR/$CFG_TARGET.conf.new");
637             } else {
638                 notice("unable to open configuration file");
639             }
640         }
641     }
642 }
643
644 sub error{
645     print STDERR "apxs:Error: $_[0].\n";
646 }
647
648 sub notice{
649     print STDERR "$_[0]\n";
650 }
651
652 ##EOF##
653 __DATA__
654 ##
655 ##  Makefile -- Build procedure for sample %NAME% Apache module
656 ##  Autogenerated via ``apxs -n %NAME% -g''.
657 ##
658
659 builddir=.
660 top_srcdir=%PREFIX%
661 top_builddir=%PREFIX%
662 include %INSTALLBUILDDIR%/special.mk
663
664 #   the used tools
665 APXS=apxs
666 APACHECTL=apachectl
667
668 #   additional defines, includes and libraries
669 #DEFS=-Dmy_define=my_value
670 #INCLUDES=-Imy/include/dir
671 #LIBS=-Lmy/lib/dir -lmylib
672
673 #   the default target
674 all: local-shared-build
675
676 #   install the shared object file into Apache 
677 install: install-modules
678
679 #   cleanup
680 clean:
681         -rm -f mod_%NAME%.o mod_%NAME%.lo mod_%NAME%.slo mod_%NAME%.la 
682
683 #   simple test
684 test: reload
685         lynx -mime_header http://localhost/%NAME%
686
687 #   install and activate shared object by reloading Apache to
688 #   force a reload of the shared object file
689 reload: install restart
690
691 #   the general Apache start/restart/stop
692 #   procedures
693 start:
694         $(APACHECTL) start
695 restart:
696         $(APACHECTL) restart
697 stop:
698         $(APACHECTL) stop
699
700 -=#=-
701 mod_%NAME%.la: mod_%NAME%.slo
702         $(SH_LINK) -rpath $(libexecdir) -module -avoid-version  mod_%NAME%.lo
703 DISTCLEAN_TARGETS = modules.mk
704 shared =  mod_%NAME%.la
705 -=#=-
706 /* 
707 **  mod_%NAME%.c -- Apache sample %NAME% module
708 **  [Autogenerated via ``apxs -n %NAME% -g'']
709 **
710 **  To play with this sample module first compile it into a
711 **  DSO file and install it into Apache's modules directory 
712 **  by running:
713 **
714 **    $ apxs -c -i mod_%NAME%.c
715 **
716 **  Then activate it in Apache's %TARGET%.conf file for instance
717 **  for the URL /%NAME% in as follows:
718 **
719 **    #   %TARGET%.conf
720 **    LoadModule %NAME%_module modules/mod_%NAME%.so
721 **    <Location /%NAME%>
722 **    SetHandler %NAME%
723 **    </Location>
724 **
725 **  Then after restarting Apache via
726 **
727 **    $ apachectl restart
728 **
729 **  you immediately can request the URL /%NAME% and watch for the
730 **  output of this module. This can be achieved for instance via:
731 **
732 **    $ lynx -mime_header http://localhost/%NAME% 
733 **
734 **  The output should be similar to the following one:
735 **
736 **    HTTP/1.1 200 OK
737 **    Date: Tue, 31 Mar 1998 14:42:22 GMT
738 **    Server: Apache/1.3.4 (Unix)
739 **    Connection: close
740 **    Content-Type: text/html
741 **  
742 **    The sample page from mod_%NAME%.c
743 */ 
744
745 #include "httpd.h"
746 #include "http_config.h"
747 #include "http_protocol.h"
748 #include "ap_config.h"
749
750 /* The sample content handler */
751 static int %NAME%_handler(request_rec *r)
752 {
753     if (strcmp(r->handler, "%NAME%")) {
754         return DECLINED;
755     }
756     r->content_type = "text/html";      
757
758     if (!r->header_only)
759         ap_rputs("The sample page from mod_%NAME%.c\n", r);
760     return OK;
761 }
762
763 static void %NAME%_register_hooks(apr_pool_t *p)
764 {
765     ap_hook_handler(%NAME%_handler, NULL, NULL, APR_HOOK_MIDDLE);
766 }
767
768 /* Dispatch list for API hooks */
769 module AP_MODULE_DECLARE_DATA %NAME%_module = {
770     STANDARD20_MODULE_STUFF, 
771     NULL,                  /* create per-dir    config structures */
772     NULL,                  /* merge  per-dir    config structures */
773     NULL,                  /* create per-server config structures */
774     NULL,                  /* merge  per-server config structures */
775     NULL,                  /* table of config file commands       */
776     %NAME%_register_hooks  /* register hooks                      */
777 };
778