summary refs log tree commit diff stats
path: root/plugins/perl/perl.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-11-12 02:24:19 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-11-12 02:24:19 +0100
commit40d4c592b353d348b043134d942a9b00ad61d0b9 (patch)
tree4fa1e3b2e6e5edd61733be1456a9679093face5c /plugins/perl/perl.c
parentc0dca425a5dd6c7233dc30c59dbfd661f882f8ff (diff)
Update Perl error message according to recent changes
Diffstat (limited to 'plugins/perl/perl.c')
-rw-r--r--plugins/perl/perl.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c
index 321f8d48..8d5dce4e 100644
--- a/plugins/perl/perl.c
+++ b/plugins/perl/perl.c
@@ -1420,20 +1420,19 @@ perl_load_file (char *filename)
 				if (lib) {
 					FreeLibrary (lib);
 					lib = NULL;
-					thread_mbox ("Cannot open " PERL_DLL "\n\n"
-									 "You must have either ActivePerl or Straberry Perl"
-									 PERL_REQUIRED_VERSION
-									 " installed in order to\n"
-									 "run perl scripts.\n\n"
+					thread_mbox ("Cannot open " PERL_DLL "!\n\n"
+									 "You must have a Visual C++ build of Perl "
+									 PERL_REQUIRED_VERSION " installed in order to\n"
+									 "run Perl scripts.\n\n"
+									 "https://github.com/hexchat/hexchat/downloads\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 either ActivePerl or Strawberry Perl "
+					thread_mbox ("Cannot open " PERL_DLL "!\n\n"
+									 "You must have a Visual C++ build of Perl "
 									 PERL_REQUIRED_VERSION " installed in order to\n"
-									 "run perl scripts.\n\n"
-									 "http://www.activestate.com/ActivePerl/\n"
-									 "http://strawberryperl.com/\n"
-									 "Make sure perl's bin directory is in your PATH.");
+									 "run Perl scripts.\n\n"
+									 "https://github.com/hexchat/hexchat/downloads\n\n"
+									 "Make sure Perl's bin directory is in your PATH.");
 				}
 			}
 			/* failure */