Changes between Initial Version and Version 1 of Ticket #18992


Ignore:
Timestamp:
Mar 27, 2009, 12:34:42 AM (15 years ago)
Author:
blb@…
Comment:

Hmm, so irssi won't load them unless they are named with .so? On the Mac either dylibs or so's can be dlopen()ed so obviously the symlink will work, but maybe we could update irssi to open either file type?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18992

    • Property Cc blb@… added
  • Ticket #18992 – Description

    initial v1  
    11silc-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{{{
    33                        --disable-asm \
    44+                        --with-silc-plugin=${prefix}/lib/irssi \
    55+                        --without-silc-includes
    6 
     6}}}
    77Ideally this would be a varient and have a dependancy on irssi.
    88
    99I then needed to bodge the files in /opt/local/lib/irssi/modules to make the module loading work
    10 
     10{{{
    1111 sudo ln -s libsilc_core.dylib libsilc_core.so
    1212 sudo ln -s libfe_common_silc.dylib libfe_common_slic.so
    13 
     13}}}
    1414I'm sure all of this could be done better, but the functionality is very useful.