]> granicus.if.org Git - imagemagick/commitdiff
use autoconf
authorPaul Kehrer <paul.l.kehrer@gmail.com>
Mon, 23 Apr 2018 12:43:01 +0000 (07:43 -0500)
committerDirk Lemstra <dlemstra@users.noreply.github.com>
Mon, 23 Apr 2018 12:56:19 +0000 (14:56 +0200)
Magick++/fuzz/build.sh

index ef8c6c60333e16b3d6fde9b437a7298d3ad47aa7..3d49aadca69c9d7976f51a5ab4823950e9a2b62a 100644 (file)
@@ -29,14 +29,9 @@ make install
 popd
 
 # Build libtiff
-# We build shared and static here to make IM's libtiff detection via autoconf more reliable
-# The fuzzers themselves link solely against the static build though.
 pushd "$SRC/libtiff"
-cmake . -DCMAKE_INSTALL_PREFIX=$WORK
-make -j$(nproc)
-make install
-git clean -fd
-cmake . -DCMAKE_INSTALL_PREFIX=$WORK -DBUILD_SHARED_LIBS=off
+autoreconf -fiv
+./configure --prefix="$WORK"
 make -j$(nproc)
 make install
 popd