Tagged Questions
Strawberry Perl is an open source community driven distribution of the Perl programming language for the Microsoft Windows platform.
48
votes
10answers
19k views
Which version of Perl should I use on Windows?
The win32.perl.org web site provides references to several Perl distributions for MS Windows.
For a long time I have been using ActivePerl from
ActiveState but recently I switched to
Strawberry ...
23
votes
6answers
8k views
Should I choose ActivePerl or Strawberry Perl for Windows?
I'm totally new to Perl but I'd like to try it out. I read about two rival distributions available for Windows platform (I guess there's just Perl on other OSes :).
Wikipedia says that Strawberry ...
11
votes
3answers
2k views
How do I create drag-and-drop Strawberry Perl programs?
I've got a Strawberry Perl program that accepts a single-file as a command-line argument. How can I set things up such that I can drag and drop the desired file onto the Strawberry Perl program (or a ...
10
votes
4answers
12k views
How do I run programs with Strawberry Perl?
A coworker is trying to use ack (a Perl program) on his Windows machine, having tried it under Linux and decided he definitely wants to use it. He managed to get Strawberry Perl installed on his ...
9
votes
2answers
378 views
Omitting return statement in C++
I just had some weird behavior from a version of g++ for Windows that I got with Strawberry Perl. It allowed me to omit a return statement.
I have a member function that returns a structure ...
7
votes
3answers
551 views
What are the differences between Vanilla Perl and Strawberry Perl?
Strawberry Perl is "Open Source Perl for Windows that is exactly the same
as Perl everywhere else". Vanilla Perl "provides a Perl distribution that is as close to the Perl core as possible." ...
6
votes
2answers
219 views
All of a sudden, perl scripts don't work unless I prefix them with “perl” and give full path to the script
I've been using my own personal environment that's worked consistently for over 20 years. I started incorporating many perl scripts about 14 years ago.
I've been using the same tree of command-line ...
6
votes
3answers
373 views
What is the proper way to access BerkeleyDB with Perl?
I've been having some problems with using BerkeleyDB. I have multiple instances of the same code pointed to a single repository of DB files, and everything runs fine for 5-32 hours, then suddenly ...
6
votes
1answer
210 views
What part of Perl does not like NTFS Junctions?
I like the Vista style for pathing, so on a XP machine I've created NTFS junctions C:\Users -> C:\Documents and Settings and ~\Documents -> ~\My Documents, so that I only ever have to write one style ...
6
votes
6answers
2k views
How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?
I currently use Strawberry Perl as my primary Perl distribution. However, I have some applications that make Perl calls through cygwin. These generally fail because they are calling the version of ...
5
votes
2answers
132 views
How do I upgrade strawberry perl without wiping \perl\site\lib\ and \perl\site\bin\?
I downloaded the 5.12.3 installer to upgrade my 5.12.1 installation. After installing 5.12.3, my previously installed cpan modules are gone. Is this expected behavior? Should I be backing up my ...
5
votes
3answers
6k views
How to compile a perl script (.pl) to a windows executable (.exe) with Strawberry Perl
What would be the easiest way to compile a simple perl script to an executable under windows with Strawberry Perl (as I understand it's possible and free).
In the past I've used ActiveState compiler ...
5
votes
2answers
2k views
How to Install DBD::Oracle in Strawberry Perl
I am trying to install DBD::Oracle using the CPAN shell in Strawberry Perl. I initially experienced an error because the Makefile could not locate an OCI library, so I installed the instant client ...
5
votes
2answers
690 views
Can I embed Strawberry Perl in a VC++ 6.0 compiled application or use Inline::C with the compiler mismatch?
I am looking at embedding perl 5.10 in a large C++ application compiled with VC++ 6.0. This leads to two questions.
1) Is it a bad idea to simply use Strawberry Perl as a dependency rather than ...
4
votes
1answer
54 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
113 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 ...
4
votes
3answers
121 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 ...
4
votes
2answers
394 views
Sequenced steps to install Perl Strawberry, MySQL, and DBD::mysql on Windows XP
I'm looking for a good guide with sequenced and detailed steps for installing Perl Strawberry, MySQL, and DBD::mysql on Windows XP.
The main goal I want to accomplish here is to have the ability to ...
4
votes
4answers
526 views
Perl execution from command line question
I replaced ActivePerl with Strawberry Perl on my WinXP last week.
I found I must run my Perl script with the command of perl myperl.pl; otherwise I only need run myperl.pl before install Strawberry. ...
3
votes
2answers
118 views
Why is it discouraged to use PPM perl modules with Strawberry perl on Windows?
Can anyone shed light on why people would be making this comment? I've seen several threads on stackoverflow (like this one) where people say this. It seems to me that PPMs are nothing more than ...
3
votes
1answer
279 views
How to change @INC in Strawberry Perl?
How can I change @INC permanently, without changing my scripts, in Strawberry Perl?
I'm aware of -I, but don't want to invoke that switch every time.
3
votes
1answer
271 views
Installing Gtk2 on portable strawberry
I downloaded "strawberry-perl-5.12.2.0-portable" and "gtk+-bundle_2.22.1-20101227_win32". I extracted strawberry-perl in some directory and there I put gtk folder with gtk stuff.
In portableshell.bat ...
3
votes
2answers
238 views
Can a Perl script detect whether it's running under Activestate vs Strawberry Perl?
I have a Perl script I'm still trying to debug and in the process I've noticed that it behaves differently running under ActivePerl and Strawberry Perl.
This has led me to wonder how a Perl script ...
3
votes
3answers
508 views
How can I make Strawberry Perl's cpan(1) find perl?
I'm having trouble installing Template module with Strawberry Perl.
cpan Template
yields the following:
Writing Makefile for AppConfig
C:strawberryperlbinperl.exe: not found
dmake.EXE: Error ...
2
votes
0answers
79 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 ...
2
votes
2answers
203 views
installing modules using strawberry perl
Until now I used activestate perl ,and used the ppm for installing modules.
the last week i moved to strawberry perl but i don't know how should I install modules using the strawberry perl could ...
2
votes
1answer
241 views
Strawberry Perl - Net::Server test hangs during install
While installing Net::Server, the tests hang on 4/5, and the install blocks until I send a break signal. I've tried googling, but haven't been able to find anything relevant.
I'm using Strawberry ...
2
votes
1answer
147 views
How can I create a portable strawberry with extra bundled modules?
The portable strawberry perl is a godsend-- I can bundle it into an NSIS installer along with the actual scripts and have the user double click it. However, I'm still having to install CPAN modules ...
2
votes
1answer
108 views
Testing Strawberry Perl on the same server as ActivePerl
I'd like to try out Strawberry Perl 5.12 on a win2k3sp2 server that currently uses ActivePerl 5.10 and mod_perl2. I have a separate Apache service set up for development but remember seeing something ...
2
votes
2answers
661 views
What is dmake actually doing when installing a new module?
I just mangaged to install the perl/Tk module after much struggle. I realise I don't understand what dmake or make etc is actually doing.
I am using strawberry perl installed at C:\strawberry.
Fisrt ...
2
votes
1answer
396 views
How do I configure Strawberry Perl to run from something other than c:\strawberry?
I know that Strawberry Perl portable is out there for Perl 5.10.0, but so far, there is not one for Perl 5.10.1. As a result, I'm currently doing some experimental work in getting Strawberry Perl to ...
2
votes
2answers
907 views
How do I setup Strawberry Perl in MSYS?
I have Strawberry Perl and have msys Perl 5.6 removed. Now perl will invoke Strawberry (due to PATH env) but how do I map the perl command in .pl or other Perl script file which have #!/bin/perl or ...
1
vote
2answers
247 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 ...
1
vote
0answers
33 views
Embedded Scripting language as customization point for (Strawberry) Perl and C#
I am investigating the options of creating customization logic in a Client/Server application. I envision that the customer will be writing the logic in scripting language, stored in configuration ...
1
vote
2answers
1k views
How to install module? strawberry perl issues
I am trying to install a perl module withint strawberry perl on Windows 7.
I'm running the below command, and getting a slew of messages I don't understand. It looks like I am getting 500 errors, as ...
1
vote
2answers
101 views
Why do strings not match?
I have a Wordpad file from which I extract two strings and compare them. In this case they are both equal, but I cannot use the =~ expression to evaluate them.
if($pin_list =~ /$lvl_list/){ do ...
1
vote
1answer
439 views
How do I Install the signatures module on Strawberry Perl 5.10.1?
I seem to be having some issues trying to install the signatures module
from CPAN using Strawberry Perl 5.10.1 on Windows XP.
I get some "undefined reference" errors during linking.
I'm guessing that ...
1
vote
4answers
2k views
How to install GD library with Stawberry Perl
I am attempting to install the GD library using Strawberry perl and GnuWin32. However, when I enter "install GD" in the CPAN shell, the following message appears:
'gdlib-config' is not recognized as ...
1
vote
1answer
397 views
In Strawberry Perl, what is the difference between perl\lib and perl\site\lib?
In the Strawberry Perl distribution for Win32, what is the difference between perl\lib and perl\site\lib?
When CPAN modules are installed, are the files all stored in perl\site\lib by default?
Is ...
0
votes
2answers
36 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 ...
0
votes
1answer
139 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
35 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. ...
0
votes
0answers
28 views
My question is related to perl programming in windows Xp
I am using strawberry perl on windows xp plateform .I am a test engineer .Some time it is needed from me to extract relevent i nformation from a Txt file (like terraterm log) .So I am able to read the ...
0
votes
2answers
62 views
How to access a hash in the main namespace from inside a module
I have my main Perl script which contains
my $System = {
Path =>
{
root => 'hello'
}
}
print $System->{'Path'}->{'root'}; # prints 'hello'
How can I access the ...
0
votes
0answers
59 views
Nested Term::ReadLine interfaces on Windows
Developing on Linux, it was possible to nest Term::ReadLine interfaces. The second prompt in the following program would be indented, I think.
use Term::ReadLine;
my $term1 = Term::ReadLine->new( ...
0
votes
1answer
159 views
Missing “cpan>” prompt when running the CPAN shell in a Strawberry Perl environment under Cygwin
I've encountered a strange prompt problem when running the CPAN shell in a Strawberry Perl environment under Cygwin.
When launching the CPAN using perl -MCPAN -eshell I get the following output:
...
0
votes
2answers
102 views
site and site\lib directory locations for Perl on Windows
I am a PHP programmer and have just been assigned task to work on some Perls stuff - I need to install modules.
But can anybody clarify for me the difference between 'lib' and 'site\lib' when install ...
0
votes
0answers
129 views
Perl interpreter
I have an issue with I think either my OS (Vista) or my Perl interpreter. Some time ago, I had to reinstall win's but wasn't able to properly format and do a clean install having no OS disk (as it's ...
0
votes
1answer
254 views
What are all these executable file in the Strawberry Perl folders?
I have downloaded Strawberry-Perl-5.12.1.0 for Windows and was using it for many days. Today I have realized that there is some folder which has many executable files in it.
The folder structure is:
...
0
votes
3answers
167 views
Strange Apache2::Cookie error under Strawberry Perl and mod_perl2
I have a set of scripts that run under ActivePerl 5.10. However, under Strawberry Perl 5.10, I get a strange error message:
Can't locate object method "cookie_class" via package "MyCookie" (perhaps ...