Changeset 37606


Ignore:
Timestamp:
2023-04-05T13:51:58+12:00 (13 months ago)
Author:
anupama
Message:
  1. Fixed my bug in merged compile.xml for rk3, where the Mojave suffix was necessary to grab the correctly named gnome-lib-minimal also used up to (at least) Mac Monterey. 2. The -Wno-error=implicit-function-declaration can be commented out in compile.xml as it's been added to GS3's gs3-devel.sh and works fine there.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml

    r37453 r37606  
    6767            <!-- For Lions, need a specific gnome-lib-minimal tar file. The file name contains darwin12 for Lion, it contains the os.shell name (darwin/linux) for other cases.
    6868            Mac OS X v10.7.4 onwards is Lion/Mountain Lion, different from Leopard/Snow Leopard. See http://en.wikipedia.org/wiki/Darwin_(operating_system) -->
    69             <condition property="specific.os.type" value="${os.shell}-Lion" else="${os.shell}">
     69            <condition property="specific.os.type" value="${os.shell}-Lion" else="${os.shell}-Mojave">
    7070                <and>
    7171                    <contains string="${os.shell}" substring="darwin" casesensitive="false"/>
     
    100100        <!-- <rsr file="${basedir}/compiled/build.xml" pattern="CFLAGS=&amp;quot;" replacement="CFLAGS=&amp;quot;-fPIC "/> -->
    101101        <!-- mac only: make errors about missing extern declarations back into warnings as in old (Mojave and before) macs -->
     102        <!--
    102103        <if>
    103104          <bool><equals arg1="${rk.os}" arg2="mac"/></bool>
    104105          <rsr file="${basedir}/compiled/build.xml" pattern="CFLAGS=&amp;quot;" replacement="CFLAGS=&amp;quot;-Wno-error=implicit-function-declaration "/>
    105106        </if>
     107        -->
    106108       
    107109        <!-- run greenstone3's ant install and ant dist-tidy -->
Note: See TracChangeset for help on using the changeset viewer.