summary refs log tree commit diff stats
path: root/plugins/perl/perl.c
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2011-07-28 00:32:29 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2011-07-28 00:32:29 +0200
commit96caff1fbdf201164339e5e94fde04d8cb7968e8 (patch)
tree67c8ee83828478bf4c89bcf55eaf8925823aae4b /plugins/perl/perl.c
parent1bf32a69bcd6544e3d5b5b572dff8241674623fb (diff)
instruct users to download strawberry perl instead of activeperl
Diffstat (limited to 'plugins/perl/perl.c')
-rw-r--r--plugins/perl/perl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c
index 761566f9..2f297769 100644
--- a/plugins/perl/perl.c
+++ b/plugins/perl/perl.c
@@ -1346,9 +1346,9 @@ perl_load_file (char *filename)
 				/* http://forum.xchat.org/viewtopic.php?t=3277 */
 				thread_mbox ("Cannot use this " PERL_DLL "\n\n"
 #ifdef _WIN64
-								 "64-bit ActivePerl is required.");
+								 "64-bit Strawberry Perl is required.");
 #else
-								 "32-bit ActivePerl is required.");
+								 "32-bit Strawberry Perl is required.");
 #endif
 			else {
 				/* a lot of people install this old version */
@@ -1357,14 +1357,14 @@ perl_load_file (char *filename)
 					FreeLibrary (lib);
 					lib = NULL;
 					thread_mbox ("Cannot open " PERL_DLL "\n\n"
-									 "You must have ActivePerl " PERL_REQUIRED_VERSION " installed in order to\n"
+									 "You must have Strawberry Perl " PERL_REQUIRED_VERSION " installed in order to\n"
 									 "run perl scripts.\n\n"
 									 "I have found Perl 5.6, but that is too old.");
 				} else {
 					thread_mbox ("Cannot open " PERL_DLL "\n\n"
-									 "You must have ActivePerl " PERL_REQUIRED_VERSION " installed in order to\n"
+									 "You must have Strawberry Perl " PERL_REQUIRED_VERSION " installed in order to\n"
 									 "run perl scripts.\n\n"
-									 "http://www.activestate.com/activeperl/downloads\n\n"
+									 "http://strawberryperl.com\n\n"
 									 "Make sure perl's bin directory is in your PATH.");
 				}
 			}