mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
bad59362d3
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2181 dbcabf3a-b0e7-0310-adc4-f8d773084564
13 lines
500 B
Plaintext
13 lines
500 B
Plaintext
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
|