Ignore:
Timestamp:
2013-09-12T14:31:46+12:00 (11 years ago)
Author:
sjm84
Message:

Imagemagick now also compiles up ghostscript to generate the ghostscript binary in linux/bin. Ghostscript is not included in lsb.

Location:
gs2-extensions/imagemagick/trunk/src/packages
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/imagemagick/trunk/src/packages/CASCADE-MAKE.sh

    r27720 r28270  
    55# Need to compile up JPEG before TIFF, since TIFF is dependent on libjpeg.so
    66# (else it will find a system libjpeg.so, which will be libjpeg.so.62 and not the included libjpeg.so.8)
    7 for d in LIBZ LIBBZ2 JPEG TIFF LIBPNG JPEG2000 IMAGEMAGICK ; do
     7
     8for d in LIBZ LIBBZ2 JPEG TIFF GS LIBPNG JPEG2000 IMAGEMAGICK ; do
    89    echo "    Running CASCADE-MAKE/$d.sh"
    910
  • gs2-extensions/imagemagick/trunk/src/packages/CASCADE-MAKE/IMAGEMAGICK.sh

    r27284 r28270  
    2121if [ "x$GSDLOS" = "xdarwin" ] ; then
    2222    if command -v clang > /dev/null 2>&1; then
    23     echo "Found clang compiler. Switching CC toclang"
     23    echo "Found clang compiler. Switching CC to clang"
    2424    CROSSCONFIGURE_VARS="CC=clang"
    2525    fi
    2626fi
    2727
     28# it's going to generate the ghostscript binary not ghostscript library
     29# so --without-gslib
    2830opt_run_untar $force_untar $auto_untar $package $version
    29 opt_run_configure $force_config $auto_config $package $version $prefix
     31opt_run_configure $force_config $auto_config $package $version $prefix --without-gslib
    3032
    3133opt_run_make $compile $package $version
Note: See TracChangeset for help on using the changeset viewer.