Ignore:
Timestamp:
2018-07-02T21:05:48+12:00 (6 years ago)
Author:
ak19
Message:

Still part of the temporary redoing proper non-static compilation of xpdf-tools. In this 2nd round, just tidying up version numbers with variables, before the next commit (which will commit all the changes for getting static compilation of xpdf-tools to work.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/xpdf-tools/trunk/src/packages/CASCADE-MAKE/XPDFTOOLS.sh

    r32230 r32232  
    44package=xpdf
    55version=-4.00
     6
     7# Suffixes to the final .so files (not the symbolic .so files)
     8# generated for zlib and libpng. We're currently up to libpng version 15, lpng15
     9zlib_so_version=1.2.7
     10libpng_so_version=15.30.0
    611
    712progname=$0
     
    5459    cmake -DCMAKE_BUILD_TYPE=Release \
    5560        -DCMAKE_INSTALL_PREFIX=$prefix \
    56         -DZLIB_LIBRARY=$prefix/lib/libz.so.1.2.7 \
    57         -DPNG_LIBRARY=$prefix/lib/libpng15.so.15.30.0 \
    58         -DFREETYPE_LIBRARY=$prefix/lib/libfreetype.so.6.3.20 \
     61        -DZLIB_LIBRARY=$prefix/lib/libz.so.$zlib_so_version \
     62        -DPNG_LIBRARY=$prefix/lib/libpng15.so.$libpng_so_version \
     63        -DFREETYPE_DIR=$prefix \
    5964        -DCMAKE_DISABLE_FIND_PACKAGE_Qt4=1 \
    6065        -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Widgets=1 \
Note: See TracChangeset for help on using the changeset viewer.