xml-config.in
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #! /bin/sh
  2. prefix=@prefix@
  3. exec_prefix=@exec_prefix@
  4. includedir=@includedir@
  5. usage()
  6. {
  7.     cat <<EOF
  8. Usage: xml-config [OPTION]
  9. Known values for OPTION are:
  10.   --prefix=DIR change libxml prefix [default $prefix]
  11.   --libs print library linking information
  12.   --cflags print pre-processor and compiler flags
  13.   --help display this help and exit
  14.   --version output version information
  15. EOF
  16.     exit $1
  17. }
  18. if test $# -eq 0; then
  19.     usage 1
  20. fi
  21. cflags=false
  22. libs=false
  23. while test $# -gt 0; do
  24.     case "$1" in
  25.     -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  26.     *) optarg= ;;
  27.     esac
  28.     case "$1" in
  29.     --prefix=*)
  30. prefix=$optarg
  31. ;;
  32.     --prefix)
  33. echo $prefix
  34. ;;
  35.     --version)
  36. echo @VERSION@
  37. exit 0
  38. ;;
  39.     --help)
  40. usage 0
  41. ;;
  42.     --cflags)
  43.         echo @XML_INCLUDEDIR@ @XML_CFLAGS@
  44.         ;;
  45.     --libs)
  46.         echo -L@libdir@ @XML_LIBS@ @LIBS@
  47.         ;;
  48.     *)
  49. usage
  50. exit 1
  51. ;;
  52.     esac
  53.     shift
  54. done
  55. exit 0