Ignore:
Timestamp:
2013-02-12T00:57:52+13:00 (11 years ago)
Author:
davidb
Message:

Patch that tweaks one file in ilmbase to help compilation on a 32-bit linux machine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs3-extensions/hugin/trunk/src/packages/CASCADE-MAKE/ILMBASE.sh

    r26862 r26876  
    1010prefix=$GEXTHUGIN_INSTALLED
    1111
     12needs_patch=0
     13if [ $force_untar = "1" ] ; then
     14  needs_patch=1;
     15fi
     16
     17if [ $auto_config = "1" ] ; then
     18  if [ ! -d $package$version ] ; then
     19    needs_patch=1;
     20  fi
     21fi
     22
     23
    1224opt_run_untar $force_untar $auto_untar $package $version
     25
     26if [ $needs_patch = "1" ] ; then
     27  patch -p0 < patches/ilmbase-git-jan2013.patch
     28fi
     29
    1330if [ $auto_config = "1" ] ; then
    1431    cd $package$version;
Note: See TracChangeset for help on using the changeset viewer.