You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@perl.apache.org by Geoffrey Young <gy...@laserlink.net> on 2001/03/06 15:21:29 UTC

make tar_Apache

Hi all...

  is this a mistake in make tar_Apache?

Index: Makefile.PL
===================================================================
RCS file: /home/cvspublic/modperl/Makefile.PL,v
retrieving revision 1.178
diff -u -r1.178 Makefile.PL
--- Makefile.PL 2001/01/29 17:43:21     1.178
+++ Makefile.PL 2001/03/06 14:15:29
@@ -1385,7 +1385,7 @@
 
 tar_Apache:
        (cd $(INSTALLSITELIB)/$(ARCHNAME); \
-            $(TAR) -cf $(PWD)/Apache.tar mod_perl.pm Apache.pm Apache
$(ARCHNAME)/auto/Apache; )
+            $(TAR) -cf $(PWD)/Apache.tar mod_perl.pm Apache.pm Apache
auto/Apache; )
 
 offsite-tar:
        $(CP) MANIFEST MANIFEST.orig


when I issued make tar_Apache it failed with

(cd /src/bleedperl/lib/site_perl/5.7.0/i686-linux-thread-multi; \
     tar -cf /src/modperl/Apache.tar mod_perl.pm Apache.pm Apache
i686-linux-thread-multi/auto/Apache; )
tar: i686-linux-thread-multi/auto/Apache: Cannot stat: No such file or
directory
tar: Error exit delayed from previous errors
make: *** [tar_Apache] Error 2


here's my perl -V

Summary of my perl5 (revision 5.0 version 7 subversion 0) configuration:
  Platform:
    osname=linux, osvers=2.2.14-5.0, archname=i686-linux-thread-multi
    uname='linux spinnaker.laserlink.net 2.2.14-5.0 #1 tue mar 7 21:07:39
est 2000 i686 unknown '
    config_args='-des -Dusethreads -Dprefix=/src/bleedperl -Doptimize=-g
-Dusedevel'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=define use5005threads=undef useithreads=define
usemultiplicity=define
    useperlio=undef d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=undef use64bitall=undef uselongdouble=undef
  Compiler:
    cc='cc', ccflags ='-D_REENTRANT -DDEBUGGING -fno-strict-aliasing
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
    optimize='-g',
    cppflags='-D_REENTRANT -DDEBUGGING -fno-strict-aliasing'
    ccversion='', gccversion='egcs-2.91.66 19990314/Linux (egcs-1.1.2
release)', gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
    ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t',
lseeksize=8
    alignbytes=4, usemymalloc=n, prototype=define
  Linker and Libraries:
    ld='cc', ldflags =' -L/usr/local/lib'
    libpth=/usr/local/lib /lib /usr/lib
    libs=-lnsl -lndbm -lgdbm -ldb -ldl -lm -lpthread -lc -lposix -lcrypt
-lutil
    perllibs=-lnsl -ldl -lm -lpthread -lc -lposix -lcrypt -lutil
    libc=/lib/libc-2.1.3.so, so=so, useshrplib=false, libperl=libperl.a
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-rdynamic'
    cccdlflags='-fpic', lddlflags='-shared -L/usr/local/lib'


Characteristics of this binary (from libperl): 
  Compile-time options: DEBUGGING MULTIPLICITY USE_ITHREADS USE_LARGE_FILES
PERL_IMPLICIT_CONTEXT
  Locally applied patches:
        DEVEL9021
  Built under linux
  Compiled at Mar  5 2001 22:00:21
  @INC:
    /src/bleedperl/lib/5.7.0/i686-linux-thread-multi
    /src/bleedperl/lib/5.7.0
    /src/bleedperl/lib/site_perl/5.7.0/i686-linux-thread-multi
    /src/bleedperl/lib/site_perl/5.7.0
    /src/bleedperl/lib/site_perl
    .

--Geoff

Re: make tar_Apache

Posted by Doug MacEachern <do...@covalent.net>.
On Tue, 6 Mar 2001, Geoffrey Young wrote:

> Hi all...
> 
>   is this a mistake in make tar_Apache?

perl archlib stuff has changed a few times over the years, i see no
reason to support anything less than 5.6.0 for make tar_Apache
patch applied, thanks.
 
> Index: Makefile.PL
> ===================================================================
> RCS file: /home/cvspublic/modperl/Makefile.PL,v
> retrieving revision 1.178
> diff -u -r1.178 Makefile.PL
> --- Makefile.PL 2001/01/29 17:43:21     1.178
> +++ Makefile.PL 2001/03/06 14:15:29
> @@ -1385,7 +1385,7 @@
>  
>  tar_Apache:
>         (cd $(INSTALLSITELIB)/$(ARCHNAME); \
> -            $(TAR) -cf $(PWD)/Apache.tar mod_perl.pm Apache.pm Apache
> $(ARCHNAME)/auto/Apache; )
> +            $(TAR) -cf $(PWD)/Apache.tar mod_perl.pm Apache.pm Apache
> auto/Apache; )
>  
>  offsite-tar:
>         $(CP) MANIFEST MANIFEST.orig
> 
> 
> when I issued make tar_Apache it failed with
> 
> (cd /src/bleedperl/lib/site_perl/5.7.0/i686-linux-thread-multi; \
>      tar -cf /src/modperl/Apache.tar mod_perl.pm Apache.pm Apache
> i686-linux-thread-multi/auto/Apache; )
> tar: i686-linux-thread-multi/auto/Apache: Cannot stat: No such file or
> directory
> tar: Error exit delayed from previous errors
> make: *** [tar_Apache] Error 2
> 
> 
> here's my perl -V
> 
> Summary of my perl5 (revision 5.0 version 7 subversion 0) configuration:
>   Platform:
>     osname=linux, osvers=2.2.14-5.0, archname=i686-linux-thread-multi
>     uname='linux spinnaker.laserlink.net 2.2.14-5.0 #1 tue mar 7 21:07:39
> est 2000 i686 unknown '
>     config_args='-des -Dusethreads -Dprefix=/src/bleedperl -Doptimize=-g
> -Dusedevel'
>     hint=recommended, useposix=true, d_sigaction=define
>     usethreads=define use5005threads=undef useithreads=define
> usemultiplicity=define
>     useperlio=undef d_sfio=undef uselargefiles=define usesocks=undef
>     use64bitint=undef use64bitall=undef uselongdouble=undef
>   Compiler:
>     cc='cc', ccflags ='-D_REENTRANT -DDEBUGGING -fno-strict-aliasing
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
>     optimize='-g',
>     cppflags='-D_REENTRANT -DDEBUGGING -fno-strict-aliasing'
>     ccversion='', gccversion='egcs-2.91.66 19990314/Linux (egcs-1.1.2
> release)', gccosandvers=''
>     intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
>     d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
>     ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t',
> lseeksize=8
>     alignbytes=4, usemymalloc=n, prototype=define
>   Linker and Libraries:
>     ld='cc', ldflags =' -L/usr/local/lib'
>     libpth=/usr/local/lib /lib /usr/lib
>     libs=-lnsl -lndbm -lgdbm -ldb -ldl -lm -lpthread -lc -lposix -lcrypt
> -lutil
>     perllibs=-lnsl -ldl -lm -lpthread -lc -lposix -lcrypt -lutil
>     libc=/lib/libc-2.1.3.so, so=so, useshrplib=false, libperl=libperl.a
>   Dynamic Linking:
>     dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-rdynamic'
>     cccdlflags='-fpic', lddlflags='-shared -L/usr/local/lib'
> 
> 
> Characteristics of this binary (from libperl): 
>   Compile-time options: DEBUGGING MULTIPLICITY USE_ITHREADS USE_LARGE_FILES
> PERL_IMPLICIT_CONTEXT
>   Locally applied patches:
>         DEVEL9021
>   Built under linux
>   Compiled at Mar  5 2001 22:00:21
>   @INC:
>     /src/bleedperl/lib/5.7.0/i686-linux-thread-multi
>     /src/bleedperl/lib/5.7.0
>     /src/bleedperl/lib/site_perl/5.7.0/i686-linux-thread-multi
>     /src/bleedperl/lib/site_perl/5.7.0
>     /src/bleedperl/lib/site_perl
>     .
> 
> --Geoff
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
> For additional commands, e-mail: dev-help@perl.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org