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

Finally, committing the version of the code that runs the static compilation of xpdf-tools to completion. Still have the issue that pdftohtml and possibly some other binaries don't run (bash says it can't find the file when I try to execute pdftohtml), but pdftotext at least runs to print the usage, though I have yet to test that out on an actual PDF. Committing this version since it at least completes the process of building xpdf-tools statically. The CMakeLists.txt file introduced in this commit (and now contained in the current update to gs-xpdf-4.00.tar.gz) contains all the modifications made to the original CMakeLists.txt (the one in xpdf-4.00.tar.gz).

Location:
gs2-extensions/xpdf-tools/trunk/src/packages
Files:
1 added
2 edited

Legend:

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

    r32232 r32233  
    22
    33# only going to make xpdf-tools, not xpdf-reader. So not making all of xpdf
    4 package=xpdf
     4package=gs-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
    9 zlib_so_version=1.2.7
    10 libpng_so_version=15.30.0
    116
    127progname=$0
     
    5954    cmake -DCMAKE_BUILD_TYPE=Release \
    6055        -DCMAKE_INSTALL_PREFIX=$prefix \
    61         -DZLIB_LIBRARY=$prefix/lib/libz.so.$zlib_so_version \
    62         -DPNG_LIBRARY=$prefix/lib/libpng15.so.$libpng_so_version \
     56        -DZLIB_LIBRARY=$prefix/lib/libz.a \
     57        -DPNG_LIBRARY=$prefix/lib/libpng15.a \
    6358        -DFREETYPE_DIR=$prefix \
    6459        -DCMAKE_DISABLE_FIND_PACKAGE_Qt4=1 \
Note: See TracChangeset for help on using the changeset viewer.