Make and ActivePerl

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Skybuck Flying

    Make and ActivePerl

    Hi,

    I download some perl source code and the manual says:

    perl Makefile.PL
    make
    make install

    The first line went ok.

    When I invoke the second line it says:

    MAKE Version 5.2 Copyright (c) 1987, 2000 Borland

    I think it is calling the wrong product/version of "make".

    So I have a couple of questions:

    1. Does ActivePerl 5.8.4.810.MSWin 32-x86.MSI contain a "make" program ?

    2. If not what do I need maybe cygwin ?

    3. How do I call the right make product/version ?

    ( I am using windows xp )

    Any help would be great

    Bye,
    Skybuck.


  • ladygrinningsoul

    #2
    Re: Make and ActivePerl


    "Skybuck Flying" <nospam@hotmail .com> wrote in message
    news:cp4cos$jfl $1@news1.zwoll1 .ov.home.nl...[color=blue]
    > Hi,
    >
    > I download some perl source code and the manual says:
    >
    > perl Makefile.PL
    > make
    > make install
    >
    > The first line went ok.
    >
    > When I invoke the second line it says:
    >
    > MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
    >
    > I think it is calling the wrong product/version of "make".
    >
    > So I have a couple of questions:
    >
    > 1. Does ActivePerl 5.8.4.810.MSWin 32-x86.MSI contain a "make" program ?
    >
    > 2. If not what do I need maybe cygwin ?
    >
    > 3. How do I call the right make product/version ?
    >
    > ( I am using windows xp )
    >
    > Any help would be great
    >
    > Bye,
    > Skybuck.
    >
    >[/color]

    If it is a Perl module/package that you are trying to install, you should
    use the Perl Package Manager in ActivePerl to download and install the
    module/package.


    Comment

    • Skybuck Flying

      #3
      Re: Make and ActivePerl


      "ladygrinningso ul" <ladygrinningso ul@stationfour. mars> wrote in message
      news:DYOtd.3830 1$l%5.1384654@n ews20.bellgloba l.com...[color=blue]
      >
      > "Skybuck Flying" <nospam@hotmail .com> wrote in message
      > news:cp4cos$jfl $1@news1.zwoll1 .ov.home.nl...[color=green]
      > > Hi,
      > >
      > > I download some perl source code and the manual says:
      > >
      > > perl Makefile.PL
      > > make
      > > make install
      > >
      > > The first line went ok.
      > >
      > > When I invoke the second line it says:
      > >
      > > MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
      > >
      > > I think it is calling the wrong product/version of "make".
      > >
      > > So I have a couple of questions:
      > >
      > > 1. Does ActivePerl 5.8.4.810.MSWin 32-x86.MSI contain a "make" program ?
      > >
      > > 2. If not what do I need maybe cygwin ?
      > >
      > > 3. How do I call the right make product/version ?
      > >
      > > ( I am using windows xp )
      > >
      > > Any help would be great
      > >
      > > Bye,
      > > Skybuck.
      > >
      > >[/color]
      >
      > If it is a Perl module/package that you are trying to install, you should
      > use the Perl Package Manager in ActivePerl to download and install the
      > module/package.[/color]

      Well I don't know about all this ;)

      The main source was missing this "module"

      So I solved it by copieing the source of the module into the main source ;)

      That'll do for now ;)

      Bye,
      Skybuck.


      Comment

      • jbl

        #4
        Re: Make and ActivePerl

        On Tue, 7 Dec 2004 15:09:33 +0100, "Skybuck Flying"
        <nospam@hotmail .com> wrote:
        [color=blue]
        >Hi,
        >
        >I download some perl source code and the manual says:
        >
        > perl Makefile.PL
        > make
        > make install
        >
        >The first line went ok.
        >
        >When I invoke the second line it says:
        >
        >MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
        >
        >I think it is calling the wrong product/version of "make".
        >
        >So I have a couple of questions:
        >
        >1. Does ActivePerl 5.8.4.810.MSWin 32-x86.MSI contain a "make" program ?
        >
        >2. If not what do I need maybe cygwin ?
        >
        >3. How do I call the right make product/version ?
        >
        >( I am using windows xp )
        >
        >Any help would be great
        >
        >Bye,
        > Skybuck.
        >[/color]
        Get nmake from Microsoft


        Once you have the nmake15.exe, executing it will create 3 files on
        your machine (nmake.exe, nmake.err, & a readme). Now you have a way to
        install modules on you pc.

        Example:

        To install the Crypt::SSLeay mod, download the tar.gz
        Since 1997 Perl.com has published articles about the Perl programming language, its culture and community.

        ..gz and extract the files to a temp directory. Then from the command
        line, move into the temp directory and type the following commands:

        perl Makefile.PL
        c:\nmake\nmake. exe
        c:\nmake\nmake. exe test
        c:\nmake\nmake. exe install
        c:\nmake\nmake. exe clean

        This assumes that you nmake exe is in c:\nmake\, if not change it to
        match your system config.

        jbl

        Comment

        Working...