On Mon, 5 Mar 2001, Henri Delebecque wrote:

> hello,
>
> I'm sure that's trivial, but I'm a newbie in using mod_perl.
> I have read the FAQ, which tells that I should read the documentation.
> I have read the http://perl.apache.org/guide/install.html page,
> and the "A Summary of a Basic mod_perl installation" section.
>
> when I execute the following command:
> perl Makefile.PL APACHE_SRC=/webmaster/apache/src \
> DO_HTTPD=1 EVERYTHING=1 USE_APACI=1 \
> APACHE_PREFIX=/webmaster/apache/httpd.perl,
>
> the perl script runs well, but when I try to make httpd, I
> encounter the following error message:
>
> "entering /webmaster/apache/src"
> "no rule to make target 'all'. Stop"
>
> My server is a Digital/Unix, under Digital Unix 4
>
> any hint ?
> thanks alot

Hmm, may be it has something to do with Digital, but if not, make sure
that /webmaster/apache actually includes the apache sources. I'll repeat
the steps here:

  % cd /usr/src
  % lwp-download http://www.apache.org/dist/apache_x.x.x.tar.gz
  % lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
  % tar xzvf apache_x.x.x.tar.gz
  % tar xzvf mod_perl-x.xx.tar.gz
  % cd mod_perl-x.xx
  % perl Makefile.PL APACHE_SRC=../apache_x.x.x/src \
    DO_HTTPD=1 USE_APACI=1 EVERYTHING=1
  % make && make test && make install
  % cd ../apache_x.x.x
  % make install

replace x.x.x and x.xx with the versions that you use.

if that doesn't help what do you see if you go to apache_x.x.x/src and
type:

  % ./configure
  % make

?

_____________________________________________________________________
Stas Bekman              JAm_pH     --   Just Another mod_perl Hacker
http://stason.org/       mod_perl Guide  http://perl.apache.org/guide
mailto:[EMAIL PROTECTED]   http://apachetoday.com http://logilune.com/
http://singlesheaven.com http://perl.apache.org http://perlmonth.com/


Reply via email to