Date: 01/21/00
- Next message: Ed Blincoe: "[PHP-DEV] Output binary Images/large objects??"
- Previous message: Steve Edberg: "[PHP-DEV] Re: [PHP3] How to Ignore Header("Location: $PHP_SELF?UID=$UID");"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi !
this is the first message I post on the list. Forgive me if my
question doesn't fit here.
OK. I have problems with installing php3 with apache1.3.9 under
solaris2.7.
I don't think my pb is solaris*7* related anyway.
Here it is:
I run the following:
/dir_php_installation/configure --with-apxs=
/dir_installed_apache/bin/apxs
--with-config-file=/dir_php_where_to_be_installed
make
At this poing I get an error in the apxs file:
checking for Apache module support via DSO through APXS... Can't
locate strict.pm in <email protected> at /home/groovy/www/bin/apxs line 64.
BEGIN failed--compilation aborted at /dir_installed_apache/bin/apxs
line 64.
Can't locate strict.pm in <email protected> at /dir_installed_apache/bin/apxs line
64.
BEGIN failed--compilation aborted at /dir_installed_apache/bin/apxs
line 64.
Can't locate strict.pm in <email protected> at /dir_installed_apache/bin/apxs line
64.
BEGIN failed--compilation aborted at /dir_installed_apache/bin/apxs
line 64.
Can't locate strict.pm in <email protected> at /dir_installed_apache/bin/apxs
line 64.
BEGIN failed--compilation aborted at /dir_installed_apache/bin/apxs
line 64.
Can't locate strict.pm in <email protected> at /dir_installed_apache/bin/apxs
line 64.
BEGIN failed--compilation aborted at /dir_installed_apache/bin/apxs
line 64.
Attached is apxs:
I have first compiled appache doing the following:
configure --prefix=dir_installed_apache --enable-shared=max
make
make install
Can someone help or redirect me to a newsgroup/mailing list ?
Cheers !!
David.
--
#!/soft/bin/perl5 ## ==================================================================== ## Copyright (c) 1998-1999 The Apache Group. All rights reserved. ## ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions ## are met: ## ## 1. Redistributions of source code must retain the above copyright ## notice, this list of conditions and the following disclaimer. ## ## 2. Redistributions in binary form must reproduce the above copyright ## notice, this list of conditions and the following disclaimer in ## the documentation and/or other materials provided with the ## distribution. ## ## 3. All advertising materials mentioning features or use of this ## software must display the following acknowledgment: ## "This product includes software developed by the Apache Group ## for use in the Apache HTTP server project (http://www.apache.org/)." ## ## 4. The names "Apache Server" and "Apache Group" must not be used to ## endorse or promote products derived from this software without ## prior written permission. For written permission, please contact ## apache <email protected> ## ## 5. Products derived from this software may not be called "Apache" ## nor may "Apache" appear in their names without prior written ## permission of the Apache Group. ## ## 6. Redistributions of any form whatsoever must retain the following ## acknowledgment: ## "This product includes software developed by the Apache Group ## for use in the Apache HTTP server project (http://www.apache.org/)." ## ## THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY ## EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR ## PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR ## ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ## NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ## LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ## STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ## OF THE POSSIBILITY OF SUCH DAMAGE. ## ==================================================================== ## ## This software consists of voluntary contributions made by many ## individuals on behalf of the Apache Group and was originally based ## on public domain software written at the National Center for ## Supercomputing Applications, University of Illinois, Urbana-Champaign. ## For more information on the Apache Group and the Apache HTTP server ## project, please see <http://www.apache.org/>. ##
## ## apxs -- APache eXtenSion tool ## Written by Ralf S. Engelschall <rse <email protected>> ##
require 5.003; use strict; package apxs;
## ## Configuration ## my $CFG_CFLAGS_SHLIB = '-fpic -DSHARED_MODULE'; # substituted via Makefile.tmpl my $CFG_LD_SHLIB = 'gcc'; # substituted via Makefile.tmpl my $CFG_LDFLAGS_SHLIB = q(-shared);# substituted via Makefile.tmpl
my $CFG_TARGET = 'httpd'; # substituted via Makefile.tmpl my $CFG_CC = 'gcc'; # substituted via Makefile.tmpl my $CFG_CFLAGS = ' -DSOLARIS2=270 -DUSE_EXPAT -I../lib/expat-lite `../apaci`'; # substituted via Makefile.tmpl my $CFG_CFLAGS_SHLIB = '-fpic -DSHARED_MODULE'; # substituted via Makefile.tmpl my $CFG_LD_SHLIB = 'gcc'; # substituted via Makefile.tmpl my $CFG_LDFLAGS_SHLIB = 'q(-shared)'; # substituted via Makefile.tmpl my $CFG_LIBS_SHLIB = ''; # substituted via Makefile.tmpl my $CFG_PREFIX = '/home/groovy/www'; # substituted via APACI install my $CFG_SBINDIR = '/home/groovy/www/bin'; # substituted via APACI install my $CFG_INCLUDEDIR = '/home/groovy/www/include'; # substituted via APACI install my $CFG_LIBEXECDIR = '/home/groovy/www/libexec'; # substituted via APACI install my $CFG_SYSCONFDIR = '/home/groovy/www/conf'; # substituted via APACI install
## ## Cleanup the above stuff ## $CFG_CFLAGS =~ s|^\s+||; $CFG_CFLAGS =~ s|\s+$||; $CFG_CFLAGS =~ s|\s+`.+apaci`||;
## ## Initial shared object support check ## if (not -x "$CFG_SBINDIR/$CFG_TARGET") { print STDERR "apxs:Error: $CFG_SBINDIR/$CFG_TARGET not found or not executable\n"; exit(1); } if (not grep(/mod_so/, `$CFG_SBINDIR/$CFG_TARGET -l`)) { print STDERR "apxs:Error: Sorry, no shared object support for Apache\n"; print STDERR "apxs:Error: available under your platform. Make sure\n"; print STDERR "apxs:Error: the Apache module mod_so is compiled into\n"; print STDERR "apxs:Error: your server binary `$CFG_SBINDIR/$CFG_TARGET'.\n"; exit(1); }
## ## parse argument line ##
# defaults for parameters my $opt_n = ''; my $opt_g = ''; my $opt_c = 0; my $opt_o = ''; my <email protected> = (); my <email protected> = (); my <email protected> = (); my <email protected> = (); my <email protected> = (); my <email protected> = (); my $opt_e = 0; my $opt_i = 0; my $opt_a = 0; my $opt_A = 0; my $opt_q = 0;
# this subroutine is derived from Perl's getopts.pl with the enhancement of # the "+" metacharater at the format string to allow a list to be build by # subsequent occurance of the same option. sub Getopts { my ($argumentative, <email protected>) = <email protected>; my ( <email protected>, $first, $rest, $pos); my ($errs) = 0; local ($_); local ($[) = 0;
<email protected> = split( / */, $argumentative); while( <email protected> && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) { ($first, $rest) = ($1,$2); if ($_ =~ m|^--$|) { shift( <email protected>); last; } $pos = index($argumentative,$first); if($pos >= $[) { if($args[$pos+1] eq ':') { shift( <email protected>); if($rest eq '') { unless ( <email protected>) { print STDERR "apxs:Error: Incomplete option: $first (needs an argument)\n"; ++$errs; } $rest = shift( <email protected>); } eval "\$opt_$first = \$rest;"; } elsif ($args[$pos+1] eq '+') { shift( <email protected>); if($rest eq '') { unless ( <email protected>) { print STDERR "apxs:Error: Incomplete option: $first (needs an argument)\n"; ++$errs; } $rest = shift( <email protected>); } eval "push(\ <email protected>$first, \$rest);"; } else { eval "\$opt_$first = 1"; if($rest eq '') { shift( <email protected>); } else { $ARGV[0] = "-$rest"; } } } else { print STDERR "apxs:Error: Unknown option: $first\n"; ++$errs; if($rest ne '') { $ARGV[0] = "-$rest"; } else { shift( <email protected>); } } } return ($errs == 0, <email protected>); }
sub usage { print STDERR "Usage: apxs -g [-S <var>=<val>] -n <modname>\n"; print STDERR " apxs -q [-S <var>=<val>] <query> ...\n"; print STDERR " apxs -c [-S <var>=<val>] [-o <dsofile>] [-D <name>[=<value>]]\n"; print STDERR " [-I <incdir>] [-L <libdir>] [-l <libname>] [-Wc,<flags>]\n"; print STDERR " [-Wl,<flags>] <files> ...\n"; print STDERR " apxs -i [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; print STDERR " apxs -e [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; exit(1); }
# option handling my $rc; ($rc, <email protected>) = &Getopts("qn:gco:I+D+L+l+W+S+eiaA", <email protected>); &usage if ($rc == 0); &usage if ($#ARGV == -1 and not $opt_g); &usage if (not $opt_q and not ($opt_g and $opt_n) and not $opt_i and not $opt_c and not $opt_e);
# argument handling my <email protected> = <email protected>; my $name = 'unknown'; $name = $opt_n if ($opt_n ne '');
if ( <email protected>) { my ($opt_S); foreach $opt_S ( <email protected>) { if ($opt_S =~ m/^([^=]+)=(.*)$/) { my ($var) = $1; my ($val) = $2; my $oldval = eval "\$CFG_$var";
unless ($var and $oldval) { print STDERR "apxs:Error: no config variable $var\n"; &usage; }
eval "\$CFG_${var}=\"${val}\""; } else { print STDERR "apxs:Error: malformatted -S option\n"; &usage; } } }
## ## Operation ##
# helper function for executing a list of # system command with return code checks sub execute_cmds { my ( <email protected>) = <email protected>; my ($cmd, $rc);
foreach $cmd ( <email protected>) { print STDERR "$cmd\n"; $rc = system("$cmd"); if ($rc != 0) { printf(STDERR "apxs:Break: Command failed with rc=%d\n", $rc << 8); exit(1); } } }
if ($opt_g) { ## ## SAMPLE MODULE SOURCE GENERATION ##
if (-d $name) { print STDERR "apxs:Error: Directory `$name' already exists. Remove first\n"; exit(1); }
my $data = join('', <DATA>); $data =~ s|%NAME%|$name|sg; $data =~ s|%TARGET%|$CFG_TARGET|sg;
my ($mkf, $src) = ($data =~ m|^(.+)-=#=-\n(.+)|s);
print STDERR "Creating [DIR] $name\n"; system("mkdir $name"); print STDERR "Creating [FILE] $name/Makefile\n"; open(FP, ">${name}/Makefile") || die; print FP $mkf; close(FP); print STDERR "Creating [FILE] $name/mod_$name.c\n"; open(FP, ">${name}/mod_${name}.c") || die; print FP $src; close(FP);
exit(0); }
if ($opt_q) { ## ## QUERY INFORMATION ##
my $result = ''; my $arg; foreach $arg ( <email protected>) { my $ok = 0; my $name; foreach $name (qw( TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB PREFIX SBINDIR INCLUDEDIR LIBEXECDIR SYSCONFDIR )) { if ($arg eq $name or $arg eq lc($name)) { my $val = eval "\$CFG_$name"; $result .= "${val}::"; $ok = 1; } } if (not $ok) { printf(STDERR "apxs:Error: Invalid query string `%s'\n", $arg); exit(1); } } $result =~ s|::$||; $result =~ s|::| |; print $result; }
if ($opt_c) { ## ## SHARED OBJECT COMPILATION ##
# split files into sources and objects my <email protected> = (); my <email protected> = (); my $f; foreach $f ( <email protected>) { if ($f =~ m|\.c$|) { push( <email protected>, $f); } else { push( <email protected>, $f); } }
# determine output file my $dso_file; if ($opt_o eq '') { if ($#srcs > -1) { $dso_file = $srcs[0]; $dso_file =~ s|\.[^.]+$|.so|; } elsif ($#objs > -1) { $dso_file = $objs[0]; $dso_file =~ s|\.[^.]+$|.so|; } else { $dso_file = "mod_unknown.so"; } } else { $dso_file = $opt_o; }
# create compilation commands my <email protected> = (); my $opt = ''; my ($opt_Wc, $opt_I, $opt_D); foreach $opt_Wc ( <email protected>) { $opt .= "$1 " if ($opt_Wc =~ m|^\s*c,(.*)$|); } foreach $opt_I ( <email protected>) { $opt .= "-I$opt_I "; } foreach $opt_D ( <email protected>) { $opt .= "-D$opt_D "; } my $cflags = "$CFG_CFLAGS $CFG_CFLAGS_SHLIB"; my $s; foreach $s ( <email protected>) { my $o = $s; $o =~ s|\.c$|.o|; push( <email protected>, "$CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c $s"); unshift( <email protected>, $o); }
# create link command my $cmd = "$CFG_LD_SHLIB $CFG_LDFLAGS_SHLIB -o $dso_file"; my $o; foreach $o ( <email protected>) { $cmd .= " $o"; } $opt = ''; my ($opt_Wl, $opt_L, $opt_l); foreach $opt_Wl ( <email protected>) { if($CFG_LD_SHLIB ne "gcc") { $opt .= " $1" if ($opt_Wl =~ m|^\s*l,(.*)$|); } else { $opt .= " -W$opt_Wl"; } } foreach $opt_L ( <email protected>) { $opt .= " -L$opt_L"; } foreach $opt_l ( <email protected>) { $opt .= " -l$opt_l"; } $cmd .= $opt; $cmd .= " $CFG_LIBS_SHLIB"; push( <email protected>, $cmd);
# execute the commands &execute_cmds( <email protected>);
# allow one-step compilation and installation if ($opt_i or $opt_e) { <email protected> = ( $dso_file ); } }
if ($opt_i or $opt_e) { ## ## SHARED OBJECT INSTALLATION ##
# determine installation commands # and corresponding LoadModule/AddModule directives my <email protected> = (); my <email protected> = (); my <email protected> = (); my $f; foreach $f ( <email protected>) { if ($f !~ m|\.so$|) { print STDERR "apxs:Error: file $f is not a shared object\n"; exit(1); } my $t = $f; $t =~ s|^.+/([^/]+)$|$1|; if ($opt_i) { push( <email protected>, "cp $f $CFG_LIBEXECDIR/$t"); push( <email protected>, "chmod 755 $CFG_LIBEXECDIR/$t"); }
# determine module symbolname and filename my $filename = ''; if ($name eq 'unknown') { $name = ''; my $base = $f; $base =~ s|\.[^.]+$||; if (-f "$base.c") { open(FP, "<$base.c"); my $content = join('', <FP>); close(FP); if ($content =~ m|.*module\s+(?:MODULE_VAR_EXPORT\s+)?([a-zA-Z0-9_]+)_module\s*=\s*.*|s) { $name = "$1"; $filename = "$base.c"; $filename =~ s|^[^/]+/||; } } if ($name eq '') { if ($base =~ m|.*mod_([a-zA-Z0-9_]+)\..+|) { $name = "$1"; $filename = $base; $filename =~ s|^[^/]+/||; } } if ($name eq '') { print "apxs:Error: Sorry, cannot determine bootstrap symbol name\n"; print "apxs:Error: Please specify one with option `-n'\n"; exit(1); } } if ($filename eq '') { $filename = "mod_${name}.c"; } my $dir = $CFG_LIBEXECDIR; $dir =~ s|^$CFG_PREFIX/?||; $dir =~ s|(.)$|$1/|; push( <email protected>, sprintf("LoadModule %-18s %s", "${name}_module", "$dir$t")); push( <email protected>, sprintf("AddModule %s", $filename)); }
# execute the commands &execute_cmds( <email protected>);
# activate module via LoadModule/AddModule directive if ($opt_a or $opt_A) { if (not -f "$CFG_SYSCONFDIR/$CFG_TARGET.conf") { print "apxs:Error: Config file $CFG_SYSCONFDIR/$CFG_TARGET.conf not found\n"; exit(1); }
open(FP, "<$CFG_SYSCONFDIR/$CFG_TARGET.conf") || die; my $content = join('', <FP>); close(FP);
if ($content !~ m|\n#?\s*LoadModule\s+|) { print STDERR "apxs:Error: Activation failed for custom $CFG_SYSCONFDIR/$CFG_TARGET.conf file.\n"; print STDERR "apxs:Error: At least one `LoadModule' directive already has to exist.\n"; exit(1); }
my $lmd; my $c = ''; $c = '#' if ($opt_A); foreach $lmd ( <email protected>) { my $what = $opt_A ? "preparing" : "activating"; if ($content !~ m|\n#?\s*$lmd|) { $content =~ s|^(.*\n#?\s*LoadModule\s+[^\n]+\n)|$1$c$lmd\n|sg; } else { $content =~ s|^(.*\n)#?\s*$lmd[^\n]*\n|$1$c$lmd\n|sg; } $lmd =~ m|LoadModule\s+(.+?)_module.*|; print STDERR "[$what module `$1' in $CFG_SYSCONFDIR/$CFG_TARGET.conf]\n"; } my $amd; foreach $amd ( <email protected>) { if ($content !~ m|\n#?\s*$amd|) { $content =~ s|^(.*\n#?\s*AddModule\s+[^\n]+\n)|$1$c$amd\n|sg; } else { $content =~ s|^(.*\n)#?\s*$amd[^\n]*\n|$1$c$amd\n|sg; } } if ( <email protected> or <email protected>) { open(FP, ">$CFG_SYSCONFDIR/$CFG_TARGET.conf.new") || die; print FP $content; close(FP); system("cp $CFG_SYSCONFDIR/$CFG_TARGET.conf $CFG_SYSCONFDIR/$CFG_TARGET.conf.bak && " . "cp $CFG_SYSCONFDIR/$CFG_TARGET.conf.new $CFG_SYSCONFDIR/$CFG_TARGET.conf && " . "rm $CFG_SYSCONFDIR/$CFG_TARGET.conf.new"); } } }
##EOF## __DATA__ ## ## Makefile -- Build procedure for sample %NAME% Apache module ## Autogenerated via ``apxs -n %NAME% -g''. ##
# the used tools APXS=apxs APACHECTL=apachectl
# additional defines, includes and libraries #DEF=-Dmy_define=my_value #INC=-Imy/include/dir #LIB=-Lmy/lib/dir -lmylib
# the default target all: mod_%NAME%.so
# compile the shared object file mod_%NAME%.so: mod_%NAME%.c $(APXS) -c $(DEF) $(INC) $(LIB) mod_%NAME%.c
# install the shared object file into Apache install: all $(APXS) -i -a -n '%NAME%' mod_%NAME%.so
# cleanup clean: -rm -f mod_%NAME%.o mod_%NAME%.so
# simple test test: reload lynx -mime_header http://localhost/%NAME%
# install and activate shared object by reloading Apache to # force a reload of the shared object file reload: install restart
# the general Apache start/restart/stop # procedures start: $(APACHECTL) start restart: $(APACHECTL) restart stop: $(APACHECTL) stop
-=#=- /* ** mod_%NAME%.c -- Apache sample %NAME% module ** [Autogenerated via ``apxs -n %NAME% -g''] ** ** To play with this sample module first compile it into a ** DSO file and install it into Apache's libexec directory ** by running: ** ** $ apxs -c -i mod_%NAME%.c ** ** Then activate it in Apache's %TARGET%.conf file for instance ** for the URL /%NAME% in as follows: ** ** # %TARGET%.conf ** LoadModule %NAME%_module libexec/mod_%NAME%.so ** <Location /%NAME%> ** SetHandler %NAME% ** </Location> ** ** Then after restarting Apache via ** ** $ apachectl restart ** ** you immediately can request the URL /%NAME and watch for the ** output of this module. This can be achieved for instance via: ** ** $ lynx -mime_header http://localhost/%NAME% ** ** The output should be similar to the following one: ** ** HTTP/1.1 200 OK ** Date: Tue, 31 Mar 1998 14:42:22 GMT ** Server: Apache/1.3.4 (Unix) ** Connection: close ** Content-Type: text/html ** ** The sample page from mod_%NAME%.c */
#include "httpd.h" #include "http_config.h" #include "http_protocol.h" #include "ap_config.h"
/* The sample content handler */ static int %NAME%_handler(request_rec *r) { r->content_type = "text/html"; ap_send_http_header(r); if (!r->header_only) ap_rputs("The sample page from mod_%NAME%.c\n", r); return OK; }
/* Dispatch list of content handlers */ static const handler_rec %NAME%_handlers[] = { { "%NAME%", %NAME%_handler }, { NULL, NULL } };
/* Dispatch list for API hooks */ module MODULE_VAR_EXPORT %NAME%_module = { STANDARD_MODULE_STUFF, NULL, /* module initializer */ NULL, /* create per-dir config structures */ NULL, /* merge per-dir config structures */ NULL, /* create per-server config structures */ NULL, /* merge per-server config structures */ NULL, /* table of config file commands */ %NAME%_handlers, /* [#8] MIME-typed-dispatched handlers */ NULL, /* [#1] URI to filename translation */ NULL, /* [#4] validate user id from request */ NULL, /* [#5] check if the user is ok _here_ */ NULL, /* [#3] check access by host address */ NULL, /* [#6] determine MIME type */ NULL, /* [#7] pre-run fixups */ NULL, /* [#9] log a transaction */ NULL, /* [#2] header parser */ NULL, /* child_init */ NULL, /* child_exit */ NULL /* [#0] post read-request */ };
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Ed Blincoe: "[PHP-DEV] Output binary Images/large objects??"
- Previous message: Steve Edberg: "[PHP-DEV] Re: [PHP3] How to Ignore Header("Location: $PHP_SELF?UID=$UID");"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

