home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / gnu / bin / autoconf < prev    next >
Text File  |  1994-04-26  |  4KB  |  116 lines

  1. #!/bin/sh
  2. # autoconf -- create `configure' using m4 macros
  3. # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  4.  
  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.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. # If given no args, create `configure' from template file `configure.in'.
  20. # With one arg, create a configure script on standard output from
  21. # the given template file.
  22.  
  23. usage="Usage: autoconf [-h] [--help] [-m dir] [--macrodir=dir] 
  24.                 [-v] [--version] [template-file]" 
  25.  
  26. # NLS nuisances.
  27. # These must not be set unconditionally because not all systems understand
  28. # e.g. LANG=C (notably SCO).
  29. if test "${LC_ALL+set}" = 'set' ; then LC_ALL=C; export LC_ALL; fi
  30. if test "${LANG+set}"   = 'set' ; then LANG=C;   export LANG;   fi
  31.  
  32. test -z "${AC_MACRODIR}" && AC_MACRODIR=/gnu/lib/autoconf
  33. test -z "${M4}" && M4=/bin/m4
  34.  
  35. tmpout=/tmp/acout.$$
  36.  
  37. print_version=
  38. while test $# -gt 0 ; do
  39.    case "z${1}" in 
  40.       z-h | z--help | z--h* )
  41.          /bin/echo "${usage}" 1>&2; exit 0 ;;
  42.       z--macrodir=* | z--m*=* )
  43.          AC_MACRODIR="`/bin/echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  44.          shift ;;
  45.       z-m | z--macrodir | z--m* ) 
  46.          shift
  47.          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  48.          AC_MACRODIR="${1}"
  49.          shift ;;
  50.       z-v | z--version | z--v* )
  51.          print_version="-DAC_PRINT_VERSION"
  52.          infile=/dev/null tmpout=/dev/null
  53.          shift ;;
  54.       z-- )     # Stop option processing
  55.         shift; break ;;
  56.       z- )    # Use stdin as input.
  57.         break ;;
  58.       z-* )
  59.         /bin/echo "${usage}" 1>&2; exit 1 ;;
  60.       * )
  61.         break ;;
  62.    esac
  63. done
  64.  
  65. if test -z "$print_version"; then
  66.   case $# in
  67.     0) infile=configure.in ;;
  68.     1) infile="$1" ;;
  69.     *) /bin/echo "$usage" >&2; exit 1 ;;
  70.   esac
  71.  
  72.   trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
  73.  
  74.   if test z$infile = z-; then
  75.     tmpin=/tmp/acin.$$
  76.     infile=$tmpin
  77.     cat > $infile
  78.   elif test ! -s "${infile}"; then
  79.     /bin/echo "autoconf: ${infile}: No such file or directory" >&2
  80.     exit 1
  81.   fi
  82. fi
  83.  
  84. MACROFILES="${AC_MACRODIR}/acgeneral.m4 ${AC_MACRODIR}/acspecific.m4"
  85. test -r ${AC_MACRODIR}/aclocal.m4 \
  86.    && MACROFILES="${MACROFILES} ${AC_MACRODIR}/aclocal.m4"
  87. test -r aclocal.m4 && MACROFILES="${MACROFILES} aclocal.m4"
  88. MACROFILES="${print_version} ${MACROFILES}"
  89.  
  90. $M4 $MACROFILES $infile > $tmpout || { st=$?; rm -f $tmpin $tmpout; exit $st; }
  91.  
  92. test -n "$print_version" && exit 0
  93.  
  94. # You could add your own prefixes to pattern if you wanted to check for
  95. # them too, e.g. pattern="AC_\|ILT_", except that UNIX sed doesn't do
  96. # alternation.
  97. pattern="AC_"
  98.  
  99. status=0
  100. if grep "${pattern}" $tmpout > /dev/null 2>&1; then
  101.   /bin/echo "autoconf: Undefined macros:" >&2
  102.   grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
  103.     while read name; do
  104.       grep -n $name $infile /dev/null
  105.     done | sort -u >&2
  106.   status=1
  107. fi
  108.  
  109. case $# in
  110.   0) cat $tmpout > configure; chmod +x configure ;;
  111.   1) cat $tmpout ;;
  112. esac
  113.  
  114. rm -f $tmpout
  115. exit $status
  116.