can't install Time::HiRes

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default can't install Time::HiRes

    hi there,

    When I try to install Time::HiRes-1.52 using Perl 5.8.0 under Linux I get
    this warning with (perl Makefile.pl):
    NOTE: if you get an error like this (the line number may vary):
    Makefile:91: *** missing separator
    then set the environment variable LC_ALL to "C" and retry.

    Which environment variable is meant, %ENV from Perl or the Shell?
    Setting 'LC_ALL=C' on the console, did not work.

    When I try to 'make test', I get this error message:
    Makefile:91: *** missing separator stop

    In the file of the distrubtion of Time::HiRes 'Changes' is a note, that
    since version 1.50 the message above will appear.
    - add a message (for non-core builds) to Makefile.PL about the LC_ALL=C
    workaround
    What is a 'non-core-build'??

    Thanks for your help!

    greets Steffen


    S. Zeidler Guest

  2. Similar Questions and Discussions

    1. Contribute3.msi trying to install every time I rightclick
      The installer keeps trying to install this file, and says it can't be found. Browsing doesn't work either. It just started happening and it's very...
    2. dupe times in Time::HiRes
      Monks, mongers and perlites, I have been attempting to use it to provide 20 digit time date stamp which includes 6 digits for microseconds. In...
    3. large inaccuracies in Time::HiRes on Opteron
      Hi All, I'm using the Time::HiRes module on a dual opteron running: kernel 2.6.8.1-4-amd64-k8-smp #1 SMP Fri Jan 14 11:33:56 UTC 2005 x86_64...
    4. error: no suitable installation target found for package Time-HiRes
      Hello, I'm trying to install the Time-HiRes module on winXP, perl 5.6.1 (activestate). Using ppm3. Whether I try to install via the module...
    5. creating link to install qucik time
      Hi I have created a director presentation which has a qucik time video, this pres will be placed on CD and be used by many users, Is there a way for...
  3. #2

    Default Re: can't install Time::HiRes

    S. Zeidler wrote in comp.lang.perl.modules :
    >
    > Which environment variable is meant, %ENV from Perl or the Shell?
    > Setting 'LC_ALL=C' on the console, did not work.
    Hmm. You should export it to make it visible from child processes.
    For sh, bash, ksh :

    $ LC_ALL=C
    $ export LC_ALL
    > In the file of the distrubtion of Time::HiRes 'Changes' is a note, that
    > since version 1.50 the message above will appear.
    > - add a message (for non-core builds) to Makefile.PL about the LC_ALL=C
    > workaround
    > What is a 'non-core-build'??
    Time::HiRes comes with perl 5.8.x. Building it along perl is known as a
    "core build" (see the perlhack manpage for the relevant jargon.)
    Rafael Garcia-Suarez Guest

  4. #3

    Default Re: can't install Time::HiRes

    Thank you for answer.

    greets Steffen


    S. Zeidler Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139