diff options
author | Timo Sirainen <cras@irssi.org> | 2001-12-03 16:04:10 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-12-03 16:04:10 +0000 |
commit | bad59362d3728be611ee7f9e3627ec1b4ddb8f6c (patch) | |
tree | a30c569b01a78129f738f2e64998b6319fb348a1 | |
parent | cb0c661069a3d6cb3a98c5782c9e503c282b7ace (diff) | |
download | irssi-bad59362d3728be611ee7f9e3627ec1b4ddb8f6c.zip |
Added some cygwin help.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2181 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | README.cygwin | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/README.cygwin b/README.cygwin new file mode 100644 index 00000000..3b5af30a --- /dev/null +++ b/README.cygwin @@ -0,0 +1,12 @@ +Getting perl scripting to work needs a few things: + + - configure with --with-perl-staticlib + + - libperl.dll is required in linking and running irssi, it's normally + located somewhere around /usr/lib/perl5/5.6.1/cygwin/CORE/libperl5_6_1.dll + copy it to eg. /usr/local/bin/libperl.dll + + - -DUSEIMPORTLIB is needed to be defined while compiling src/perl directory. + It doesn't hurt to be defined everywhere, so configure irssi with: + + CFLAGS='-DUSEIMPORTLIB' ./configure --with-perl-staticlib |