#! /bin/sh # libpng-config # provides configuration info for libpng. # Copyright (C) 2002, 2004, 2006, 2007 Glenn Randers-Pehrson # This code is released under the libpng license. # For conditions of distribution and use, see the disclaimer # and license in png.h # Modeled after libxml-config. version="1.5.2" prefix="/usr/i686-w64-mingw32/sys-root/mingw" exec_prefix="/usr/i686-w64-mingw32/sys-root/mingw" libdir="/usr/i686-w64-mingw32/sys-root/mingw/lib" includedir="/usr/i686-w64-mingw32/sys-root/mingw/include/libpng15" libs="-lpng15" all_libs="-lpng15 -lz " I_opts="-I${includedir}" L_opts="-L${libdir}" R_opts="" cppflags="" ccopts="" ldopts="" usage() { cat <