home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / utils / amd-udi / configure next >
Text File  |  1993-12-22  |  9KB  |  285 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf.
  4. # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp]
  21. #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE[=VALUE]]
  22. # Ignores all args except --srcdir, --prefix, --exec-prefix, and
  23. # --with-PACKAGE[=VALUE] unless this script has special code to handle it.
  24.  
  25. for arg
  26. do
  27.   # Handle --exec-prefix with a space before the argument.
  28.   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  29.   # Handle --host with a space before the argument.
  30.   elif test x$next_host = xyes; then next_host=
  31.   # Handle --prefix with a space before the argument.
  32.   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  33.   # Handle --srcdir with a space before the argument.
  34.   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  35.   else
  36.     case $arg in
  37.      # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  38.      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  39.     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  40.      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  41.     next_exec_prefix=yes ;;
  42.  
  43.      -gas | --gas | --ga | --g) ;;
  44.  
  45.      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  46.      -host | --host | --hos | --ho | --h)
  47.     next_host=yes ;;
  48.  
  49.      -nfp | --nfp | --nf) ;;
  50.  
  51.      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  52.     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  53.      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  54.     next_prefix=yes ;;
  55.  
  56.      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  57.     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  58.      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  59.     next_srcdir=yes ;;
  60.  
  61.      -with-* | --with-*)
  62.        package=`echo $arg|sed -e 's/-*with-//' -e 's/=.*//'`
  63.        # Reject names that aren't valid shell variable names.
  64.        if test -n "`echo $package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  65.          echo "configure: $package: invalid package name" >&2; exit 1
  66.        fi
  67.        package=`echo $package| sed 's/-/_/g'`
  68.        case "$arg" in
  69.          *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
  70.          *) val=1 ;;
  71.        esac
  72.        eval "with_$package='$val'" ;;
  73.  
  74.      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  75.        verbose=yes ;;
  76.  
  77.      *) ;;
  78.     esac
  79.   fi
  80. done
  81.  
  82. trap 'rm -fr conftest* confdefs* core; exit 1' 1 3 15
  83. trap 'rm -f confdefs*' 0
  84.  
  85. # NLS nuisances.
  86. # These must not be set unconditionally because not all systems understand
  87. # e.g. LANG=C (notably SCO).
  88. if test "${LC_ALL+set}" = 'set' ; then LC_ALL=C; export LC_ALL; fi
  89. if test "${LANG+set}"   = 'set' ; then LANG=C;   export LANG;   fi
  90.  
  91. rm -f conftest* confdefs.h
  92. echo > confdefs.h
  93. compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  94.  
  95. # A filename unique to this package, relative to the directory that
  96. # configure is in, which we can look for to find out if srcdir is correct.
  97. unique_file=mondfe/bkpt.c
  98.  
  99. # Find the source files, if location was not specified.
  100. if test -z "$srcdir"; then
  101.   srcdirdefaulted=yes
  102.   # Try the directory containing this script, then `..'.
  103.   prog=$0
  104.   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  105.   test "X$confdir" = "X$prog" && confdir=.
  106.   srcdir=$confdir
  107.   if test ! -r $srcdir/$unique_file; then
  108.     srcdir=..
  109.   fi
  110. fi
  111. if test ! -r $srcdir/$unique_file; then
  112.   if test x$srcdirdefaulted = xyes; then
  113.     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  114.   else
  115.     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  116.   fi
  117.   exit 1
  118. fi
  119. # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  120. # But we can't avoid them for `..', to make subdirectories work.
  121. case $srcdir in
  122.   .|/*|~*) ;;
  123.   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  124. esac
  125.  
  126.  
  127. # Save the original args to write them into config.status later.
  128. configure_args="$*"
  129.  
  130.  
  131. CC=${CC-cc}
  132.  
  133.  
  134. echo checking how to run the C preprocessor
  135. if test -z "$CPP"; then
  136.   # This must be in double quotes, not single quotes, because CPP may get
  137.   # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  138.   # make.  It must be expanded now.
  139.   CPP="${CC-cc} -E"
  140.   cat > conftest.c <<EOF
  141. #include "confdefs.h"
  142. #include <stdio.h>
  143. Syntax Error
  144. EOF
  145. err=`eval "($CPP conftest.c >/dev/null) 2>&1"`
  146. if test -z "$err"; then
  147.   :
  148. else
  149.   rm -rf conftest*
  150.   CPP=/lib/cpp
  151. fi
  152. rm -f conftest*
  153. fi
  154. test ".${verbose}" != "." && echo "    setting CPP to $CPP"
  155.  
  156. if test -z "$RANLIB"; then
  157.   # Extract the first word of `ranlib', so it can be a program name with args.
  158.   set dummy ranlib; word=$2
  159.   echo checking for $word
  160.   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  161.   for dir in $PATH; do
  162.     test -z "$dir" && dir=.
  163.     if test -f $dir/$word; then
  164.       RANLIB="ranlib"
  165.       break
  166.     fi
  167.   done
  168.   IFS="$saveifs"
  169. fi
  170. test -z "$RANLIB" && RANLIB=":"
  171. test -n "$RANLIB" && test -n "$verbose" && echo "    setting RANLIB to $RANLIB"
  172.  
  173.  
  174. for hdr in string.h stdlib.h unistd.h
  175. do
  176. trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  177. echo checking for ${hdr}
  178. cat > conftest.c <<EOF
  179. #include "confdefs.h"
  180. #include <${hdr}>
  181. EOF
  182. err=`eval "($CPP conftest.c >/dev/null) 2>&1"`
  183. if test -z "$err"; then
  184.   rm -rf conftest*
  185.   
  186. {
  187. test -n "$verbose" && \
  188. echo "    defining ${trhdr}"
  189. echo "#define" ${trhdr} 1 >> confdefs.h
  190. DEFS="$DEFS -D${trhdr}=1"
  191. }
  192.  
  193.  
  194. fi
  195. rm -f conftest*
  196. done
  197.  
  198.  
  199. # Set default prefixes.
  200. if test -n "$prefix"; then
  201.   test -z "$exec_prefix" && exec_prefix='${prefix}'
  202.   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  203. fi
  204. if test -n "$exec_prefix"; then
  205.   prsub="$prsub
  206. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  207. fi
  208. # Quote sed substitution magic chars in DEFS.
  209. cat >conftest.def <<EOF
  210. $DEFS
  211. EOF
  212. escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  213. DEFS=`sed "$escape_ampersand_and_backslash" <conftest.def`
  214. rm -f conftest.def
  215. # Substitute for predefined variables.
  216.  
  217. trap 'rm -f config.status; exit 1' 1 3 15
  218. echo creating config.status
  219. rm -f config.status
  220. cat > config.status <<EOF
  221. #!/bin/sh
  222. # Generated automatically by configure.
  223. # Run this file to recreate the current configuration.
  224. # This directory was configured as follows,
  225. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  226. #
  227. # $0 $configure_args
  228.  
  229. for arg
  230. do
  231.   case "\$arg" in
  232.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  233.     echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args
  234.     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args ;;
  235.     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  236.   esac
  237. done
  238.  
  239. trap 'rm -f Makefile mondfe/Makefile montip/Makefile udi/Makefile; exit 1' 1 3 15
  240. CC='$CC'
  241. CPP='$CPP'
  242. RANLIB='$RANLIB'
  243. LIBS='$LIBS'
  244. srcdir='$srcdir'
  245. DEFS='$DEFS'
  246. prefix='$prefix'
  247. exec_prefix='$exec_prefix'
  248. prsub='$prsub'
  249. extrasub='$extrasub'
  250. EOF
  251. cat >> config.status <<\EOF
  252.  
  253. top_srcdir=$srcdir
  254.  
  255. CONFIG_FILES=${CONFIG_FILES-"Makefile mondfe/Makefile montip/Makefile udi/Makefile"}
  256. for file in .. ${CONFIG_FILES}; do if test "x$file" != x..; then
  257.   srcdir=$top_srcdir
  258.   # Remove last slash and all that follows it.  Not all systems have dirname.
  259.   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  260.   if test "$dir" != "$file"; then
  261.     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  262.     test ! -d $dir && mkdir $dir
  263.   fi
  264.   echo creating $file
  265.   rm -f $file
  266.   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  267.   sed -e "
  268. $prsub
  269. $extrasub
  270. s%@CC@%$CC%g
  271. s%@CPP@%$CPP%g
  272. s%@RANLIB@%$RANLIB%g
  273. s%@LIBS@%$LIBS%g
  274. s%@srcdir@%$srcdir%g
  275. s%@DEFS@%$DEFS%
  276. " $top_srcdir/${file}.in >> $file
  277. fi; done
  278.  
  279.  
  280. exit 0
  281. EOF
  282. chmod +x config.status
  283. ${CONFIG_SHELL-/bin/sh} config.status
  284.  
  285.