Skip to content

Commit

Permalink
Ports: Enable more poppler features
Browse files Browse the repository at this point in the history
We now link against `boost`, `lcms2` and `openjpeg`.

We also depend on `gpgme` but don't link against it because of SerenityOS#23557
  • Loading branch information
fdellwing authored and timschumi committed Apr 7, 2024
1 parent 65fd70c commit 3a0e69d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Ports/poppler/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,34 @@ files=(
"https://poppler.freedesktop.org/poppler-data-${version_data}.tar.gz#c835b640a40ce357e1b83666aabd95edffa24ddddd49b8daff63adb851cdab74"
)
depends=(
'boost'
'curl'
'fontconfig'
'freetype'
'gpgme'
'lcms2'
'libjpeg'
'libpng'
'libtiff'
'openjpeg'
)
useconfigure='true'
configopts=(
'-B build'
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
'-DCMAKE_BUILD_TYPE=release'
'-DENABLE_BOOST=OFF'
'-DENABLE_CPP=OFF'
'-DBUILD_CPP_TESTS=OFF'
'-DENABLE_GLIB=OFF'
'-DENABLE_GOBJECT_INTROSPECTION=OFF'
'-DENABLE_GPGME=OFF'
'-DENABLE_GTK_DOC=OFF'
'-DENABLE_LCMS=OFF'
'-DENABLE_LIBOPENJPEG=unmaintained'
'-DENABLE_GPGME=OFF' # Enabling GPGME causes the program to crash (#23557)
'-DENABLE_NSS3=OFF'
'-DENABLE_QT5=OFF'
'-DBUILD_QT5_TESTS=OFF'
'-DENABLE_QT6=OFF'
'-DBUILD_QT6_TESTS=OFF'
'-DBUILD_GTK_TESTS=OFF'
'-DBUILD_MANUAL_TESTS=OFF'
'-DBUILD_MANUAL_TESTS=OFF'
)

configure() {
Expand Down

0 comments on commit 3a0e69d

Please sign in to comment.