summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Beazley <dave-swig@dabeaz.com>2000-08-31 15:41:59 +0000
committerDave Beazley <dave-swig@dabeaz.com>2000-08-31 15:41:59 +0000
commit2824797649a099f4a43db9deacbc880116c046da (patch)
tree8dc65efadbfad50b8be4af0aae5ba6d1581067a4
parent4f2b31396807dc3fa87c77cace1574d9d008d497 (diff)
downloadswig-2824797649a099f4a43db9deacbc880116c046da.tar.gz
*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@754 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Examples/perl5/index.html19
-rw-r--r--Examples/perl5/variables/example.pl2
2 files changed, 20 insertions, 1 deletions
diff --git a/Examples/perl5/index.html b/Examples/perl5/index.html
index 8aa1f4b0e..5c69e06b5 100644
--- a/Examples/perl5/index.html
+++ b/Examples/perl5/index.html
@@ -62,6 +62,25 @@ The examples have been extensively tested on the following platforms:
</ul>
<p>
+The most recent version of Perl used for testing is as follows:
+
+<blockquote>
+<pre>
+% perl -version
+This is perl, v5.6.0 built for sun4-solaris
+
+Copyright 1987-2000, Larry Wall
+
+Perl may be copied only under the terms of either the Artistic License or the
+GNU General Public License, which may be found in the Perl 5.0 source kit.
+
+Complete documentation for Perl, including FAQ lists, should be found on
+this system using `man perl' or `perldoc perl'. If you have access to the
+Internet, point your browser at http://www.perl.com/, the Perl Home Page.
+</pre>
+</blockquote>
+
+<p>
Due to wide variations in the Perl C API and differences between versions such as the ActivePerl release for Windows,
the code generated by SWIG is extremely messy. We have made every attempt to maintain compatibility with
many Perl releases going as far back as 5.003 and as recent as 5.6. However, your mileage may vary.
diff --git a/Examples/perl5/variables/example.pl b/Examples/perl5/variables/example.pl
index e4f2e879f..b3a596ccb 100644
--- a/Examples/perl5/variables/example.pl
+++ b/Examples/perl5/variables/example.pl
@@ -23,7 +23,7 @@ $example::name = "Bill";
# Now print out the values of the variables
-print "Variables (values printed from Python)";
+print "Variables (values printed from Perl)\n";
print "ivar = $example::ivar\n";
print "svar = $example::svar\n";