configure
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:63k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf version 2.13 
  4. # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
  5. #
  6. # This configure script is free software; the Free Software Foundation
  7. # gives unlimited permission to copy, distribute and modify it.
  8. # Defaults:
  9. ac_help=
  10. ac_default_prefix=/usr/local
  11. # Any additions from configure.in:
  12. ac_help="$ac_help
  13.   --without-gcc           don't use gcc"
  14. ac_help="$ac_help
  15.   --with-pcap=TYPE        use packet capture TYPE"
  16. ac_help="$ac_help
  17.   --without-flex          don't use flex"
  18. ac_help="$ac_help
  19.   --without-bison         don't use bison"
  20. # Initialize some variables set by options.
  21. # The variables have the same names as the options, with
  22. # dashes changed to underlines.
  23. build=NONE
  24. cache_file=./config.cache
  25. exec_prefix=NONE
  26. host=NONE
  27. no_create=
  28. nonopt=NONE
  29. no_recursion=
  30. prefix=NONE
  31. program_prefix=NONE
  32. program_suffix=NONE
  33. program_transform_name=s,x,x,
  34. silent=
  35. site=
  36. srcdir=
  37. target=NONE
  38. verbose=
  39. x_includes=NONE
  40. x_libraries=NONE
  41. bindir='${exec_prefix}/bin'
  42. sbindir='${exec_prefix}/sbin'
  43. libexecdir='${exec_prefix}/libexec'
  44. datadir='${prefix}/share'
  45. sysconfdir='${prefix}/etc'
  46. sharedstatedir='${prefix}/com'
  47. localstatedir='${prefix}/var'
  48. libdir='${exec_prefix}/lib'
  49. includedir='${prefix}/include'
  50. oldincludedir='/usr/include'
  51. infodir='${prefix}/info'
  52. mandir='${prefix}/man'
  53. # Initialize some other variables.
  54. subdirs=
  55. MFLAGS= MAKEFLAGS=
  56. SHELL=${CONFIG_SHELL-/bin/sh}
  57. # Maximum number of lines to put in a shell here document.
  58. ac_max_here_lines=12
  59. ac_prev=
  60. for ac_option
  61. do
  62.   # If the previous option needs an argument, assign it.
  63.   if test -n "$ac_prev"; then
  64.     eval "$ac_prev=$ac_option"
  65.     ac_prev=
  66.     continue
  67.   fi
  68.   case "$ac_option" in
  69.   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  70.   *) ac_optarg= ;;
  71.   esac
  72.   # Accept the important Cygnus configure options, so we can diagnose typos.
  73.   case "$ac_option" in
  74.   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  75.     ac_prev=bindir ;;
  76.   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  77.     bindir="$ac_optarg" ;;
  78.   -build | --build | --buil | --bui | --bu)
  79.     ac_prev=build ;;
  80.   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  81.     build="$ac_optarg" ;;
  82.   -cache-file | --cache-file | --cache-fil | --cache-fi 
  83.   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  84.     ac_prev=cache_file ;;
  85.   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* 
  86.   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  87.     cache_file="$ac_optarg" ;;
  88.   -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  89.     ac_prev=datadir ;;
  90.   -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* 
  91.   | --da=*)
  92.     datadir="$ac_optarg" ;;
  93.   -disable-* | --disable-*)
  94.     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  95.     # Reject names that are not valid shell variable names.
  96.     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  97.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  98.     fi
  99.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  100.     eval "enable_${ac_feature}=no" ;;
  101.   -enable-* | --enable-*)
  102.     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  103.     # Reject names that are not valid shell variable names.
  104.     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  105.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  106.     fi
  107.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  108.     case "$ac_option" in
  109.       *=*) ;;
  110.       *) ac_optarg=yes ;;
  111.     esac
  112.     eval "enable_${ac_feature}='$ac_optarg'" ;;
  113.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi 
  114.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- 
  115.   | --exec | --exe | --ex)
  116.     ac_prev=exec_prefix ;;
  117.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* 
  118.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* 
  119.   | --exec=* | --exe=* | --ex=*)
  120.     exec_prefix="$ac_optarg" ;;
  121.   -gas | --gas | --ga | --g)
  122.     # Obsolete; use --with-gas.
  123.     with_gas=yes ;;
  124.   -help | --help | --hel | --he)
  125.     # Omit some internal or obsolete options to make the list less imposing.
  126.     # This message is too long to be a string in the A/UX 3.1 sh.
  127.     cat << EOF
  128. Usage: configure [options] [host]
  129. Options: [defaults in brackets after descriptions]
  130. Configuration:
  131.   --cache-file=FILE       cache test results in FILE
  132.   --help                  print this message
  133.   --no-create             do not create output files
  134.   --quiet, --silent       do not print `checking...' messages
  135.   --version               print the version of autoconf that created configure
  136. Directory and file names:
  137.   --prefix=PREFIX         install architecture-independent files in PREFIX
  138.                           [$ac_default_prefix]
  139.   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  140.                           [same as prefix]
  141.   --bindir=DIR            user executables in DIR [EPREFIX/bin]
  142.   --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  143.   --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  144.   --datadir=DIR           read-only architecture-independent data in DIR
  145.                           [PREFIX/share]
  146.   --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  147.   --sharedstatedir=DIR    modifiable architecture-independent data in DIR
  148.                           [PREFIX/com]
  149.   --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  150.   --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  151.   --includedir=DIR        C header files in DIR [PREFIX/include]
  152.   --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  153.   --infodir=DIR           info documentation in DIR [PREFIX/info]
  154.   --mandir=DIR            man documentation in DIR [PREFIX/man]
  155.   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  156.   --program-prefix=PREFIX prepend PREFIX to installed program names
  157.   --program-suffix=SUFFIX append SUFFIX to installed program names
  158.   --program-transform-name=PROGRAM
  159.                           run sed PROGRAM on installed program names
  160. EOF
  161.     cat << EOF
  162. Host type:
  163.   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  164.   --host=HOST             configure for HOST [guessed]
  165.   --target=TARGET         configure for TARGET [TARGET=HOST]
  166. Features and packages:
  167.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  168.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  169.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  170.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  171.   --x-includes=DIR        X include files are in DIR
  172.   --x-libraries=DIR       X library files are in DIR
  173. EOF
  174.     if test -n "$ac_help"; then
  175.       echo "--enable and --with options recognized:$ac_help"
  176.     fi
  177.     exit 0 ;;
  178.   -host | --host | --hos | --ho)
  179.     ac_prev=host ;;
  180.   -host=* | --host=* | --hos=* | --ho=*)
  181.     host="$ac_optarg" ;;
  182.   -includedir | --includedir | --includedi | --included | --include 
  183.   | --includ | --inclu | --incl | --inc)
  184.     ac_prev=includedir ;;
  185.   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* 
  186.   | --includ=* | --inclu=* | --incl=* | --inc=*)
  187.     includedir="$ac_optarg" ;;
  188.   -infodir | --infodir | --infodi | --infod | --info | --inf)
  189.     ac_prev=infodir ;;
  190.   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  191.     infodir="$ac_optarg" ;;
  192.   -libdir | --libdir | --libdi | --libd)
  193.     ac_prev=libdir ;;
  194.   -libdir=* | --libdir=* | --libdi=* | --libd=*)
  195.     libdir="$ac_optarg" ;;
  196.   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec 
  197.   | --libexe | --libex | --libe)
  198.     ac_prev=libexecdir ;;
  199.   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* 
  200.   | --libexe=* | --libex=* | --libe=*)
  201.     libexecdir="$ac_optarg" ;;
  202.   -localstatedir | --localstatedir | --localstatedi | --localstated 
  203.   | --localstate | --localstat | --localsta | --localst 
  204.   | --locals | --local | --loca | --loc | --lo)
  205.     ac_prev=localstatedir ;;
  206.   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* 
  207.   | --localstate=* | --localstat=* | --localsta=* | --localst=* 
  208.   | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  209.     localstatedir="$ac_optarg" ;;
  210.   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  211.     ac_prev=mandir ;;
  212.   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  213.     mandir="$ac_optarg" ;;
  214.   -nfp | --nfp | --nf)
  215.     # Obsolete; use --without-fp.
  216.     with_fp=no ;;
  217.   -no-create | --no-create | --no-creat | --no-crea | --no-cre 
  218.   | --no-cr | --no-c)
  219.     no_create=yes ;;
  220.   -no-recursion | --no-recursion | --no-recursio | --no-recursi 
  221.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  222.     no_recursion=yes ;;
  223.   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded 
  224.   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc 
  225.   | --oldin | --oldi | --old | --ol | --o)
  226.     ac_prev=oldincludedir ;;
  227.   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* 
  228.   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* 
  229.   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  230.     oldincludedir="$ac_optarg" ;;
  231.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  232.     ac_prev=prefix ;;
  233.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  234.     prefix="$ac_optarg" ;;
  235.   -program-prefix | --program-prefix | --program-prefi | --program-pref 
  236.   | --program-pre | --program-pr | --program-p)
  237.     ac_prev=program_prefix ;;
  238.   -program-prefix=* | --program-prefix=* | --program-prefi=* 
  239.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  240.     program_prefix="$ac_optarg" ;;
  241.   -program-suffix | --program-suffix | --program-suffi | --program-suff 
  242.   | --program-suf | --program-su | --program-s)
  243.     ac_prev=program_suffix ;;
  244.   -program-suffix=* | --program-suffix=* | --program-suffi=* 
  245.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  246.     program_suffix="$ac_optarg" ;;
  247.   -program-transform-name | --program-transform-name 
  248.   | --program-transform-nam | --program-transform-na 
  249.   | --program-transform-n | --program-transform- 
  250.   | --program-transform | --program-transfor 
  251.   | --program-transfo | --program-transf 
  252.   | --program-trans | --program-tran 
  253.   | --progr-tra | --program-tr | --program-t)
  254.     ac_prev=program_transform_name ;;
  255.   -program-transform-name=* | --program-transform-name=* 
  256.   | --program-transform-nam=* | --program-transform-na=* 
  257.   | --program-transform-n=* | --program-transform-=* 
  258.   | --program-transform=* | --program-transfor=* 
  259.   | --program-transfo=* | --program-transf=* 
  260.   | --program-trans=* | --program-tran=* 
  261.   | --progr-tra=* | --program-tr=* | --program-t=*)
  262.     program_transform_name="$ac_optarg" ;;
  263.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  264.   | -silent | --silent | --silen | --sile | --sil)
  265.     silent=yes ;;
  266.   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  267.     ac_prev=sbindir ;;
  268.   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* 
  269.   | --sbi=* | --sb=*)
  270.     sbindir="$ac_optarg" ;;
  271.   -sharedstatedir | --sharedstatedir | --sharedstatedi 
  272.   | --sharedstated | --sharedstate | --sharedstat | --sharedsta 
  273.   | --sharedst | --shareds | --shared | --share | --shar 
  274.   | --sha | --sh)
  275.     ac_prev=sharedstatedir ;;
  276.   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* 
  277.   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* 
  278.   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* 
  279.   | --sha=* | --sh=*)
  280.     sharedstatedir="$ac_optarg" ;;
  281.   -site | --site | --sit)
  282.     ac_prev=site ;;
  283.   -site=* | --site=* | --sit=*)
  284.     site="$ac_optarg" ;;
  285.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  286.     ac_prev=srcdir ;;
  287.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  288.     srcdir="$ac_optarg" ;;
  289.   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf 
  290.   | --syscon | --sysco | --sysc | --sys | --sy)
  291.     ac_prev=sysconfdir ;;
  292.   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* 
  293.   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  294.     sysconfdir="$ac_optarg" ;;
  295.   -target | --target | --targe | --targ | --tar | --ta | --t)
  296.     ac_prev=target ;;
  297.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  298.     target="$ac_optarg" ;;
  299.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  300.     verbose=yes ;;
  301.   -version | --version | --versio | --versi | --vers)
  302.     echo "configure generated by autoconf version 2.13"
  303.     exit 0 ;;
  304.   -with-* | --with-*)
  305.     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  306.     # Reject names that are not valid shell variable names.
  307.     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  308.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  309.     fi
  310.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  311.     case "$ac_option" in
  312.       *=*) ;;
  313.       *) ac_optarg=yes ;;
  314.     esac
  315.     eval "with_${ac_package}='$ac_optarg'" ;;
  316.   -without-* | --without-*)
  317.     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  318.     # Reject names that are not valid shell variable names.
  319.     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  320.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  321.     fi
  322.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  323.     eval "with_${ac_package}=no" ;;
  324.   --x)
  325.     # Obsolete; use --with-x.
  326.     with_x=yes ;;
  327.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu 
  328.   | --x-incl | --x-inc | --x-in | --x-i)
  329.     ac_prev=x_includes ;;
  330.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* 
  331.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  332.     x_includes="$ac_optarg" ;;
  333.   -x-libraries | --x-libraries | --x-librarie | --x-librari 
  334.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  335.     ac_prev=x_libraries ;;
  336.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* 
  337.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  338.     x_libraries="$ac_optarg" ;;
  339.   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  340.     ;;
  341.   *)
  342.     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  343.       echo "configure: warning: $ac_option: invalid host type" 1>&2
  344.     fi
  345.     if test "x$nonopt" != xNONE; then
  346.       { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
  347.     fi
  348.     nonopt="$ac_option"
  349.     ;;
  350.   esac
  351. done
  352. if test -n "$ac_prev"; then
  353.   { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  354. fi
  355. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  356. # File descriptor usage:
  357. # 0 standard input
  358. # 1 file creation
  359. # 2 errors and warnings
  360. # 3 some systems may open it to /dev/tty
  361. # 4 used on the Kubota Titan
  362. # 6 checking for... messages and results
  363. # 5 compiler messages saved in config.log
  364. if test "$silent" = yes; then
  365.   exec 6>/dev/null
  366. else
  367.   exec 6>&1
  368. fi
  369. exec 5>./config.log
  370. echo "
  371. This file contains any messages produced by compilers while
  372. running configure, to aid debugging if configure makes a mistake.
  373. " 1>&5
  374. # Strip out --no-create and --no-recursion so they do not pile up.
  375. # Also quote any args containing shell metacharacters.
  376. ac_configure_args=
  377. for ac_arg
  378. do
  379.   case "$ac_arg" in
  380.   -no-create | --no-create | --no-creat | --no-crea | --no-cre 
  381.   | --no-cr | --no-c) ;;
  382.   -no-recursion | --no-recursion | --no-recursio | --no-recursi 
  383.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  384.   *" "*|*" "*|*[[]~#$^&*(){}\|;<>?]*)
  385.   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  386.   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  387.   esac
  388. done
  389. # NLS nuisances.
  390. # Only set these to C if already set.  These must not be set unconditionally
  391. # because not all systems understand e.g. LANG=C (notably SCO).
  392. # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
  393. # Non-C LC_CTYPE values break the ctype check.
  394. if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  395. if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  396. if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
  397. if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
  398. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  399. rm -rf conftest* confdefs.h
  400. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  401. echo > confdefs.h
  402. # A filename unique to this package, relative to the directory that
  403. # configure is in, which we can look for to find out if srcdir is correct.
  404. ac_unique_file=pcap.c
  405. # Find the source files, if location was not specified.
  406. if test -z "$srcdir"; then
  407.   ac_srcdir_defaulted=yes
  408.   # Try the directory containing this script, then its parent.
  409.   ac_prog=$0
  410.   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  411.   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  412.   srcdir=$ac_confdir
  413.   if test ! -r $srcdir/$ac_unique_file; then
  414.     srcdir=..
  415.   fi
  416. else
  417.   ac_srcdir_defaulted=no
  418. fi
  419. if test ! -r $srcdir/$ac_unique_file; then
  420.   if test "$ac_srcdir_defaulted" = yes; then
  421.     { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  422.   else
  423.     { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  424.   fi
  425. fi
  426. srcdir=`echo "${srcdir}" | sed 's%([^/])/*$%1%'`
  427. # Prefer explicitly selected file to automatically selected ones.
  428. if test -z "$CONFIG_SITE"; then
  429.   if test "x$prefix" != xNONE; then
  430.     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  431.   else
  432.     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  433.   fi
  434. fi
  435. for ac_site_file in $CONFIG_SITE; do
  436.   if test -r "$ac_site_file"; then
  437.     echo "loading site script $ac_site_file"
  438.     . "$ac_site_file"
  439.   fi
  440. done
  441. if test -r "$cache_file"; then
  442.   echo "loading cache $cache_file"
  443.   . $cache_file
  444. else
  445.   echo "creating cache $cache_file"
  446.   > $cache_file
  447. fi
  448. ac_ext=c
  449. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  450. ac_cpp='$CPP $CPPFLAGS'
  451. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  452. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  453. cross_compiling=$ac_cv_prog_cc_cross
  454. ac_exeext=
  455. ac_objext=o
  456. if (echo "testingc"; echo 1,2,3) | grep c >/dev/null; then
  457.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  458.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  459.     ac_n= ac_c='
  460. ' ac_t=' '
  461.   else
  462.     ac_n=-n ac_c= ac_t=
  463.   fi
  464. else
  465.   ac_n= ac_c='c' ac_t=
  466. fi
  467. ac_aux_dir=
  468. for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  469.   if test -f $ac_dir/install-sh; then
  470.     ac_aux_dir=$ac_dir
  471.     ac_install_sh="$ac_aux_dir/install-sh -c"
  472.     break
  473.   elif test -f $ac_dir/install.sh; then
  474.     ac_aux_dir=$ac_dir
  475.     ac_install_sh="$ac_aux_dir/install.sh -c"
  476.     break
  477.   fi
  478. done
  479. if test -z "$ac_aux_dir"; then
  480.   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
  481. fi
  482. ac_config_guess=$ac_aux_dir/config.guess
  483. ac_config_sub=$ac_aux_dir/config.sub
  484. ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
  485. # Do some error checking and defaulting for the host and target type.
  486. # The inputs are:
  487. #    configure --host=HOST --target=TARGET --build=BUILD NONOPT
  488. #
  489. # The rules are:
  490. # 1. You are not allowed to specify --host, --target, and nonopt at the
  491. #    same time.
  492. # 2. Host defaults to nonopt.
  493. # 3. If nonopt is not specified, then host defaults to the current host,
  494. #    as determined by config.guess.
  495. # 4. Target and build default to nonopt.
  496. # 5. If nonopt is not specified, then target and build default to host.
  497. # The aliases save the names the user supplied, while $host etc.
  498. # will get canonicalized.
  499. case $host---$target---$nonopt in
  500. NONE---*---* | *---NONE---* | *---*---NONE) ;;
  501. *) { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } ;;
  502. esac
  503. # Make sure we can run config.sub.
  504. if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
  505. else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
  506. fi
  507. echo $ac_n "checking host system type""... $ac_c" 1>&6
  508. echo "configure:581: checking host system type" >&5
  509. host_alias=$host
  510. case "$host_alias" in
  511. NONE)
  512.   case $nonopt in
  513.   NONE)
  514.     if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
  515.     else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
  516.     fi ;;
  517.   *) host_alias=$nonopt ;;
  518.   esac ;;
  519. esac
  520. host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
  521. host_cpu=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  522. host_vendor=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  523. host_os=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  524. echo "$ac_t""$host" 1>&6
  525. echo $ac_n "checking target system type""... $ac_c" 1>&6
  526. echo "configure:602: checking target system type" >&5
  527. target_alias=$target
  528. case "$target_alias" in
  529. NONE)
  530.   case $nonopt in
  531.   NONE) target_alias=$host_alias ;;
  532.   *) target_alias=$nonopt ;;
  533.   esac ;;
  534. esac
  535. target=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $target_alias`
  536. target_cpu=`echo $target | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  537. target_vendor=`echo $target | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  538. target_os=`echo $target | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  539. echo "$ac_t""$target" 1>&6
  540. echo $ac_n "checking build system type""... $ac_c" 1>&6
  541. echo "configure:620: checking build system type" >&5
  542. build_alias=$build
  543. case "$build_alias" in
  544. NONE)
  545.   case $nonopt in
  546.   NONE) build_alias=$host_alias ;;
  547.   *) build_alias=$nonopt ;;
  548.   esac ;;
  549. esac
  550. build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias`
  551. build_cpu=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  552. build_vendor=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  553. build_os=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  554. echo "$ac_t""$build" 1>&6
  555. test "$host_alias" != "$target_alias" &&
  556.   test "$program_prefix$program_suffix$program_transform_name" = 
  557.     NONENONEs,x,x, &&
  558.   program_prefix=${target_alias}-
  559. umask 002
  560. if test -z "$PWD" ; then
  561. PWD=`pwd`
  562. fi
  563.     
  564.     
  565.     
  566.     # Check whether --with-gcc or --without-gcc was given.
  567. if test "${with_gcc+set}" = set; then
  568.   withval="$with_gcc"
  569.   :
  570. fi
  571.     V_CCOPT="-O"
  572.     V_INCLS=""
  573.     if test "${srcdir}" != "." ; then
  574.     V_INCLS="-I$(srcdir)"
  575.     fi
  576.     if test "${CFLAGS+set}" = set; then
  577.     LBL_CFLAGS="$CFLAGS"
  578.     fi
  579.     if test -z "$CC" ; then
  580.     case "$target_os" in
  581.     bsdi*)
  582.     # Extract the first word of "shlicc2", so it can be a program name with args.
  583. set dummy shlicc2; ac_word=$2
  584. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  585. echo "configure:674: checking for $ac_word" >&5
  586. if eval "test "`echo '$''{'ac_cv_prog_SHLICC2'+set}'`" = set"; then
  587.   echo $ac_n "(cached) $ac_c" 1>&6
  588. else
  589.   if test -n "$SHLICC2"; then
  590.   ac_cv_prog_SHLICC2="$SHLICC2" # Let the user override the test.
  591. else
  592.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  593.   ac_dummy="$PATH"
  594.   for ac_dir in $ac_dummy; do
  595.     test -z "$ac_dir" && ac_dir=.
  596.     if test -f $ac_dir/$ac_word; then
  597.       ac_cv_prog_SHLICC2="yes"
  598.       break
  599.     fi
  600.   done
  601.   IFS="$ac_save_ifs"
  602.   test -z "$ac_cv_prog_SHLICC2" && ac_cv_prog_SHLICC2="no"
  603. fi
  604. fi
  605. SHLICC2="$ac_cv_prog_SHLICC2"
  606. if test -n "$SHLICC2"; then
  607.   echo "$ac_t""$SHLICC2" 1>&6
  608. else
  609.   echo "$ac_t""no" 1>&6
  610. fi
  611.     if test $SHLICC2 = yes ; then
  612.     CC=shlicc2
  613.     export CC
  614.     fi
  615.     ;;
  616.     esac
  617.     fi
  618.     if test -z "$CC" -a "$with_gcc" = no ; then
  619.     CC=cc
  620.     export CC
  621.     fi
  622.     # Extract the first word of "gcc", so it can be a program name with args.
  623. set dummy gcc; ac_word=$2
  624. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  625. echo "configure:715: checking for $ac_word" >&5
  626. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  627.   echo $ac_n "(cached) $ac_c" 1>&6
  628. else
  629.   if test -n "$CC"; then
  630.   ac_cv_prog_CC="$CC" # Let the user override the test.
  631. else
  632.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  633.   ac_dummy="$PATH"
  634.   for ac_dir in $ac_dummy; do
  635.     test -z "$ac_dir" && ac_dir=.
  636.     if test -f $ac_dir/$ac_word; then
  637.       ac_cv_prog_CC="gcc"
  638.       break
  639.     fi
  640.   done
  641.   IFS="$ac_save_ifs"
  642. fi
  643. fi
  644. CC="$ac_cv_prog_CC"
  645. if test -n "$CC"; then
  646.   echo "$ac_t""$CC" 1>&6
  647. else
  648.   echo "$ac_t""no" 1>&6
  649. fi
  650. if test -z "$CC"; then
  651.   # Extract the first word of "cc", so it can be a program name with args.
  652. set dummy cc; ac_word=$2
  653. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  654. echo "configure:745: checking for $ac_word" >&5
  655. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  656.   echo $ac_n "(cached) $ac_c" 1>&6
  657. else
  658.   if test -n "$CC"; then
  659.   ac_cv_prog_CC="$CC" # Let the user override the test.
  660. else
  661.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  662.   ac_prog_rejected=no
  663.   ac_dummy="$PATH"
  664.   for ac_dir in $ac_dummy; do
  665.     test -z "$ac_dir" && ac_dir=.
  666.     if test -f $ac_dir/$ac_word; then
  667.       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
  668.         ac_prog_rejected=yes
  669. continue
  670.       fi
  671.       ac_cv_prog_CC="cc"
  672.       break
  673.     fi
  674.   done
  675.   IFS="$ac_save_ifs"
  676. if test $ac_prog_rejected = yes; then
  677.   # We found a bogon in the path, so make sure we never use it.
  678.   set dummy $ac_cv_prog_CC
  679.   shift
  680.   if test $# -gt 0; then
  681.     # We chose a different compiler from the bogus one.
  682.     # However, it has the same basename, so the bogon will be chosen
  683.     # first if we set CC to just the basename; use the full file name.
  684.     shift
  685.     set dummy "$ac_dir/$ac_word" "$@"
  686.     shift
  687.     ac_cv_prog_CC="$@"
  688.   fi
  689. fi
  690. fi
  691. fi
  692. CC="$ac_cv_prog_CC"
  693. if test -n "$CC"; then
  694.   echo "$ac_t""$CC" 1>&6
  695. else
  696.   echo "$ac_t""no" 1>&6
  697. fi
  698.   if test -z "$CC"; then
  699.     case "`uname -s`" in
  700.     *win32* | *WIN32*)
  701.       # Extract the first word of "cl", so it can be a program name with args.
  702. set dummy cl; ac_word=$2
  703. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  704. echo "configure:796: checking for $ac_word" >&5
  705. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  706.   echo $ac_n "(cached) $ac_c" 1>&6
  707. else
  708.   if test -n "$CC"; then
  709.   ac_cv_prog_CC="$CC" # Let the user override the test.
  710. else
  711.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  712.   ac_dummy="$PATH"
  713.   for ac_dir in $ac_dummy; do
  714.     test -z "$ac_dir" && ac_dir=.
  715.     if test -f $ac_dir/$ac_word; then
  716.       ac_cv_prog_CC="cl"
  717.       break
  718.     fi
  719.   done
  720.   IFS="$ac_save_ifs"
  721. fi
  722. fi
  723. CC="$ac_cv_prog_CC"
  724. if test -n "$CC"; then
  725.   echo "$ac_t""$CC" 1>&6
  726. else
  727.   echo "$ac_t""no" 1>&6
  728. fi
  729.  ;;
  730.     esac
  731.   fi
  732.   test -z "$CC" && { echo "configure: error: no acceptable cc found in $PATH" 1>&2; exit 1; }
  733. fi
  734. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  735. echo "configure:828: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  736. ac_ext=c
  737. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  738. ac_cpp='$CPP $CPPFLAGS'
  739. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  740. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  741. cross_compiling=$ac_cv_prog_cc_cross
  742. cat > conftest.$ac_ext << EOF
  743. #line 839 "configure"
  744. #include "confdefs.h"
  745. main(){return(0);}
  746. EOF
  747. if { (eval echo configure:844: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  748.   ac_cv_prog_cc_works=yes
  749.   # If we can't run a trivial program, we are probably using a cross compiler.
  750.   if (./conftest; exit) 2>/dev/null; then
  751.     ac_cv_prog_cc_cross=no
  752.   else
  753.     ac_cv_prog_cc_cross=yes
  754.   fi
  755. else
  756.   echo "configure: failed program was:" >&5
  757.   cat conftest.$ac_ext >&5
  758.   ac_cv_prog_cc_works=no
  759. fi
  760. rm -fr conftest*
  761. ac_ext=c
  762. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  763. ac_cpp='$CPP $CPPFLAGS'
  764. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  765. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  766. cross_compiling=$ac_cv_prog_cc_cross
  767. echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
  768. if test $ac_cv_prog_cc_works = no; then
  769.   { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  770. fi
  771. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  772. echo "configure:870: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  773. echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  774. cross_compiling=$ac_cv_prog_cc_cross
  775. echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  776. echo "configure:875: checking whether we are using GNU C" >&5
  777. if eval "test "`echo '$''{'ac_cv_prog_gcc'+set}'`" = set"; then
  778.   echo $ac_n "(cached) $ac_c" 1>&6
  779. else
  780.   cat > conftest.c <<EOF
  781. #ifdef __GNUC__
  782.   yes;
  783. #endif
  784. EOF
  785. if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:884: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  786.   ac_cv_prog_gcc=yes
  787. else
  788.   ac_cv_prog_gcc=no
  789. fi
  790. fi
  791. echo "$ac_t""$ac_cv_prog_gcc" 1>&6
  792. if test $ac_cv_prog_gcc = yes; then
  793.   GCC=yes
  794. else
  795.   GCC=
  796. fi
  797. ac_test_CFLAGS="${CFLAGS+set}"
  798. ac_save_CFLAGS="$CFLAGS"
  799. CFLAGS=
  800. echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
  801. echo "configure:903: checking whether ${CC-cc} accepts -g" >&5
  802. if eval "test "`echo '$''{'ac_cv_prog_cc_g'+set}'`" = set"; then
  803.   echo $ac_n "(cached) $ac_c" 1>&6
  804. else
  805.   echo 'void f(){}' > conftest.c
  806. if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  807.   ac_cv_prog_cc_g=yes
  808. else
  809.   ac_cv_prog_cc_g=no
  810. fi
  811. rm -f conftest*
  812. fi
  813. echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
  814. if test "$ac_test_CFLAGS" = set; then
  815.   CFLAGS="$ac_save_CFLAGS"
  816. elif test $ac_cv_prog_cc_g = yes; then
  817.   if test "$GCC" = yes; then
  818.     CFLAGS="-g -O2"
  819.   else
  820.     CFLAGS="-g"
  821.   fi
  822. else
  823.   if test "$GCC" = yes; then
  824.     CFLAGS="-O2"
  825.   else
  826.     CFLAGS=
  827.   fi
  828. fi
  829.     if test "$GCC" = yes ; then
  830.     if test "$SHLICC2" = yes ; then
  831.     ac_cv_lbl_gcc_vers=2
  832.     V_CCOPT="-O2"
  833.     else
  834.     echo $ac_n "checking gcc version""... $ac_c" 1>&6
  835. echo "configure:940: checking gcc version" >&5
  836.     if eval "test "`echo '$''{'ac_cv_lbl_gcc_vers'+set}'`" = set"; then
  837.   echo $ac_n "(cached) $ac_c" 1>&6
  838. else
  839.   ac_cv_lbl_gcc_vers=`$CC -v 2>&1 | 
  840.     sed -e '/^gcc version /!d' 
  841. -e 's/^gcc version //' 
  842. -e 's/ .*//' -e 's/^[^0-9]*//' 
  843. -e 's/..*//'`
  844. fi
  845.     echo "$ac_t""$ac_cv_lbl_gcc_vers" 1>&6
  846.     if test $ac_cv_lbl_gcc_vers -gt 1 ; then
  847.     V_CCOPT="-O2"
  848.     fi
  849.     fi
  850.     else
  851.     echo $ac_n "checking that $CC handles ansi prototypes""... $ac_c" 1>&6
  852. echo "configure:958: checking that $CC handles ansi prototypes" >&5
  853.     if eval "test "`echo '$''{'ac_cv_lbl_cc_ansi_prototypes'+set}'`" = set"; then
  854.   echo $ac_n "(cached) $ac_c" 1>&6
  855. else
  856.   cat > conftest.$ac_ext <<EOF
  857. #line 963 "configure"
  858. #include "confdefs.h"
  859. #include <sys/types.h>
  860. int main() {
  861. int frob(int, char *)
  862. ; return 0; }
  863. EOF
  864. if { (eval echo configure:970: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  865.   rm -rf conftest*
  866.   ac_cv_lbl_cc_ansi_prototypes=yes
  867. else
  868.   echo "configure: failed program was:" >&5
  869.   cat conftest.$ac_ext >&5
  870.   rm -rf conftest*
  871.   ac_cv_lbl_cc_ansi_prototypes=no
  872. fi
  873. rm -f conftest*
  874. fi
  875.     echo "$ac_t""$ac_cv_lbl_cc_ansi_prototypes" 1>&6
  876.     if test $ac_cv_lbl_cc_ansi_prototypes = no ; then
  877.     case "$target_os" in
  878.     hpux*)
  879.     echo $ac_n "checking for HP-UX ansi compiler ($CC -Aa -D_HPUX_SOURCE)""... $ac_c" 1>&6
  880. echo "configure:988: checking for HP-UX ansi compiler ($CC -Aa -D_HPUX_SOURCE)" >&5
  881.     savedcflags="$CFLAGS"
  882.     CFLAGS="-Aa -D_HPUX_SOURCE $CFLAGS"
  883.     if eval "test "`echo '$''{'ac_cv_lbl_cc_hpux_cc_aa'+set}'`" = set"; then
  884.   echo $ac_n "(cached) $ac_c" 1>&6
  885. else
  886.   cat > conftest.$ac_ext <<EOF
  887. #line 995 "configure"
  888. #include "confdefs.h"
  889. #include <sys/types.h>
  890. int main() {
  891. int frob(int, char *)
  892. ; return 0; }
  893. EOF
  894. if { (eval echo configure:1002: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  895.   rm -rf conftest*
  896.   ac_cv_lbl_cc_hpux_cc_aa=yes
  897. else
  898.   echo "configure: failed program was:" >&5
  899.   cat conftest.$ac_ext >&5
  900.   rm -rf conftest*
  901.   ac_cv_lbl_cc_hpux_cc_aa=no
  902. fi
  903. rm -f conftest*
  904. fi
  905.     echo "$ac_t""$ac_cv_lbl_cc_hpux_cc_aa" 1>&6
  906.     if test $ac_cv_lbl_cc_hpux_cc_aa = no ; then
  907.     { echo "configure: error: see the INSTALL doc for more info" 1>&2; exit 1; }
  908.     fi
  909.     CFLAGS="$savedcflags"
  910.     V_CCOPT="-Aa $V_CCOPT"
  911.     cat >> confdefs.h <<EOF
  912. #define _HPUX_SOURCE 1
  913. EOF
  914.     ;;
  915.     *)
  916.     { echo "configure: error: see the INSTALL doc for more info" 1>&2; exit 1; }
  917.     ;;
  918.     esac
  919.     fi
  920.     V_INCLS="$V_INCLS -I/usr/local/include"
  921.     LDFLAGS="$LDFLAGS -L/usr/local/lib"
  922.     case "$target_os" in
  923.     irix*)
  924.     V_CCOPT="$V_CCOPT -xansi -signed -g3"
  925.     ;;
  926.     osf*)
  927.     V_CCOPT="$V_CCOPT -std1 -g3"
  928.     ;;
  929.     ultrix*)
  930.     echo $ac_n "checking that Ultrix $CC hacks const in prototypes""... $ac_c" 1>&6
  931. echo "configure:1046: checking that Ultrix $CC hacks const in prototypes" >&5
  932.     if eval "test "`echo '$''{'ac_cv_lbl_cc_const_proto'+set}'`" = set"; then
  933.   echo $ac_n "(cached) $ac_c" 1>&6
  934. else
  935.   cat > conftest.$ac_ext <<EOF
  936. #line 1051 "configure"
  937. #include "confdefs.h"
  938. #include <sys/types.h>
  939. int main() {
  940. struct a { int b; };
  941.     void c(const struct a *)
  942. ; return 0; }
  943. EOF
  944. if { (eval echo configure:1059: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  945.   rm -rf conftest*
  946.   ac_cv_lbl_cc_const_proto=yes
  947. else
  948.   echo "configure: failed program was:" >&5
  949.   cat conftest.$ac_ext >&5
  950.   rm -rf conftest*
  951.   ac_cv_lbl_cc_const_proto=no
  952. fi
  953. rm -f conftest*
  954. fi
  955.     echo "$ac_t""$ac_cv_lbl_cc_const_proto" 1>&6
  956.     if test $ac_cv_lbl_cc_const_proto = no ; then
  957.     cat >> confdefs.h <<EOF
  958. #define const 
  959. EOF
  960.     fi
  961.     ;;
  962.     esac
  963.     fi
  964. echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
  965. echo "configure:1084: checking how to run the C preprocessor" >&5
  966. # On Suns, sometimes $CPP names a directory.
  967. if test -n "$CPP" && test -d "$CPP"; then
  968.   CPP=
  969. fi
  970. if test -z "$CPP"; then
  971. if eval "test "`echo '$''{'ac_cv_prog_CPP'+set}'`" = set"; then
  972.   echo $ac_n "(cached) $ac_c" 1>&6
  973. else
  974.     # This must be in double quotes, not single quotes, because CPP may get
  975.   # substituted into the Makefile and "${CC-cc}" will confuse make.
  976.   CPP="${CC-cc} -E"
  977.   # On the NeXT, cc -E runs the code through the compiler's parser,
  978.   # not just through cpp.
  979.   cat > conftest.$ac_ext <<EOF
  980. #line 1099 "configure"
  981. #include "confdefs.h"
  982. #include <assert.h>
  983. Syntax Error
  984. EOF
  985. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  986. { (eval echo configure:1105: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  987. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  988. if test -z "$ac_err"; then
  989.   :
  990. else
  991.   echo "$ac_err" >&5
  992.   echo "configure: failed program was:" >&5
  993.   cat conftest.$ac_ext >&5
  994.   rm -rf conftest*
  995.   CPP="${CC-cc} -E -traditional-cpp"
  996.   cat > conftest.$ac_ext <<EOF
  997. #line 1116 "configure"
  998. #include "confdefs.h"
  999. #include <assert.h>
  1000. Syntax Error
  1001. EOF
  1002. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1003. { (eval echo configure:1122: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1004. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1005. if test -z "$ac_err"; then
  1006.   :
  1007. else
  1008.   echo "$ac_err" >&5
  1009.   echo "configure: failed program was:" >&5
  1010.   cat conftest.$ac_ext >&5
  1011.   rm -rf conftest*
  1012.   CPP="${CC-cc} -nologo -E"
  1013.   cat > conftest.$ac_ext <<EOF
  1014. #line 1133 "configure"
  1015. #include "confdefs.h"
  1016. #include <assert.h>
  1017. Syntax Error
  1018. EOF
  1019. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1020. { (eval echo configure:1139: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1021. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1022. if test -z "$ac_err"; then
  1023.   :
  1024. else
  1025.   echo "$ac_err" >&5
  1026.   echo "configure: failed program was:" >&5
  1027.   cat conftest.$ac_ext >&5
  1028.   rm -rf conftest*
  1029.   CPP=/lib/cpp
  1030. fi
  1031. rm -f conftest*
  1032. fi
  1033. rm -f conftest*
  1034. fi
  1035. rm -f conftest*
  1036.   ac_cv_prog_CPP="$CPP"
  1037. fi
  1038.   CPP="$ac_cv_prog_CPP"
  1039. else
  1040.   ac_cv_prog_CPP="$CPP"
  1041. fi
  1042. echo "$ac_t""$CPP" 1>&6
  1043. for ac_hdr in malloc.h sys/ioccom.h sys/sockio.h
  1044. do
  1045. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1046. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1047. echo "configure:1167: checking for $ac_hdr" >&5
  1048. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1049.   echo $ac_n "(cached) $ac_c" 1>&6
  1050. else
  1051.   cat > conftest.$ac_ext <<EOF
  1052. #line 1172 "configure"
  1053. #include "confdefs.h"
  1054. #include <$ac_hdr>
  1055. EOF
  1056. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1057. { (eval echo configure:1177: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1058. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1059. if test -z "$ac_err"; then
  1060.   rm -rf conftest*
  1061.   eval "ac_cv_header_$ac_safe=yes"
  1062. else
  1063.   echo "$ac_err" >&5
  1064.   echo "configure: failed program was:" >&5
  1065.   cat conftest.$ac_ext >&5
  1066.   rm -rf conftest*
  1067.   eval "ac_cv_header_$ac_safe=no"
  1068. fi
  1069. rm -f conftest*
  1070. fi
  1071. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1072.   echo "$ac_t""yes" 1>&6
  1073.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1074.   cat >> confdefs.h <<EOF
  1075. #define $ac_tr_hdr 1
  1076. EOF
  1077.  
  1078. else
  1079.   echo "$ac_t""no" 1>&6
  1080. fi
  1081. done
  1082. if test "$GCC" = yes ; then
  1083.     echo $ac_n "checking for ANSI ioctl definitions""... $ac_c" 1>&6
  1084. echo "configure:1206: checking for ANSI ioctl definitions" >&5
  1085.     if eval "test "`echo '$''{'ac_cv_lbl_gcc_fixincludes'+set}'`" = set"; then
  1086.   echo $ac_n "(cached) $ac_c" 1>&6
  1087. else
  1088.   cat > conftest.$ac_ext <<EOF
  1089. #line 1211 "configure"
  1090. #include "confdefs.h"
  1091. /*
  1092.      * This generates a "duplicate case value" when fixincludes
  1093.      * has not be run.
  1094.      */
  1095. # include <sys/types.h>
  1096. # include <sys/time.h>
  1097. # include <sys/ioctl.h>
  1098. # ifdef HAVE_SYS_IOCCOM_H
  1099. # include <sys/ioccom.h>
  1100. # endif
  1101. int main() {
  1102. switch (0) {
  1103.     case _IO('A', 1):;
  1104.     case _IO('B', 1):;
  1105.     }
  1106. ; return 0; }
  1107. EOF
  1108. if { (eval echo configure:1230: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1109.   rm -rf conftest*
  1110.   ac_cv_lbl_gcc_fixincludes=yes
  1111. else
  1112.   echo "configure: failed program was:" >&5
  1113.   cat conftest.$ac_ext >&5
  1114.   rm -rf conftest*
  1115.   ac_cv_lbl_gcc_fixincludes=no
  1116. fi
  1117. rm -f conftest*
  1118. fi
  1119.     echo "$ac_t""$ac_cv_lbl_gcc_fixincludes" 1>&6
  1120.     if test $ac_cv_lbl_gcc_fixincludes = no ; then
  1121.     # Don't cache failure
  1122.     unset ac_cv_lbl_gcc_fixincludes
  1123.     { echo "configure: error: see the INSTALL for more info" 1>&2; exit 1; }
  1124.     fi
  1125.     fi
  1126. for ac_func in ether_hostton strerror
  1127. do
  1128. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1129. echo "configure:1253: checking for $ac_func" >&5
  1130. if eval "test "`echo '$''{'ac_cv_func_$ac_func'+set}'`" = set"; then
  1131.   echo $ac_n "(cached) $ac_c" 1>&6
  1132. else
  1133.   cat > conftest.$ac_ext <<EOF
  1134. #line 1258 "configure"
  1135. #include "confdefs.h"
  1136. /* System header to define __stub macros and hopefully few prototypes,
  1137.     which can conflict with char $ac_func(); below.  */
  1138. #include <assert.h>
  1139. /* Override any gcc2 internal prototype to avoid an error.  */
  1140. /* We use char because int might match the return type of a gcc2
  1141.     builtin and then its argument prototype would still apply.  */
  1142. char $ac_func();
  1143. int main() {
  1144. /* The GNU C library defines this for functions which it implements
  1145.     to always fail with ENOSYS.  Some functions are actually named
  1146.     something starting with __ and the normal name is an alias.  */
  1147. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1148. choke me
  1149. #else
  1150. $ac_func();
  1151. #endif
  1152. ; return 0; }
  1153. EOF
  1154. if { (eval echo configure:1281: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1155.   rm -rf conftest*
  1156.   eval "ac_cv_func_$ac_func=yes"
  1157. else
  1158.   echo "configure: failed program was:" >&5
  1159.   cat conftest.$ac_ext >&5
  1160.   rm -rf conftest*
  1161.   eval "ac_cv_func_$ac_func=no"
  1162. fi
  1163. rm -f conftest*
  1164. fi
  1165. if eval "test "`echo '$ac_cv_func_'$ac_func`" = yes"; then
  1166.   echo "$ac_t""yes" 1>&6
  1167.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  1168.   cat >> confdefs.h <<EOF
  1169. #define $ac_tr_func 1
  1170. EOF
  1171.  
  1172. else
  1173.   echo "$ac_t""no" 1>&6
  1174. fi
  1175. done
  1176. # Check whether --with-pcap or --without-pcap was given.
  1177. if test "${with_pcap+set}" = set; then
  1178.   withval="$with_pcap"
  1179.   :
  1180. fi
  1181. echo $ac_n "checking packet capture type""... $ac_c" 1>&6
  1182. echo "configure:1313: checking packet capture type" >&5
  1183. if test ! -z "$with_pcap" ; then
  1184. V_PCAP="$withval"
  1185. elif test -r /dev/bpf0 ; then
  1186. V_PCAP=bpf
  1187. elif test -r /usr/include/net/pfilt.h ; then
  1188. V_PCAP=pf
  1189. elif test -r /dev/enet ; then
  1190. V_PCAP=enet
  1191. elif test -r /dev/nit ; then
  1192. V_PCAP=snit
  1193. elif test -r /usr/include/sys/net/nit.h ; then
  1194. V_PCAP=nit
  1195. elif test -r /usr/include/net/raw.h ; then
  1196. V_PCAP=snoop
  1197. elif test -r /usr/include/sys/dlpi.h ; then
  1198. V_PCAP=dlpi
  1199. elif test -r /usr/include/linux/socket.h ; then
  1200. V_PCAP=linux
  1201. elif test -c /dev/bpf0 ; then # check again in case not readable
  1202. V_PCAP=bpf
  1203. elif test -c /dev/enet ; then # check again in case not readable
  1204. V_PCAP=enet
  1205. elif test -c /dev/nit ; then # check again in case not readable
  1206. V_PCAP=snit
  1207. else
  1208. V_PCAP=null
  1209. fi
  1210. echo "$ac_t""$V_PCAP" 1>&6
  1211. case "$V_PCAP" in
  1212. dlpi)
  1213. for ac_hdr in sys/bufmod.h sys/dlpi_ext.h
  1214. do
  1215. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1216. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1217. echo "configure:1350: checking for $ac_hdr" >&5
  1218. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1219.   echo $ac_n "(cached) $ac_c" 1>&6
  1220. else
  1221.   cat > conftest.$ac_ext <<EOF
  1222. #line 1355 "configure"
  1223. #include "confdefs.h"
  1224. #include <$ac_hdr>
  1225. EOF
  1226. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1227. { (eval echo configure:1360: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1228. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1229. if test -z "$ac_err"; then
  1230.   rm -rf conftest*
  1231.   eval "ac_cv_header_$ac_safe=yes"
  1232. else
  1233.   echo "$ac_err" >&5
  1234.   echo "configure: failed program was:" >&5
  1235.   cat conftest.$ac_ext >&5
  1236.   rm -rf conftest*
  1237.   eval "ac_cv_header_$ac_safe=no"
  1238. fi
  1239. rm -f conftest*
  1240. fi
  1241. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1242.   echo "$ac_t""yes" 1>&6
  1243.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1244.   cat >> confdefs.h <<EOF
  1245. #define $ac_tr_hdr 1
  1246. EOF
  1247.  
  1248. else
  1249.   echo "$ac_t""no" 1>&6
  1250. fi
  1251. done
  1252. echo $ac_n "checking for /dev/dlpi device""... $ac_c" 1>&6
  1253. echo "configure:1387: checking for /dev/dlpi device" >&5
  1254. if test -c /dev/dlpi ; then
  1255. echo "$ac_t""yes" 1>&6
  1256. cat >> confdefs.h <<EOF
  1257. #define HAVE_DEV_DLPI 1
  1258. EOF
  1259. else
  1260. echo "$ac_t""no" 1>&6
  1261. dir="/dev/dlpi"
  1262. echo $ac_n "checking for $dir directory""... $ac_c" 1>&6
  1263. echo "configure:1398: checking for $dir directory" >&5
  1264. if test -d $dir ; then
  1265. echo "$ac_t""yes" 1>&6
  1266. cat >> confdefs.h <<EOF
  1267. #define PCAP_DEV_PREFIX "$dir"
  1268. EOF
  1269. else
  1270. echo "$ac_t""no" 1>&6
  1271. fi
  1272. fi
  1273. ;;
  1274. linux)
  1275. for ac_hdr in net/if_arp.h
  1276. do
  1277. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1278. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1279. echo "configure:1416: checking for $ac_hdr" >&5
  1280. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1281.   echo $ac_n "(cached) $ac_c" 1>&6
  1282. else
  1283.   cat > conftest.$ac_ext <<EOF
  1284. #line 1421 "configure"
  1285. #include "confdefs.h"
  1286. #include <$ac_hdr>
  1287. EOF
  1288. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1289. { (eval echo configure:1426: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1290. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1291. if test -z "$ac_err"; then
  1292.   rm -rf conftest*
  1293.   eval "ac_cv_header_$ac_safe=yes"
  1294. else
  1295.   echo "$ac_err" >&5
  1296.   echo "configure: failed program was:" >&5
  1297.   cat conftest.$ac_ext >&5
  1298.   rm -rf conftest*
  1299.   eval "ac_cv_header_$ac_safe=no"
  1300. fi
  1301. rm -f conftest*
  1302. fi
  1303. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1304.   echo "$ac_t""yes" 1>&6
  1305.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1306.   cat >> confdefs.h <<EOF
  1307. #define $ac_tr_hdr 1
  1308. EOF
  1309.  
  1310. else
  1311.   echo "$ac_t""no" 1>&6
  1312. fi
  1313. done
  1314. echo $ac_n "checking Linux kernel version""... $ac_c" 1>&6
  1315. echo "configure:1453: checking Linux kernel version" >&5
  1316. if eval "test "`echo '$''{'ac_cv_linux_vers'+set}'`" = set"; then
  1317.   echo $ac_n "(cached) $ac_c" 1>&6
  1318. else
  1319.   ac_cv_linux_vers=`uname -r 2>&1 | 
  1320. sed -n -e '$s/.* //' -e '$s/..*//p'`
  1321. fi
  1322. echo "$ac_t""$ac_cv_linux_vers" 1>&6
  1323. if test $ac_cv_linux_vers -lt 2 ; then
  1324. { echo "configure: error: version 2 or higher required; see libcap-nessus/INSTALL for more info" 1>&2; exit 1; }
  1325. fi
  1326. ;;
  1327. null)
  1328. echo "configure: warning: cannot determine packet capture interface" 1>&2
  1329. echo "configure: warning: (see libcap-nessus/INSTALL for more info)" 1>&2
  1330. ;;
  1331. esac
  1332. # Check whether --with-flex or --without-flex was given.
  1333. if test "${with_flex+set}" = set; then
  1334.   withval="$with_flex"
  1335.   :
  1336. fi
  1337.     # Check whether --with-bison or --without-bison was given.
  1338. if test "${with_bison+set}" = set; then
  1339.   withval="$with_bison"
  1340.   :
  1341. fi
  1342.     if test "$with_flex" = no ; then
  1343.     V_LEX=lex
  1344.     else
  1345.     for ac_prog in flex
  1346. do
  1347. # Extract the first word of "$ac_prog", so it can be a program name with args.
  1348. set dummy $ac_prog; ac_word=$2
  1349. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1350. echo "configure:1494: checking for $ac_word" >&5
  1351. if eval "test "`echo '$''{'ac_cv_prog_V_LEX'+set}'`" = set"; then
  1352.   echo $ac_n "(cached) $ac_c" 1>&6
  1353. else
  1354.   if test -n "$V_LEX"; then
  1355.   ac_cv_prog_V_LEX="$V_LEX" # Let the user override the test.
  1356. else
  1357.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1358.   ac_dummy="$PATH"
  1359.   for ac_dir in $ac_dummy; do
  1360.     test -z "$ac_dir" && ac_dir=.
  1361.     if test -f $ac_dir/$ac_word; then
  1362.       ac_cv_prog_V_LEX="$ac_prog"
  1363.       break
  1364.     fi
  1365.   done
  1366.   IFS="$ac_save_ifs"
  1367. fi
  1368. fi
  1369. V_LEX="$ac_cv_prog_V_LEX"
  1370. if test -n "$V_LEX"; then
  1371.   echo "$ac_t""$V_LEX" 1>&6
  1372. else
  1373.   echo "$ac_t""no" 1>&6
  1374. fi
  1375. test -n "$V_LEX" && break
  1376. done
  1377. test -n "$V_LEX" || V_LEX="lex"
  1378.     fi
  1379.     if test "$V_LEX" = flex ; then
  1380.     # The -V flag was added in 2.4
  1381.     echo $ac_n "checking for flex 2.4 or higher""... $ac_c" 1>&6
  1382. echo "configure:1528: checking for flex 2.4 or higher" >&5
  1383.     if eval "test "`echo '$''{'ac_cv_lbl_flex_v24'+set}'`" = set"; then
  1384.   echo $ac_n "(cached) $ac_c" 1>&6
  1385. else
  1386.   if flex -V >/dev/null 2>&1; then
  1387. ac_cv_lbl_flex_v24=yes
  1388. else
  1389. ac_cv_lbl_flex_v24=no
  1390. fi
  1391. fi
  1392.     echo "$ac_t""$ac_cv_lbl_flex_v24" 1>&6
  1393.     if test $ac_cv_lbl_flex_v24 = no ; then
  1394.     s="2.4 or higher required"
  1395.     echo "configure: warning: ignoring obsolete flex executable ($s)" 1>&2
  1396.     V_LEX=lex
  1397.     fi
  1398.     fi
  1399.     if test "$with_bison" = no ; then
  1400.     V_YACC=yacc
  1401.     else
  1402.     for ac_prog in bison
  1403. do
  1404. # Extract the first word of "$ac_prog", so it can be a program name with args.
  1405. set dummy $ac_prog; ac_word=$2
  1406. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1407. echo "configure:1554: checking for $ac_word" >&5
  1408. if eval "test "`echo '$''{'ac_cv_prog_V_YACC'+set}'`" = set"; then
  1409.   echo $ac_n "(cached) $ac_c" 1>&6
  1410. else
  1411.   if test -n "$V_YACC"; then
  1412.   ac_cv_prog_V_YACC="$V_YACC" # Let the user override the test.
  1413. else
  1414.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1415.   ac_dummy="$PATH"
  1416.   for ac_dir in $ac_dummy; do
  1417.     test -z "$ac_dir" && ac_dir=.
  1418.     if test -f $ac_dir/$ac_word; then
  1419.       ac_cv_prog_V_YACC="$ac_prog"
  1420.       break
  1421.     fi
  1422.   done
  1423.   IFS="$ac_save_ifs"
  1424. fi
  1425. fi
  1426. V_YACC="$ac_cv_prog_V_YACC"
  1427. if test -n "$V_YACC"; then
  1428.   echo "$ac_t""$V_YACC" 1>&6
  1429. else
  1430.   echo "$ac_t""no" 1>&6
  1431. fi
  1432. test -n "$V_YACC" && break
  1433. done
  1434. test -n "$V_YACC" || V_YACC="yacc"
  1435.     fi
  1436.     if test "$V_YACC" = bison ; then
  1437.     V_YACC="$V_YACC -y"
  1438.     fi
  1439.     if test "$V_LEX" != lex -a "$V_YACC" = yacc -o "$V_LEX" = lex -a "$V_YACC" != yacc ; then
  1440.     echo "configure: warning: don't have both flex and bison; reverting to lex/yacc" 1>&2
  1441.     V_LEX=lex
  1442.     V_YACC=yacc
  1443.     fi
  1444.     if test "$V_LEX" = flex -a -n "pcap_" ; then
  1445.     V_LEX="$V_LEX -Ppcap_"
  1446.     V_YACC="$V_YACC -p pcap_"
  1447.     fi
  1448. # Extract the first word of "$V_LEX", so it can be a program name with args.
  1449. set dummy $V_LEX; ac_word=$2
  1450. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1451. echo "configure:1602: checking for $ac_word" >&5
  1452. if eval "test "`echo '$''{'ac_cv_path_PLEX'+set}'`" = set"; then
  1453.   echo $ac_n "(cached) $ac_c" 1>&6
  1454. else
  1455.   case "$PLEX" in
  1456.   /*)
  1457.   ac_cv_path_PLEX="$PLEX" # Let the user override the test with a path.
  1458.   ;;
  1459.   ?:/*)  
  1460.   ac_cv_path_PLEX="$PLEX" # Let the user override the test with a dos path.
  1461.   ;;
  1462.   *)
  1463.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1464.   ac_dummy="$PATH"
  1465.   for ac_dir in $ac_dummy; do 
  1466.     test -z "$ac_dir" && ac_dir=.
  1467.     if test -f $ac_dir/$ac_word; then
  1468.       ac_cv_path_PLEX="$ac_dir/$ac_word"
  1469.       break
  1470.     fi
  1471.   done
  1472.   IFS="$ac_save_ifs"
  1473.   ;;
  1474. esac
  1475. fi
  1476. PLEX="$ac_cv_path_PLEX"
  1477. if test -n "$PLEX"; then
  1478.   echo "$ac_t""$PLEX" 1>&6
  1479. else
  1480.   echo "$ac_t""no" 1>&6
  1481. fi
  1482. test "x$PLEX" = "x" && { echo "configure: error: *** Neither lex nor flex are installed - can not continue" 1>&2; exit 1; }
  1483. # Extract the first word of "$V_YACC", so it can be a program name with args.
  1484. set dummy $V_YACC; ac_word=$2
  1485. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1486. echo "configure:1641: checking for $ac_word" >&5
  1487. if eval "test "`echo '$''{'ac_cv_path_PYACC'+set}'`" = set"; then
  1488.   echo $ac_n "(cached) $ac_c" 1>&6
  1489. else
  1490.   case "$PYACC" in
  1491.   /*)
  1492.   ac_cv_path_PYACC="$PYACC" # Let the user override the test with a path.
  1493.   ;;
  1494.   ?:/*)  
  1495.   ac_cv_path_PYACC="$PYACC" # Let the user override the test with a dos path.
  1496.   ;;
  1497.   *)
  1498.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1499.   ac_dummy="$PATH"
  1500.   for ac_dir in $ac_dummy; do 
  1501.     test -z "$ac_dir" && ac_dir=.
  1502.     if test -f $ac_dir/$ac_word; then
  1503.       ac_cv_path_PYACC="$ac_dir/$ac_word"
  1504.       break
  1505.     fi
  1506.   done
  1507.   IFS="$ac_save_ifs"
  1508.   ;;
  1509. esac
  1510. fi
  1511. PYACC="$ac_cv_path_PYACC"
  1512. if test -n "$PYACC"; then
  1513.   echo "$ac_t""$PYACC" 1>&6
  1514. else
  1515.   echo "$ac_t""no" 1>&6
  1516. fi
  1517. test "x$PYACC" = "x" && { echo "configure: error: *** Neither yacc nor bison are installed - can not continue" 1>&2; exit 1; }
  1518. case "$target_os" in
  1519. aix*)
  1520. cat >> confdefs.h <<EOF
  1521. #define _SUN 1
  1522. EOF
  1523. ;;
  1524. hpux9*)
  1525. cat >> confdefs.h <<EOF
  1526. #define HAVE_HPUX9 1
  1527. EOF
  1528. ;;
  1529. hpux10.0*)
  1530. ;;
  1531. hpux10.1*)
  1532. ;;
  1533. hpux*)
  1534. cat >> confdefs.h <<EOF
  1535. #define HAVE_HPUX10_20 1
  1536. EOF
  1537. ;;
  1538. sinix*)
  1539. echo $ac_n "checking if SINIX compiler defines sinix""... $ac_c" 1>&6
  1540. echo "configure:1707: checking if SINIX compiler defines sinix" >&5
  1541. if eval "test "`echo '$''{'ac_cv_cc_sinix_defined'+set}'`" = set"; then
  1542.   echo $ac_n "(cached) $ac_c" 1>&6
  1543. else
  1544.   cat > conftest.$ac_ext <<EOF
  1545. #line 1712 "configure"
  1546. #include "confdefs.h"
  1547. int main() {
  1548. int i = sinix;
  1549. ; return 0; }
  1550. EOF
  1551. if { (eval echo configure:1719: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1552.   rm -rf conftest*
  1553.   ac_cv_cc_sinix_defined=yes
  1554. else
  1555.   echo "configure: failed program was:" >&5
  1556.   cat conftest.$ac_ext >&5
  1557.   rm -rf conftest*
  1558.   ac_cv_cc_sinix_defined=no
  1559. fi
  1560. rm -f conftest*
  1561. fi
  1562.     echo "$ac_t""$ac_cv_cc_sinix_defined" 1>&6
  1563.     if test $ac_cv_cc_sinix_defined = no ; then
  1564.     cat >> confdefs.h <<EOF
  1565. #define sinix 1
  1566. EOF
  1567.     fi
  1568. ;;
  1569. solaris*)
  1570. cat >> confdefs.h <<EOF
  1571. #define HAVE_SOLARIS 1
  1572. EOF
  1573. ;;
  1574. linux*)
  1575. V_INCLS="$V_INCLS -Ilinux-include"
  1576. ;;
  1577. esac
  1578. for ac_prog in ranlib
  1579. do
  1580. # Extract the first word of "$ac_prog", so it can be a program name with args.
  1581. set dummy $ac_prog; ac_word=$2
  1582. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1583. echo "configure:1757: checking for $ac_word" >&5
  1584. if eval "test "`echo '$''{'ac_cv_prog_V_RANLIB'+set}'`" = set"; then
  1585.   echo $ac_n "(cached) $ac_c" 1>&6
  1586. else
  1587.   if test -n "$V_RANLIB"; then
  1588.   ac_cv_prog_V_RANLIB="$V_RANLIB" # Let the user override the test.
  1589. else
  1590.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1591.   ac_dummy="$PATH"
  1592.   for ac_dir in $ac_dummy; do
  1593.     test -z "$ac_dir" && ac_dir=.
  1594.     if test -f $ac_dir/$ac_word; then
  1595.       ac_cv_prog_V_RANLIB="$ac_prog"
  1596.       break
  1597.     fi
  1598.   done
  1599.   IFS="$ac_save_ifs"
  1600. fi
  1601. fi
  1602. V_RANLIB="$ac_cv_prog_V_RANLIB"
  1603. if test -n "$V_RANLIB"; then
  1604.   echo "$ac_t""$V_RANLIB" 1>&6
  1605. else
  1606.   echo "$ac_t""no" 1>&6
  1607. fi
  1608. test -n "$V_RANLIB" && break
  1609. done
  1610. test -n "$V_RANLIB" || V_RANLIB="@true"
  1611. rm -f os-proto.h
  1612.     if test "${LBL_CFLAGS+set}" = set; then
  1613.     V_CCOPT="$V_CCOPT ${LBL_CFLAGS}"
  1614.     fi
  1615.     if test -f .devel ; then
  1616.     if test "$GCC" = yes ; then
  1617.     if test "${LBL_CFLAGS+set}" != set; then
  1618.     if test "$ac_cv_prog_cc_g" = yes ; then
  1619.     V_CCOPT="-g $V_CCOPT"
  1620.     fi
  1621.     V_CCOPT="$V_CCOPT -Wall"
  1622.     if test $ac_cv_lbl_gcc_vers -gt 1 ; then
  1623.     V_CCOPT="$V_CCOPT -Wmissing-prototypes -Wstrict-prototypes"
  1624.     fi
  1625.     fi
  1626.     else
  1627.     case "$target_os" in
  1628.     irix6*)
  1629.     V_CCOPT="$V_CCOPT -n32"
  1630.     ;;
  1631.     *)
  1632.     ;;
  1633.     esac
  1634.     fi
  1635.     os=`echo $target_os | sed -e 's/([0-9][0-9]*)[^0-9].*$/1/'`
  1636.     name="lbl/os-$os.h"
  1637.     if test -f $name ; then
  1638.     ln -s $name os-proto.h
  1639.     cat >> confdefs.h <<EOF
  1640. #define HAVE_OS_PROTO_H 1
  1641. EOF
  1642.     else
  1643.     echo "configure: warning: can't find $name" 1>&2
  1644.     fi
  1645.     fi
  1646. echo $ac_n "checking if sockaddr struct has sa_len member""... $ac_c" 1>&6
  1647. echo "configure:1828: checking if sockaddr struct has sa_len member" >&5
  1648.     if eval "test "`echo '$''{'ac_cv_lbl_sockaddr_has_sa_len'+set}'`" = set"; then
  1649.   echo $ac_n "(cached) $ac_c" 1>&6
  1650. else
  1651.   cat > conftest.$ac_ext <<EOF
  1652. #line 1833 "configure"
  1653. #include "confdefs.h"
  1654. # include <sys/types.h>
  1655. # include <sys/socket.h>
  1656. int main() {
  1657. u_int i = sizeof(((struct sockaddr *)0)->sa_len)
  1658. ; return 0; }
  1659. EOF
  1660. if { (eval echo configure:1842: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1661.   rm -rf conftest*
  1662.   ac_cv_lbl_sockaddr_has_sa_len=yes
  1663. else
  1664.   echo "configure: failed program was:" >&5
  1665.   cat conftest.$ac_ext >&5
  1666.   rm -rf conftest*
  1667.   ac_cv_lbl_sockaddr_has_sa_len=no
  1668. fi
  1669. rm -f conftest*
  1670. fi
  1671.     echo "$ac_t""$ac_cv_lbl_sockaddr_has_sa_len" 1>&6
  1672.     if test $ac_cv_lbl_sockaddr_has_sa_len = yes ; then
  1673.     cat >> confdefs.h <<EOF
  1674. #define HAVE_SOCKADDR_SA_LEN 1
  1675. EOF
  1676.     fi
  1677. echo $ac_n "checking if unaligned accesses fail""... $ac_c" 1>&6
  1678. echo "configure:1863: checking if unaligned accesses fail" >&5
  1679.     if eval "test "`echo '$''{'ac_cv_lbl_unaligned_fail'+set}'`" = set"; then
  1680.   echo $ac_n "(cached) $ac_c" 1>&6
  1681. else
  1682.   case "$target_cpu" in
  1683. alpha|hp*|mips|sparc)
  1684. ac_cv_lbl_unaligned_fail=yes
  1685. ;;
  1686. *)
  1687. cat >conftest.c <<EOF
  1688. # include <sys/types.h>
  1689. # include <sys/wait.h>
  1690. # include <stdio.h>
  1691. unsigned char a[5] = { 1, 2, 3, 4, 5 };
  1692. main() {
  1693. unsigned int i;
  1694. pid_t pid;
  1695. int status;
  1696. /* avoid "core dumped" message */
  1697. pid = fork();
  1698. if (pid <  0)
  1699. exit(2);
  1700. if (pid > 0) {
  1701. /* parent */
  1702. pid = waitpid(pid, &status, 0);
  1703. if (pid < 0)
  1704. exit(3);
  1705. exit(!WIFEXITED(status));
  1706. }
  1707. /* child */
  1708. i = *(unsigned int *)&a[1];
  1709. printf("%dn", i);
  1710. exit(0);
  1711. }
  1712. EOF
  1713. ${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS 
  1714.     conftest.c $LIBS >/dev/null 2>&1
  1715. if test ! -x conftest ; then
  1716. ac_cv_lbl_unaligned_fail=yes
  1717. else
  1718. ./conftest >conftest.out
  1719. if test ! -s conftest.out ; then
  1720. ac_cv_lbl_unaligned_fail=yes
  1721. else
  1722. ac_cv_lbl_unaligned_fail=no
  1723. fi
  1724. fi
  1725. rm -f conftest* core core.conftest
  1726. ;;
  1727. esac
  1728. fi
  1729.     echo "$ac_t""$ac_cv_lbl_unaligned_fail" 1>&6
  1730.     if test $ac_cv_lbl_unaligned_fail = yes ; then
  1731.     cat >> confdefs.h <<EOF
  1732. #define LBL_ALIGN 1
  1733. EOF
  1734.     fi
  1735. if test "${srcdir}" = "." ; then
  1736. srcdirprefix=""
  1737. else
  1738. srcdirprefix="./"
  1739. fi
  1740. if test -r ${srcdirprefix}lbl/gnuc.h ; then
  1741. rm -f gnuc.h
  1742. ln -s ${srcdirprefix}lbl/gnuc.h gnuc.h
  1743. fi
  1744. rm -f bpf_filter.c
  1745. if test -f ${srcdirprefix}net/bpf_filter.c
  1746. then
  1747. ln -s ${srcdirprefix}net/bpf_filter.c bpf_filter.c
  1748. else
  1749. ln -s ${srcdirprefix}bpf/net/bpf_filter.c bpf_filter.c
  1750. ln -s ${srcdirprefix}bpf/net net
  1751. fi
  1752. INSTALL="`pwd`/install-sh -c"
  1753. trap '' 1 2 15
  1754. cat > confcache <<EOF
  1755. # This file is a shell script that caches the results of configure
  1756. # tests run on this system so they can be shared between configure
  1757. # scripts and configure runs.  It is not useful on other systems.
  1758. # If it contains results you don't want to keep, you may remove or edit it.
  1759. #
  1760. # By default, configure uses ./config.cache as the cache file,
  1761. # creating it if it does not exist already.  You can give configure
  1762. # the --cache-file=FILE option to use a different cache file; that is
  1763. # what configure does when it calls configure scripts in
  1764. # subdirectories, so they share the cache.
  1765. # Giving --cache-file=/dev/null disables caching, for debugging configure.
  1766. # config.status only pays attention to the cache file if you give it the
  1767. # --recheck option to rerun configure.
  1768. #
  1769. EOF
  1770. # The following way of writing the cache mishandles newlines in values,
  1771. # but we know of no workaround that is simple, portable, and efficient.
  1772. # So, don't put newlines in cache variables' values.
  1773. # Ultrix sh set writes to stderr and can't be redirected directly,
  1774. # and sets the high bit in the cache file unless we assign to the vars.
  1775. (set) 2>&1 |
  1776.   case `(ac_space=' '; set | grep ac_space) 2>&1` in
  1777.   *ac_space= *)
  1778.     # `set' does not quote correctly, so add quotes (double-quote substitution
  1779.     # turns \\ into \, and sed turns \ into ).
  1780.     sed -n 
  1781.       -e "s/'/'\\''/g" 
  1782.       -e "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1='\2'}/p"
  1783.     ;;
  1784.   *)
  1785.     # `set' quotes correctly as required by POSIX, so do not add quotes.
  1786.     sed -n -e 's/^([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*)=(.*)/1=${1=2}/p'
  1787.     ;;
  1788.   esac >> confcache
  1789. if cmp -s $cache_file confcache; then
  1790.   :
  1791. else
  1792.   if test -w $cache_file; then
  1793.     echo "updating cache $cache_file"
  1794.     cat confcache > $cache_file
  1795.   else
  1796.     echo "not updating unwritable cache $cache_file"
  1797.   fi
  1798. fi
  1799. rm -f confcache
  1800. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  1801. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  1802. # Let make expand exec_prefix.
  1803. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  1804. # Any assignment to VPATH causes Sun make to only execute
  1805. # the first set of double-colon rules, so remove it if not needed.
  1806. # If there is a colon in the path, we need to keep it.
  1807. if test "x$srcdir" = x.; then
  1808.   ac_vpsub='/^[  ]*VPATH[  ]*=[^:]*$/d'
  1809. fi
  1810. trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
  1811. # Transform confdefs.h into DEFS.
  1812. # Protect against shell expansion while executing Makefile rules.
  1813. # Protect against Makefile macro expansion.
  1814. cat > conftest.defs <<EOF
  1815. s%#define ([A-Za-z_][A-Za-z0-9_]*) *(.*)%-D1=2%g
  1816. s%[  `~#$^&*(){}\|;'"<>?]%\&%g
  1817. s%[%\&%g
  1818. s%]%\&%g
  1819. s%$%$$%g
  1820. EOF
  1821. DEFS=`sed -f conftest.defs confdefs.h | tr '12' ' '`
  1822. rm -f conftest.defs
  1823. # Without the "./", some shells look in PATH for config.status.
  1824. : ${CONFIG_STATUS=./config.status}
  1825. echo creating $CONFIG_STATUS
  1826. rm -f $CONFIG_STATUS
  1827. cat > $CONFIG_STATUS <<EOF
  1828. #! /bin/sh
  1829. # Generated automatically by configure.
  1830. # Run this file to recreate the current configuration.
  1831. # This directory was configured as follows,
  1832. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1833. #
  1834. # $0 $ac_configure_args
  1835. #
  1836. # Compiler output produced by configure, useful for debugging
  1837. # configure, is in ./config.log if it exists.
  1838. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
  1839. for ac_option
  1840. do
  1841.   case "$ac_option" in
  1842.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1843.     echo "running ${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  1844.     exec ${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  1845.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1846.     echo "$CONFIG_STATUS generated by autoconf version 2.13"
  1847.     exit 0 ;;
  1848.   -help | --help | --hel | --he | --h)
  1849.     echo "$ac_cs_usage"; exit 0 ;;
  1850.   *) echo "$ac_cs_usage"; exit 1 ;;
  1851.   esac
  1852. done
  1853. ac_given_srcdir=$srcdir
  1854. trap 'rm -fr `echo "Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
  1855. EOF
  1856. cat >> $CONFIG_STATUS <<EOF
  1857. # Protect against being on the right side of a sed subst in config.status.
  1858. sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\&%]/\\&/g;
  1859.  s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
  1860. $ac_vpsub
  1861. $extrasub
  1862. s%@SHELL@%$SHELL%g
  1863. s%@CFLAGS@%$CFLAGS%g
  1864. s%@CPPFLAGS@%$CPPFLAGS%g
  1865. s%@CXXFLAGS@%$CXXFLAGS%g
  1866. s%@FFLAGS@%$FFLAGS%g
  1867. s%@DEFS@%$DEFS%g
  1868. s%@LDFLAGS@%$LDFLAGS%g
  1869. s%@LIBS@%$LIBS%g
  1870. s%@exec_prefix@%$exec_prefix%g
  1871. s%@prefix@%$prefix%g
  1872. s%@program_transform_name@%$program_transform_name%g
  1873. s%@bindir@%$bindir%g
  1874. s%@sbindir@%$sbindir%g
  1875. s%@libexecdir@%$libexecdir%g
  1876. s%@datadir@%$datadir%g
  1877. s%@sysconfdir@%$sysconfdir%g
  1878. s%@sharedstatedir@%$sharedstatedir%g
  1879. s%@localstatedir@%$localstatedir%g
  1880. s%@libdir@%$libdir%g
  1881. s%@includedir@%$includedir%g
  1882. s%@oldincludedir@%$oldincludedir%g
  1883. s%@infodir@%$infodir%g
  1884. s%@mandir@%$mandir%g
  1885. s%@host@%$host%g
  1886. s%@host_alias@%$host_alias%g
  1887. s%@host_cpu@%$host_cpu%g
  1888. s%@host_vendor@%$host_vendor%g
  1889. s%@host_os@%$host_os%g
  1890. s%@target@%$target%g
  1891. s%@target_alias@%$target_alias%g
  1892. s%@target_cpu@%$target_cpu%g
  1893. s%@target_vendor@%$target_vendor%g
  1894. s%@target_os@%$target_os%g
  1895. s%@build@%$build%g
  1896. s%@build_alias@%$build_alias%g
  1897. s%@build_cpu@%$build_cpu%g
  1898. s%@build_vendor@%$build_vendor%g
  1899. s%@build_os@%$build_os%g
  1900. s%@SHLICC2@%$SHLICC2%g
  1901. s%@CC@%$CC%g
  1902. s%@CPP@%$CPP%g
  1903. s%@V_LEX@%$V_LEX%g
  1904. s%@V_YACC@%$V_YACC%g
  1905. s%@PLEX@%$PLEX%g
  1906. s%@PYACC@%$PYACC%g
  1907. s%@V_RANLIB@%$V_RANLIB%g
  1908. s%@V_CCOPT@%$V_CCOPT%g
  1909. s%@V_INCLS@%$V_INCLS%g
  1910. s%@V_PCAP@%$V_PCAP%g
  1911. s%@INSTALL@%$INSTALL%g
  1912. CEOF
  1913. EOF
  1914. cat >> $CONFIG_STATUS <<EOF
  1915. # Split the substitutions into bite-sized pieces for seds with
  1916. # small command number limits, like on Digital OSF/1 and HP-UX.
  1917. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
  1918. ac_file=1 # Number of current file.
  1919. ac_beg=1 # First line for current file.
  1920. ac_end=$ac_max_sed_cmds # Line after last line for current file.
  1921. ac_more_lines=:
  1922. ac_sed_cmds=""
  1923. while $ac_more_lines; do
  1924.   if test $ac_beg -gt 1; then
  1925.     sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
  1926.   else
  1927.     sed "${ac_end}q" conftest.subs > conftest.s$ac_file
  1928.   fi
  1929.   if test ! -s conftest.s$ac_file; then
  1930.     ac_more_lines=false
  1931.     rm -f conftest.s$ac_file
  1932.   else
  1933.     if test -z "$ac_sed_cmds"; then
  1934.       ac_sed_cmds="sed -f conftest.s$ac_file"
  1935.     else
  1936.       ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
  1937.     fi
  1938.     ac_file=`expr $ac_file + 1`
  1939.     ac_beg=$ac_end
  1940.     ac_end=`expr $ac_end + $ac_max_sed_cmds`
  1941.   fi
  1942. done
  1943. if test -z "$ac_sed_cmds"; then
  1944.   ac_sed_cmds=cat
  1945. fi
  1946. EOF
  1947. cat >> $CONFIG_STATUS <<EOF
  1948. CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1949. EOF
  1950. cat >> $CONFIG_STATUS <<EOF
  1951. for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  1952.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  1953.   case "$ac_file" in
  1954.   *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
  1955.        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  1956.   *) ac_file_in="${ac_file}.in" ;;
  1957.   esac
  1958.   # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
  1959.   # Remove last slash and all that follows it.  Not all systems have dirname.
  1960.   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1961.   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  1962.     # The file is in a subdirectory.
  1963.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  1964.     ac_dir_suffix="/`echo $ac_dir|sed 's%^./%%'`"
  1965.     # A "../" for each directory in $ac_dir_suffix.
  1966.     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1967.   else
  1968.     ac_dir_suffix= ac_dots=
  1969.   fi
  1970.   case "$ac_given_srcdir" in
  1971.   .)  srcdir=.
  1972.       if test -z "$ac_dots"; then top_srcdir=.
  1973.       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  1974.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1975.   *) # Relative path.
  1976.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1977.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1978.   esac
  1979.   echo creating "$ac_file"
  1980.   rm -f "$ac_file"
  1981.   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  1982.   case "$ac_file" in
  1983.   *Makefile*) ac_comsub="1i\
  1984. # $configure_input" ;;
  1985.   *) ac_comsub= ;;
  1986.   esac
  1987.   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
  1988.   sed -e "$ac_comsub
  1989. s%@configure_input@%$configure_input%g
  1990. s%@srcdir@%$srcdir%g
  1991. s%@top_srcdir@%$top_srcdir%g
  1992. " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
  1993. fi; done
  1994. rm -f conftest.s*
  1995. EOF
  1996. cat >> $CONFIG_STATUS <<EOF
  1997. EOF
  1998. cat >> $CONFIG_STATUS <<EOF
  1999. exit 0
  2000. EOF
  2001. chmod +x $CONFIG_STATUS
  2002. rm -fr confdefs* $ac_clean_files
  2003. test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
  2004. if test -f .devel ; then
  2005. make depend
  2006. fi
  2007. exit 0