Changeset 22943


Ignore:
Timestamp:
2010-09-23T09:50:42+12:00 (14 years ago)
Author:
sjm84
Message:

Several parts of the gnome-lib are no longer statically complied on Mac

Location:
gs2-extensions/gnome-lib/trunk/packages/CASCADE-MAKE
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/gnome-lib/trunk/packages/CASCADE-MAKE/GLIB.sh

    r22932 r22943  
    1616
    1717opt_run_untar $force_untar $auto_untar $package $version
    18 opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     18if [ "$GSDLOS" = "darwin" ] ; then
     19    opt_run_configure $force_config $auto_config $package $version $prefix
     20else
     21    opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     22fi
    1923
    2024opt_run_make $compile $package $version
  • gs2-extensions/gnome-lib/trunk/packages/CASCADE-MAKE/LIBGSF.sh

    r22932 r22943  
    1616
    1717opt_run_untar $force_untar $auto_untar $package $version
    18 opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     18if [ "$GSDLOS" = "darwin" ] ; then
     19    opt_run_configure $force_config $auto_config $package $version $prefix
     20else
     21    opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     22fi
    1923
    2024opt_run_make $compile $package $version
  • gs2-extensions/gnome-lib/trunk/packages/CASCADE-MAKE/LIBXML.sh

    r22932 r22943  
    1111
    1212opt_run_untar $force_untar $auto_untar $package $version
    13 opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     13if [ "$GSDLOS" = "darwin" ] ; then
     14    opt_run_configure $force_config $auto_config $package $version $prefix
     15else
     16    opt_run_configure $force_config $auto_config $package $version $prefix --enable-static --disable-shared
     17fi
    1418
    1519opt_run_make $compile $package $version
Note: See TracChangeset for help on using the changeset viewer.