#!/bin/sh exec_prefix_set=no case `uname` in CYGWIN*) prefix=`bash -c "type -p libwmf-config"` prefix=`dirname $prefix` prefix=`dirname $prefix` prefix=`cygpath -m "$prefix"` exec_prefix="$prefix" ;; *) prefix=/usr exec_prefix=/usr ;; esac usage() { cat <&2 fi lib_gd=no lib_wmf=yes 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 if test $exec_prefix_set = no ; then exec_prefix=$optarg fi ;; --prefix) echo_prefix=yes ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes ;; --exec-prefix) echo_exec_prefix=yes ;; --version) echo 0.2.8 ;; --cflags) echo_cflags=yes ;; --libs) echo_libs=yes ;; gd) lib_gd=yes ;; wmf) lib_wmf=yes ;; *) usage 1 1>&2 ;; esac shift done if test "$echo_prefix" = "yes"; then echo $prefix fi if test "$echo_exec_prefix" = "yes"; then echo $exec_prefix fi wmf_cflags="-I/usr/include/freetype2 " wmf_liblflags=" -lfreetype -lX11 -lexpat -ljpeg -lpng -lz -lm" case `uname` in CYGWIN*) wmf_cflags=`echo $wmf_cflags | sed -e "s%/usr%$prefix%"` wmf_liblflags=`echo $wmf_liblflags | sed -e "s%/usr%$prefix%"` ;; esac libwmf_buildstyle=heavy if test $libwmf_buildstyle = heavy; then wmf_libs="-lwmf -lwmflite -lX11 -lfreetype -lz" else wmf_libs="-lwmflite" fi if test "$echo_cflags" = "yes"; then includes="$wmf_cflags" if test "$lib_gd" = "yes"; then includes="$includes -I/usr/include/libwmf/gd" fi if test "$lib_wmf" = "yes" && test "${prefix}" != "/usr/include" ; then includes="$includes -I/usr/include" fi echo $includes fi if test "$echo_libs" = "yes"; then test "/usr/lib" != "/usr/lib" && libdirs=-L/usr/lib my_wmf_libs= for i in $wmf_libs ; do if test "x$i" != "x-L/usr/lib" ; then if test -z "$my_wmf_libs" ; then my_wmf_libs="$i" else my_wmf_libs="$my_wmf_libs $i" fi fi done echo $libdirs $my_wmf_libs fi