Skip to content

Commit

Permalink
the Flashpix library now requires you explicitedly enable when config…
Browse files Browse the repository at this point in the history
…uring
  • Loading branch information
Cristy committed Nov 12, 2022
1 parent 7cb70aa commit eca4ce5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions configure
Expand Up @@ -2073,7 +2073,7 @@ Optional Packages:
DejaVu font directory
--with-fftw enable FFTW support
--with-flif enable FLIF support
--without-fpx disable FlashPIX support
--with-fpx enable FlashPIX support
--without-djvu disable DjVu support
--without-fontconfig disable fontconfig support
--without-freetype disable Freetype support
Expand Down Expand Up @@ -5149,7 +5149,7 @@ MAGICK_PATCHLEVEL_VERSION=53

MAGICK_VERSION=7.1.0-53

MAGICK_GIT_REVISION=e8dd49656:20221109
MAGICK_GIT_REVISION=7cb70aa0b:20221112


# Substitute library versioning
Expand Down Expand Up @@ -5183,7 +5183,7 @@ PACKAGE_LIB_VERSION=0x710

PACKAGE_LIB_VERSION_NUMBER=7,1,0,53

PACKAGE_RELEASE_DATE=2022-11-09
PACKAGE_RELEASE_DATE=2022-11-12


# Ensure that make can run correctly
Expand Down Expand Up @@ -30835,7 +30835,7 @@ if test ${with_fpx+y}
then :
withval=$with_fpx; with_fpx=$withval
else $as_nop
with_fpx='yes'
with_fpx='no'
fi


Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Expand Up @@ -1881,10 +1881,10 @@ dnl ===========================================================================
# Check for FlashPIX delegate library.
#
AC_ARG_WITH([fpx],
[AS_HELP_STRING([--without-fpx],
[disable FlashPIX support])],
[AS_HELP_STRING([--with-fpx],
[enable FlashPIX support])],
[with_fpx=$withval],
[with_fpx='yes'])
[with_fpx='no'])

if test "$with_fpx" != 'yes'; then
DISTCHECK_CONFIG_FLAGS="${DISTCHECK_CONFIG_FLAGS} --with-fpx=$with_fpx "
Expand Down

0 comments on commit eca4ce5

Please sign in to comment.