#!/bin/sh
#
# Configure options script for re-calling MagickWand compilation options
# required to use the MagickWand library.
#
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
    --prefix)
      echo /usr/local
      ;;
    --exec-prefix)
      echo /usr/local
      ;;
    --version)
      echo '6.3.6 Q16 '
      ;;
    --cflags)
      echo '-O2 -pipe -Wall -W'
      ;;
    --cxxflags)
      echo '-O2 -pipe -Wall -W'
      ;;
    --cppflags)
      echo '-I/usr/local/include'
      ;;
    --ldflags)
      echo '-L/usr/local/lib -L/usr/obj/ports/ImageMagick-6.3.6.10-no_x11/build-alpha-no_x11/magick/.libs -L/usr/obj/ports/ImageMagick-6.3.6.10-no_x11/build-alpha-no_x11/wand/.libs -L/usr/local/lib'
      ;;
    --libs)
      echo '-lMagick -ljbig -llcms -ltiff -ljasper -ljpeg -lpng -lbz2 -lz -lm -lWand -lMagick'
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
      ;;
  esac
  shift
done

