⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xml2-config.in

📁 xml开源解析代码.版本为libxml2-2.6.29,可支持GB3212.网络消息发送XML时很有用.
💻 IN
字号:
#! /bin/shprefix=@prefix@exec_prefix=@exec_prefix@includedir=@includedir@libdir=@libdir@usage(){    cat <<EOFUsage: xml2-config [OPTION]Known values for OPTION are:  --prefix=DIR		change libxml prefix [default $prefix]  --exec-prefix=DIR	change libxml exec prefix [default $exec_prefix]  --libs		print library linking information  --cflags		print pre-processor and compiler flags  --modules		module support enabled  --help		display this help and exit  --version		output version informationEOF    exit $1}if test $# -eq 0; then    usage 1ficflags=falselibs=falsewhile test $# -gt 0; do    case "$1" in    -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;    *) optarg= ;;    esac    case "$1" in    --prefix=*)	prefix=$optarg	includedir=$prefix/include	libdir=$prefix/lib	;;    --prefix)	echo $prefix	;;    --exec-prefix=*)      exec_prefix=$optarg      libdir=$exec_prefix/lib      ;;    --exec-prefix)      echo $exec_prefix      ;;    --version)	echo @VERSION@	exit 0	;;    --help)	usage 0	;;    --cflags)       	echo @XML_INCLUDEDIR@ @XML_CFLAGS@       	;;    --libtool-libs)	if [ -r ${libdir}/@XML_LIBTOOLLIBS@ ]	then	    echo ${libdir}/@XML_LIBTOOLLIBS@	fi        ;;    --modules)       	echo @WITH_MODULES@       	;;    --libs)        if [ "`uname`" = "Linux" ]	then	    if [ "@XML_LIBDIR@" = "-L/usr/lib64" ]	    then		echo @XML_LIBS@ 	    else		echo @XML_LIBDIR@ @XML_LIBS@ 	    fi	else	    echo @XML_LIBDIR@ @XML_LIBS@ @WIN32_EXTRA_LIBADD@	fi       	;;    *)	usage	exit 1	;;    esac    shiftdoneexit 0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -