Changes between Initial Version and Version 3 of Ticket #53619


Ignore:
Timestamp:
Feb 21, 2017, 4:57:02 PM (8 years ago)
Author:
michaelld (Michael Dickens)
Comment:

Qsci has moved all platforms to this new library naming scheme; there should not be a link to a library name without the "_qt#" version. This issue is not with Qsci, but rather with ports that use it that need to be updated to correctly determine the library name instead of assuming. I've fixed this port to work. Thanks for pointing out the issue.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #53619

    • Property Status changed from new to closed
    • Property Owner set to michaelld
    • Property Resolution changed from to fixed
    • Property Summary changed from qscintilla@ 2.10: missing a library link to sqliteman fails to build due to not finding qscintilla
  • Ticket #53619 – Description

    initial v3  
    1 The recent upgrade of qscintilla to version 2.10 is missing a library link that causes the (re)build of sqliteman @1.2.2_4 to fail. The contents of the qscintilla port contains:
    2 
    3 {{{
    4 /opt/local/libexec/qt4/lib/libqscintilla2_qt4.13.0.0.dylib
    5 /opt/local/libexec/qt4/lib/libqscintilla2_qt4.13.0.dylib
    6 /opt/local/libexec/qt4/lib/libqscintilla2_qt4.13.dylib
    7 /opt/local/libexec/qt4/lib/libqscintilla2_qt4.dylib
    8 }}}
    9 
    10 What is missing is:
    11 
    12 
    13 {{{
    14 /opt/local/libexec/qt4/lib/libqscintilla2.dylib
    15 }}}
    16 
    17 which is a link to:
    18 
    19 {{{
    20 /opt/local/libexec/qt4/lib/libqscintilla2_qt4.13.0.0.dylib
    21 }}}
    22 
    23 -Joseph
     1sqliteman @1.2.2_4 fails to build due to the recent upgrade of qscintilla to version 2.10, which renames libraries to be libqscintilla2_qt4; was without the "_qt4" before.