Replace distribution imagemagick with a custom build

This commit is contained in:
Daniel Winzen
2020-08-19 17:45:28 +02:00
parent d3ca7ab32f
commit 5531886289
2 changed files with 11 additions and 4 deletions

View File

@ -6,6 +6,13 @@ autoreconf -fi
CFLAGS="-O3 -march=native -mtune=native" ./configure
make -j $(nproc) install
cd ..
git clone https://github.com/ImageMagick/ImageMagick
cd ImageMagick
git pull
CXXFLAGS='-O3 -mtune=native -march=native' CFLAGS='-O3 -mtune=native -march=native' ./configure --without-perl --without-magick-plus-plus --with-rsvg=yes
make -j $(nproc) install
cd ..
ldconfig
git clone https://github.com/nginx/nginx
cd nginx
git pull