MOON
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 PHP/5.4.10
System: Linux vps.presagepowered.net 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: mckernan (512)
PHP: 5.4.10
Disabled: NONE
Upload Files
File: //proc/self/root/usr/bin/Wand-config
#!/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)
      pkg-config --variable prefix Wand
      ;;
    --exec-prefix)
      pkg-config --variable exec_prefix Wand
      ;;
    --version)
      pkg-config --modversion Wand
      ;;
    --cflags)
      pkg-config --cflags Wand
      ;;
    --cxxflags)
      pkg-config --cflags Wand
      ;;
    --cppflags)
      pkg-config --cflags Wand
      ;;
    --ldflags)
      pkg-config --libs Wand
      ;;
    --libs)
      pkg-config --libs Wand
      ;;
    *)
      echo "${usage}" 1>&2
      exit 1
      ;;
  esac
  shift
done