Changes between Initial Version and Version 1 of Ticket #51516, comment 116


Ignore:
Timestamp:
Jun 2, 2024, 1:50:55 PM (5 weeks ago)
Author:
RJVB (René Bertin)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #51516, comment 116

    initial v1  
    7373
    7474No trace of the system libcurl (that would be `/usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0`) to be seen, so a priori Pextlib is using my dedicated copy here.
     75
     76Which means that `port` could do something like
     77
     78{{{
     79if {[file exists /path/to/libcurlglue.so]} {
     80    load /path/to/libcurlglue.so
     81}
     82package require Pextlib 1.0
     83}}}
     84
     85and we'd be done. Or more elegantly, this could be done in a Tcl wrapper/loader for the Pextlib package, if Tcl allows such things.