ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : LiteSpeed System : Linux v2202501248978307069 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 User : voirf6718 ( 1002) PHP Version : 7.3.33-1+focal Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, Directory : /bin/X11/ |
#!/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 -I/usr/include/libpng16 " 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 $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