Strawberry Perl is an open source community driven distribution of the Perl programming language for the Microsoft Windows platform.
0
votes
0answers
5 views
Installing XML::Tidy in Strawberry Perl
When trying to install XML::Tidy in Strawberry Perl
C:\>perl --version
This is perl 5, version 16, subversion 3 (v5.16.3) built for MSWin32-x86-multi-thread
Copyright 1987-2012, Larry Wall
...
1
vote
0answers
44 views
Connecting to Oracle from Strawberry Perl
I installed DBD::Oracle from CPAN and tried to use the code below to connect to Oracle DB:
use DBI;
use DBD::Oracle;
BEGIN {
$ENV{ORACLE_HOME} ='C:\instantclient_11_2';
...
0
votes
0answers
35 views
How to set PATH from cygwin so perl can use it
In a situation where cygwin and a non-cygwin perl installation coexist, I am having touble setting the PATH from cygwin, so perl is happy with it.
The trouble is that perl seems to expect DOS-style ...
0
votes
0answers
44 views
Trying to get Strawberry Perl to run on IIS 7.5
If this is not the correct form for this question please direct me to a more useful form
I am new to using perl on a web server. I am trying to get Strawberry Perl to work on
the windows IIS 7.5 ...
2
votes
1answer
59 views
perl beginner on windows - problems executing perl -n -e in windows command prompt
I use W7 64bit and I just installed strawberry perl. I need to execute a simple script from windows command line for manipulation of text files:
perl -ne 'chomp; print "$_ O O O O\n"' test.txt > ...
1
vote
3answers
98 views
Having trouble locating memory leak in Perl
I'm experiencing a memory leak (I think) in this snippet of code:
if (ref($init{'time-layout'}) eq 'HASH') {
my %time= % {$init{'time-layout'}};
my @times= @ {$time{'start-valid-time'}};
...
2
votes
1answer
99 views
How to pass an open TCP socket from Perl to Windows application as stdin and stdout
I'm trying to pass an open TCP socket connection from a Perl program as the stdin and stdout to an external application on Windows, similar to what inetd in the Unix world does.
What I have tried:
...
0
votes
0answers
63 views
adding new programs to the Strawberry Perl MinGW distribution
I'm trying to compile libUnihan on my computer. I have Strawberry Perl installed, and it contains MinGW. I've had trouble in the past having a separate version of MinGW on my machine (it caused module ...
0
votes
2answers
138 views
Installing modules with Strawberry Perl 5.16.2.2 (64bit)
I used to use activestate perl, but moved to strawberry perl just now because I want to install those less common used packages. However I'm having problems installing modules with Strawberry Perl ...
10
votes
3answers
355 views
ZMQ::LibZMQ3 and strawberry perl
I am trying to install ZMQ::LibZMQ3 on strawberry perl but get the below error message while installing this module also my zmq libs and includes are found under C:\Program Files\ZeroMQ 3.2.2 :
...
1
vote
3answers
130 views
How do I compile a Perl module on Windows with Strawberry?
This is more an open discussion and a conclusion than a real question, hoping it can help someone sometime.
I was looking on how to make Perl module on an Internet disconnected server (otherwise the ...
2
votes
3answers
261 views
Compile perl script (including modules) using PAR::Packer
I know it's ugly, but i need to compile a perl script on windows for a client, so basically i am trying to make an .exe out of my .pl script.
I am using PAR::Packer installed via cpan, and i compiled ...
0
votes
0answers
35 views
How can I prevent console blocking when reading STDIN within event watcher on Win32?
I've started to learn event-driven perl. I use XP box + strawberry perl and EV module as a background for AnyEvent.
I'm hardly conversant with windows niceties and my question is probably rather ...
0
votes
2answers
640 views
Issue installing PAR::Packer with strawberry perl
I'm struggling for two days now to get the PAR::Packer module installed. I'm new to CPAN, and this is the first module I want to install, so I first thought it is me. But I reinstalled strawberry Perl ...
2
votes
0answers
143 views
Test failure in dmake test with module PerlMagick(Image::Magick)
I was first having problem passing past Makefile.pl installing the perlMagick module(otherwise known as Image::Magick).
It said I didn't had the required binaries installed, but a person here in SO ...
1
vote
0answers
73 views
Ld.exe has stopped working on install with Perl Strawberry
Trying to install a module(Devel::Declare) on a Strawberry setup I got an error window telling me "ld.exe has stopped working".
Here's the command I ran on the CMD:
cpan Devel::Declare
You can ...
0
votes
2answers
276 views
Computing system memory in use in Perl
I followed the top answer here, see below for code to get system memory being used at a given line in my perl code. I'm running Windows 7 Home Basic, 64 bit, 4 GB ram, 4.06 GB Virtual memory (As ...
2
votes
1answer
95 views
Why doesn't Strawberry Perl call my DllMain?
I'm trying to port Win32::Setupsup, a rather crusty old C++-based module intended to work with Visual C++, to Strawberry Perl and the MinGW GCC that it uses. I've pretty much got it working except ...
1
vote
1answer
480 views
Installing Padre (IDE) on ActivePerl?
When I go to Padre's official download site: http://padre.perlide.org/download.html, I see that the only option in Windows is to download DWIM Perl 5.14.2.1 (v7) which comes with Strawberry Perl. What ...
0
votes
1answer
322 views
Consuming a .NET Web Service in Perl with NTLM Authentication
I am attempting to call a .NET SOAP web service from a Perl script, as follows.
#!/usr/bin/perl -w
use strict;
use SOAP::Lite 'trace', 'debug';
use Authen::NTLM;
use Data::Dumper;
my $user = ...
1
vote
1answer
181 views
Installing Bio::Restriction::Analysis in Strawberry Perl
I am attempting to install the module Bio::Restriction::Analysis in Strawberry Perl (v5.16.1.1 32 bit) using CPAN. However, it looks like it won't pass a few tests. Portions of CPAN's output are ...
0
votes
0answers
22 views
translate pipe open
i need to use, and compile, this great script (http://pastebin.com/f78dbc4bc) that can get more from jpegtran in losslessly compress jpeg images.
Now, i'm not expert with Perl and i really need some ...
1
vote
1answer
412 views
Perl Dancer Session Cookies
I am just starting out with Dancer::Session::Cookie, and I have run into some behavior that I am not expecting. I put together a simple Perl Dancer app to authenticate using ...
0
votes
1answer
110 views
What exactly is going on in Proc::Background?
I am trying to write a script that automates other perl scripts. Essentially, I have a few scripts that rollup data for me and need to be run weekly. I also have a couple that need to be run on the ...
0
votes
1answer
421 views
Perl+Excel: “use Win32::OLE::Const” not having an effect
I have been working on a project on a Windows 7 system, using StrawberryPerl v 5.014 and Win32::OLE.
I am trying to use a second PC running Windows XP SP3, to have the same project developed in ...
5
votes
2answers
272 views
Do I need the Perl bin directory in the PATH to run perl programs (on Windows)?
Traditionally, I would just have C:\perl\bin in my PATH variable, but due to version conflicts I would like to keep different perl versions at locations C:\Perl-versionXY\bin and just execute my Perl ...
1
vote
1answer
910 views
What do I do about the error “Not a HASH reference”?
I am trying to execute user created Perl script,
usage: my.pl <type> <stats> [-map <map>] <session1> [session2]
Produces statistics about the session from a Wireshark .pcap ...
1
vote
1answer
131 views
path to temp directory in cpan
I'm trying to install Tk module for perl in windows with cpan.
Problem is:
Checking if you have Test::More 0 ... Yes (0.98)
Checking if you have Encode 0 ... Yes (2.44)
Building Tk-804.03 ... ...
2
votes
1answer
482 views
How do I install Net::Pcap for Strawberry Perl in Windows 7?
I try to install Net::Pcap in Windows, but it gives the following error messages:
c:\P P> cpan
cpan> install Net::Pcap
socket.h patched... ok
looking for -lwpcap... yes
checking for ...
0
votes
0answers
107 views
Strawberry Perl CPAN path escaping issue
I am getting the same error as How can I make strawberry perl's cpan find perl on a fresh install of strawberry perl 5.14.2 despite having forward slashes in my windows PATH variables, nothing in ...
5
votes
2answers
426 views
installing wxPerl on strawberry
I am trying to install wxperl on strawberry. I can't install Alien::wxWidgets. I tried everything I can think of. Usually I get an error like this one:
Creating library file: ...
5
votes
1answer
209 views
Using Perl, is there a difference between Win32API::File::MoveFile and CORE::rename on MSWin32?
I see that Win32API::File supports MoveFile(). However, I'm not sure how CORE::rename() is implemented in such a fashion that it should matter. Could someone juxtapose the difference -- specifically ...
0
votes
2answers
216 views
Perl and Lucene…on Windows?
I know documentation is lacking for this mysterious module, but Im running Strawberry Perl and would be happy just with being able to install it. I typically run something like the following from the ...
0
votes
0answers
504 views
Perl on Eclipse/EPIC: “unable to load class org.epic.debug.Launch”
I am running EPIC Perl debugging plugin on Eclipse. I am finding this debugging environment
highly powerful and work-friendly.
I am running DWIM Perl on Windows 7, Strawberry Perl 5.14.2.1, Eclipse ...
2
votes
1answer
857 views
Strawberry perl, Can't locate App/Cpan.pm
I installed the 32 bit version of Strawberry perl(5.14.2.1). I am able to run the perl command. When ever I run the cpan command I get the following error:
Can't locate App/Cpan.pm in @INC (@INC ...
1
vote
0answers
107 views
How do I install perl's Text::Markdown::Discount on Strawberry Perl?
When ever I try to cpanp install Text::Markdown::Discount on Strawberry Perl I get
cp lib/Text/Markdown/Discount.pm blib\lib\Text\Markdown\Discount.pm
( cd discount-2.1.2; CC='cc -fPIC' sh ...
1
vote
3answers
300 views
Can't install Carp-1.25
I have installed Strawberry Perl for Windows, "DWIM Perl" from: http://dwimperl.com/.
I would like to use Carp. So I have downloaded Carp-1.25 from CPAN, un-TAR-ed it, and ran nmake.
I get:
...
0
votes
1answer
203 views
Deliberately eating certain amount of memory using perl script
I need to simulate a process that eats certain amount of memory. The goal is simply to mimic a memory-hungry process.
For example, I have 4.0 GiB on my Windows 7 amd64 box, and I need a process that ...
6
votes
4answers
816 views
May I use Strawberry Perl and ActiveState Perl simultaneously in one computer?
I'm not new to Perl, but this problem kind of confuses me.
I used to delete my ActiveState Perl once, and all the installed modules are lost. So now I am very careful with this kind of issue. Due to ...
1
vote
1answer
84 views
Perl Packer not operating as expected
I've recently installed the Perl Packer module to compile my perl scripts into exe packages. I'm running strawberry perl setup on a windows 32-bit machine. When I attempt to run the pp -o command, I ...
0
votes
2answers
210 views
Why won't Strawberry Perl remove these form feed characters?
I'm currently running Strawberry Perl on WinXP, and I'm trying to process a unix-formatted flat file. The flat file uses line feed characters to delimit fields, and form feed characters to delimit a ...
4
votes
1answer
830 views
Using Integrated Windows Authentication in a Perl Dancer App
I am currently building a web app with Perl Dancer. This app requires users to authenticate using my company's Active Directory. To avoid prompting users for their usernames and passwords, I would ...
4
votes
1answer
233 views
How to read a file with long file name with unicode in Strawberry perl not using Win32::Unicode::File?
I have a file located in a directory, with danish characters in it, on a Windows XP machine. I use Strawberry perl and would like to read this file. The following code works fine:
use ...
4
votes
2answers
278 views
“Out of memory” with simple Win32::Unicode::File readline loop and Strawberry Perl
The issue I have can be found by running the following code in Strawberry perl 5.12.3.0 on Windows XP.
#!/usr/bin/perl -w
use strict;
use warnings;
use Win32::Unicode::File;
use ...
-2
votes
1answer
414 views
perl.exe has stopped working [closed]
I got a popup window when i'm running one script, it says: A probelm caused the program to stop working correctly. Please close the program.
I can run other scripts well, and I use use warnings; use ...
0
votes
2answers
80 views
VC++ linker issue
I am using strawberry perl and GDI+ in a project. Everything is getting compiled properly and I am able to run perl scripts in the Debug mode. But when I am building a release version of my project ...
4
votes
3answers
745 views
strawberry perl: no File::Tail.pm. CPAN failed to install the module
I'm using strawberry perl to tail a file using use File::Tail.
I got the error message of the following:
Can't locate File/Tail.pm in @INC (@INC contains: c:\strawberry\perl\lib ...
1
vote
2answers
1k views
WWW::Mechanize and strawberry perl
When I try to install WWW::Mechanize distribution from CPAN with strawberry perl ( v5.10.1) on
windows 7 I get the below failure ?
cpan> install JESSE/WWW-Mechanize-1.70.tar.gz
Running make for ...
0
votes
1answer
303 views
what does this error mean - installing perl module with cpan
I tried to install HTML::TreeBuilderX::ASP_NET with cpan on Windows 7.
I have strawberry perl setup.
Everything went smoothly until the end when I got the following. Is this something I should worry ...
0
votes
1answer
105 views
perl error after activestate uninstall cygssp-o.dll
After uninstalling ActiveState I've been getting this weird error when trying to execute "perl" from the command prompt.
The program can't start because cygssp-o.dll is missing from your computer. ...