X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=www%2Fadvanced-unix-installation.html;h=2066f4e8755e9b239a0ea35aba838b40fce8d195;hb=bf126f7596e112266716c6ca94a8ff638a7c4400;hp=f83591fb5e8f588805b88feb55235005d222027c;hpb=3009279e3d7d8567e48d327b0ef994f64f8072b8;p=imagemagick diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html index f83591fb5..2066f4e87 100644 --- a/www/advanced-unix-installation.html +++ b/www/advanced-unix-installation.html @@ -49,12 +49,19 @@
- - [ImageMagick] - - [sponsor] +
+ + +
ImageMagick Logo
- - +
@@ -218,12 +224,11 @@

The configure script looks at your environment and decides what it can cobble together to get ImageMagick compiled and installed on your system. This includes finding a compiler, where your compiler header files are located (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick to use (e.g. JPEG, PNG, TIFF, etc.). If you are willing to accept configure's default options, and build from within the source directory, you can simply type:

-

$magick> cd ImageMagick-6.6.7-8 $magick> ./configure

+

$magick> cd ImageMagick-6.7.0-1 $magick> ./configure

Watch the configure script output to verify that it finds everything that you think it should. Pay particular attention to the last lines of the script output. For example, here is a recent report from our system:

-
 ImageMagick is configured as follows. Please verify that this configuration
 matches your expectations.
 
@@ -295,7 +300,6 @@ Options used to compile and link:
                     -lSM -lICE -lX11 -lXt -lbz2 -lz -lm -lgomp -lpthread -lltdl
   CXX             = g++
   CXXFLAGS        = -g -O2 -Wall -W -pthread
-

You can influence choice of compiler, compilation flags, or libraries of the configure script by setting initial values for variables in the configure command line. These include, among others:

@@ -548,7 +552,7 @@ Options used to compile and link:

$magick> rpmbuild --rebuild ImageMagick.src.rpm

After the build you, locate the RPMS folder and install the ImageMagick binary RPM distribution:

-

$magick> rpm -ivh ImageMagick-6.6.7-?.*.rpm

+

$magick> rpm -ivh ImageMagick-6.7.0-?.*.rpm

Mac OS X-specific Build instructions

@@ -572,7 +576,7 @@ Options used to compile and link:

Download the ImageMagick source distribution and verify the distribution against its message digest.

Unpack and change into the top-level ImageMagick directory:

-

$magick> tar xvfz ImageMagick-6.6.7-8.tar.gz $magick> cd ImageMagick-6.6.7-8

Configure ImageMagick:

+

$magick> tar xvfz ImageMagick-6.7.0-1.tar.gz $magick> cd ImageMagick-6.7.0-1

Configure ImageMagick:

$magick> ./configure --prefix=/opt --with-quantum-depth=16 \
--disable-dependency-tracking --with-x=yes \
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib/ \
@@ -592,7 +596,7 @@ Options used to compile and link:

Although you can download and install delegate libraries yourself, many are already available in the GnuWin32 distribution. Download and install whichever delegate libraries you require such as JPEG, PNG, TIFF, etc. Make sure you specify the development headers when you install a package. Next type,

-

$magick> tar jxvf ImageMagick-6.6.7-?.tar.bz2 $magick> cd ImageMagick-6.6.7-8 $magick> export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include" $magick> export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib" $magick> ./configure --without-perl $magick> make $magick> sudo make install

+

$magick> tar jxvf ImageMagick-6.7.0-?.tar.bz2 $magick> cd ImageMagick-6.7.0-1 $magick> export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include" $magick> export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib" $magick> ./configure --without-perl $magick> make $magick> sudo make install

Dealing with Unexpected Problems