Ignore:
Timestamp:
2016-11-23T17:21:51+13:00 (7 years ago)
Author:
ak19
Message:

Redoing El Capitan imgmagick binary for release after testing on an uncooperative El Cap Mac machine. The key change involved recompiling with mmacosx-version-min=10.8 (Mountain Lion) to make the binary more backwards compatible. Works on uncooperative mac. Still to test on Dr Bainbridge's El Cap laptop.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/imagemagick/trunk/src/devel.bash

    r23291 r31145  
    88  source setup.bash
    99fi
     10
     11# for darwin, want to be backwards compatible upto and incl Mountain Lion
     12# to avoid "Illegal Instruction 4" errors when running imgmagick convert
     13# on older Mac
     14if [ "x$GSDLOS" = "xdarwin" ] ; then
     15    export CFLAGS="-mmacosx-version-min=10.8 $CFLAGS"
     16    export CXXFLAGS="-mmacosx-version-min=10.8 $CXXFLAGS"
     17    export LDFLAGS="-mmacosx-version-min=10.8 $LDFLAGS"
     18fi
Note: See TracChangeset for help on using the changeset viewer.