diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-03-05 09:48:32 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-03-05 09:48:32 +0000 |
commit | e85534acf2e6ecf86b70f1bb2400c18af6280226 (patch) | |
tree | a52f83fd3306efc6867aed380bf7124034803528 | |
parent | faebae7b64813d2f9a34d0824b697bab8397d426 (diff) | |
download | irssi-e85534acf2e6ecf86b70f1bb2400c18af6280226.zip |
Merge README.cygwin in INSTALL.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4729 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | INSTALL | 19 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | README.cygwin | 12 |
3 files changed, 19 insertions, 13 deletions
@@ -101,3 +101,22 @@ command. It should print something like: Module Type Submodules ... perl static core fe + + + System specific notes + --------------------- + + Cygwin + +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/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 diff --git a/Makefile.am b/Makefile.am index 6e62fe15..7cd7e705 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,7 +25,6 @@ EXTRA_DIST = \ autogen.sh \ curses.m4 \ README \ - README.cygwin \ file2header.sh \ $(conf_DATA) \ $(theme_DATA) \ diff --git a/README.cygwin b/README.cygwin deleted file mode 100644 index 60409e5c..00000000 --- a/README.cygwin +++ /dev/null @@ -1,12 +0,0 @@ -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/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 |