Ignore:
Timestamp:
2016-10-19T16:35:24+13:00 (8 years ago)
Author:
ak19
Message:

Experimenting to get libwv to be compiled up correctly on ElCapitan so it can be used when running. At present ElCap binary's libwv immediately fails when using attempting to process a word doc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r30865 r30883  
    370370    </if>
    371371
     372    <!--https://groups.google.com/forum/#!topic/openkinect/m-hfXeYwKtU
     373      compiling up libwv on ElCapitan needs -framework CoreFoundation -->
    372374    <if><bool><isset property="env.LDFLAGS"/></bool>
    373         <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS}&quot;"/>
     375        <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS} -framework CoreFoundation&quot;"/>
    374376    <else>
    375             <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot;"/>
     377            <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot; -framework CoreFoundation"/>
    376378    </else>
    377379    </if>
     
    434436
    435437        <if><bool><isset property="env.LDFLAGS"/></bool>
    436             <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS}&quot;"/>
     438            <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS} -framework CoreFoundation&quot;"/>
    437439        <else>
    438             <property name="ldflags.arg" value=" "/>
     440            <property name="ldflags.arg" value="LDFLAGS=&quot;-framework CoreFoundation&quot;"/>
    439441        </else>
    440442        </if>
Note: See TracChangeset for help on using the changeset viewer.