missing
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:5k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. #! /bin/sh
  2. # Common stub for a few missing GNU programs while installing.
  3. # Copyright (C) 1996, 1997 Free Software Foundation, Inc.
  4. # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996.
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  16. # 02111-1307, USA.
  17. if test $# -eq 0; then
  18.   echo 1>&2 "Try `$0 --help' for more information"
  19.   exit 1
  20. fi
  21. case "$1" in
  22.   -h|--h|--he|--hel|--help)
  23.     echo "
  24. $0 [OPTION]... PROGRAM [ARGUMENT]...
  25. Handle `PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
  26. error status if there is no known handling for PROGRAM.
  27. Options:
  28.   -h, --help      display this help and exit
  29.   -v, --version   output version information and exit
  30. Supported PROGRAM values:
  31.   aclocal      touch file `aclocal.m4'
  32.   autoconf     touch file `configure'
  33.   autoheader   touch file `config.h.in'
  34.   automake     touch all `Makefile.in' files
  35.   bison        touch file `y.tab.c'
  36.   makeinfo     touch the output file
  37.   yacc         touch file `y.tab.c'"
  38.     ;;
  39.   -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
  40.     echo "missing - GNU libit 0.0"
  41.     ;;
  42.   -*)
  43.     echo 1>&2 "$0: Unknown `$1' option"
  44.     echo 1>&2 "Try `$0 --help' for more information"
  45.     exit 1
  46.     ;;
  47.   aclocal)
  48.     echo 1>&2 "
  49. WARNING: `$1' is missing on your system.  You should only need it if
  50.          you modified `acinclude.m4' or `configure.in'.  You might want
  51.          to install the `Automake' and `Perl' packages.  Grab them from
  52.          any GNU archive site."
  53.     touch aclocal.m4
  54.     ;;
  55.   autoconf)
  56.     echo 1>&2 "
  57. WARNING: `$1' is missing on your system.  You should only need it if
  58.          you modified `configure.in'.  You might want to install the
  59.          `Autoconf' and `GNU m4' packages.  Grab them from any GNU
  60.          archive site."
  61.     touch configure
  62.     ;;
  63.   autoheader)
  64.     echo 1>&2 "
  65. WARNING: `$1' is missing on your system.  You should only need it if
  66.          you modified `acconfig.h' or `configure.in'.  You might want
  67.          to install the `Autoconf' and `GNU m4' packages.  Grab them
  68.          from any GNU archive site."
  69.     files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER([^):]*:([^)]*)).*/1/p' configure.in`
  70.     if test -z "$files"; then
  71.       files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(([^):]*)).*/1/p' configure.in`
  72.       test -z "$files" || files="$files.in"
  73.     else
  74.       files=`echo "$files" | sed -e 's/:/ /g'`
  75.     fi
  76.     test -z "$files" && files="config.h.in"
  77.     touch $files
  78.     ;;
  79.   automake)
  80.     echo 1>&2 "
  81. WARNING: `$1' is missing on your system.  You should only need it if
  82.          you modified `Makefile.am', `acinclude.m4' or `configure.in'.
  83.          You might want to install the `Automake' and `Perl' packages.
  84.          Grab them from any GNU archive site."
  85.     find . -type f -name Makefile.am -print 
  86.       | sed 's/^(.*).am$/touch 1.in/' 
  87.       | sh
  88.     ;;
  89.   bison|yacc)
  90.     echo 1>&2 "
  91. WARNING: `$1' is missing on your system.  You should only need it if
  92.          you modified a `.y' file.  You may need the `Bison' package
  93.          in order for those modifications to take effect.  You can get
  94.          `Bison' from any GNU archive site."
  95.     touch y.tab.c
  96.     ;;
  97.   makeinfo)
  98.     echo 1>&2 "
  99. WARNING: `$1' is missing on your system.  You should only need it if
  100.          you modified a `.texi' or `.texinfo' file, or any other file
  101.          indirectly affecting the aspect of the manual.  The spurious
  102.          call might also be the consequence of using a buggy `make' (AIX,
  103.          DU, IRIX).  You might want to install the `Texinfo' package or
  104.          the `GNU make' package.  Grab either from any GNU archive site."
  105.     file=`echo "$*" | sed -n 's/.*-o ([^ ]*).*/1/p'`
  106.     if test -z "$file"; then
  107.       file=`echo "$*" | sed 's/.* ([^ ]*) *$/1/'`
  108.       file=`sed -n '/^@setfilename/ { s/.* ([^ ]*) *$/1/; p; q; }' $file`
  109.     fi
  110.     touch $file
  111.     ;;
  112.   *)
  113.     echo 1>&2 "
  114. WARNING: `$1' is needed, and you do not seem to have it handy on your
  115.          system.  You might have modified some files without having the
  116.          proper tools for further handling them.  Check the `README' file,
  117.          it often tells you about the needed prerequirements for installing
  118.          this package.  You may also peek at any GNU archive site, in case
  119.          some other package would contain this missing `$1' program."
  120.     exit 1
  121.     ;;
  122. esac
  123. exit 0