Changes between Initial Version and Version 1 of Ticket #20462


Ignore:
Timestamp:
Jul 28, 2009, 4:11:17 PM (15 years ago)
Author:
mf2k (Frank Schima)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20462

    • Property Owner changed from macports-tickets@… to ryandesign@…
    • Property Port giflib added
  • Ticket #20462 – Description

    initial v1  
    11When building the giflib port with the variant no_x11 using:
     2{{{
    23> port install giflib +no_x11
     4}}}
    35
    46the result differs from that one, I'd expect. Looking at the dependencies of the compiled giflib, I get:
     7{{{
    58> otool -L /opt/local/lib/libgif.4.1.6.dylib
    69/opt/local/lib/libgif.4.1.6.dylib:
     
    1114        /usr/lib/libgcc_s.1.dylib
    1215        /usr/lib/libSystem.B.dylib
     16}}}
    1317
    1418As you can see, the X11-bindings are still present, although the
     19{{{
    1520  /opt/local/lib/libSM.6.dylib  and
    1621  /opt/local/lib/libICE.6.dylib
     22}}}
    1723bindings have disappeared.
    1824
    1925If I build the giflib on my own using
     26{{{
    2027>./configure --prefix=/opt/local/ --without-x --without-sm ,
     28}}}
    2129I will get the right results (a dylib without any references to x11) so I tried to edit the portfile itself like this:
    2230
     31{{{
    2332variant no_x11 {
    2433        depends_lib-delete      port:xorg-libsm
     
    2736        configure.args-append   --without-sm
    2837}
     38}}}
    2939
    3040However, this also didn't work ... I would be very grateful for any help!