Changes between Initial Version and Version 1 of Ticket #18992
- Timestamp:
- Mar 27, 2009, 12:34:42 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18992
- Property Cc blb@… added
-
Ticket #18992 – Description
initial v1 1 1 silc-client can be complied as a plugin for irssi. To enable this I altered the port file to add to the configure options: 2 2 {{{ 3 3 --disable-asm \ 4 4 + --with-silc-plugin=${prefix}/lib/irssi \ 5 5 + --without-silc-includes 6 6 }}} 7 7 Ideally this would be a varient and have a dependancy on irssi. 8 8 9 9 I then needed to bodge the files in /opt/local/lib/irssi/modules to make the module loading work 10 10 {{{ 11 11 sudo ln -s libsilc_core.dylib libsilc_core.so 12 12 sudo ln -s libfe_common_silc.dylib libfe_common_slic.so 13 13 }}} 14 14 I'm sure all of this could be done better, but the functionality is very useful.