Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
proc
/
thread-self
/
root
/
proc
/
self
/
root
/
usr
/
bin
/
//proc/self/root/proc/thread-self/root/proc/self/root/usr/bin/libwmf-config
#!/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=${prefix} ;; esac usage() { cat <<EOF Usage: libwmf-config [OPTIONS] [LIBRARIES] Options: [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] Libraries/Headers: gd wmf EOF exit $1 } if test $# -eq 0; then usage 1 1>&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=" -L/usr/lib/x86_64-linux-gnu -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 $wmf_liblflags" else wmf_libs="-lwmflite" fi if test "$echo_cflags" = "yes"; then includes="$wmf_cflags" if test "$lib_gd" = "yes"; then includes="$includes -I${prefix}/include/libwmf/gd" fi if test "$lib_wmf" = "yes"; then includes="$includes -I${prefix}/include" fi echo $includes fi if test "$echo_libs" = "yes"; then libdirs=-L${prefix}/lib/x86_64-linux-gnu my_wmf_libs= for i in $wmf_libs ; do if test "x$i" != "x-L${prefix}/lib/x86_64-linux-gnu" ; 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