#!/bin/sh # # Configure options script for re-calling MagickWand compilation options # required to use the MagickWand library. # prefix=/home/max/imMacOs/im exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include/ImageMagick usage="\ Usage: Wand-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]" if test $# -eq 0; then echo "${usage}" 1>&2 echo "Example: gcc \`Wand-config --cflags --cppflags\` -o wand wand.c \`Wand-config --ldflags --libs\`" 1>&2 exit 1 fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix=*) prefix=$optarg ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$optarg ;; --exec-prefix) echo $exec_prefix ;; --version) echo '6.4.4 Q16 ' ;; --cflags) echo "-I${includedir} " ;; --cxxflags) echo '-g -O2 -Wall -W -D_THREAD_SAFE' ;; --cppflags) echo '-I/home/max/imMacOs/im/include/ImageMagick' ;; --ldflags) echo '-L/home/max/imMacOs/im/lib -L/home/max/imMacOs/im/tmp/lib -L/home/max/imMacOs/ImageMagick-6.4.4/magick -L/home/max/imMacOs/ImageMagick-6.4.4/wand -L/usr/X11/lib -lfreetype -lz -Wl,-framework,CoreServices,-framework,ApplicationServices' ;; --libs) echo "-L${libdir} -lMagickWand -lMagickCore" ;; *) echo "${usage}" 1>&2 exit 1 ;; esac shift done