"Fossies" - the Fresh Open Source Software Archive

Member "n2n-3.1.1/packages/rpm/configure" (31 Mar 2022, 85624 Bytes) of package /linux/misc/n2n-3.1.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "configure": 3.0_vs_3.1.1.

    1 #! /bin/sh
    2 # Guess values for system-dependent variables and create Makefiles.
    3 # Generated by GNU Autoconf 2.69 for Makefile.in 1.0.
    4 #
    5 #
    6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
    7 #
    8 #
    9 # This configure script is free software; the Free Software Foundation
   10 # gives unlimited permission to copy, distribute and modify it.
   11 ## -------------------- ##
   12 ## M4sh Initialization. ##
   13 ## -------------------- ##
   14 
   15 # Be more Bourne compatible
   16 DUALCASE=1; export DUALCASE # for MKS sh
   17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
   18   emulate sh
   19   NULLCMD=:
   20   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
   21   # is contrary to our usage.  Disable this feature.
   22   alias -g '${1+"$@"}'='"$@"'
   23   setopt NO_GLOB_SUBST
   24 else
   25   case `(set -o) 2>/dev/null` in #(
   26   *posix*) :
   27     set -o posix ;; #(
   28   *) :
   29      ;;
   30 esac
   31 fi
   32 
   33 
   34 as_nl='
   35 '
   36 export as_nl
   37 # Printing a long string crashes Solaris 7 /usr/bin/printf.
   38 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
   39 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
   40 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
   41 # Prefer a ksh shell builtin over an external printf program on Solaris,
   42 # but without wasting forks for bash or zsh.
   43 if test -z "$BASH_VERSION$ZSH_VERSION" \
   44     && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
   45   as_echo='print -r --'
   46   as_echo_n='print -rn --'
   47 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
   48   as_echo='printf %s\n'
   49   as_echo_n='printf %s'
   50 else
   51   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
   52     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
   53     as_echo_n='/usr/ucb/echo -n'
   54   else
   55     as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
   56     as_echo_n_body='eval
   57       arg=$1;
   58       case $arg in #(
   59       *"$as_nl"*)
   60     expr "X$arg" : "X\\(.*\\)$as_nl";
   61     arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
   62       esac;
   63       expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
   64     '
   65     export as_echo_n_body
   66     as_echo_n='sh -c $as_echo_n_body as_echo'
   67   fi
   68   export as_echo_body
   69   as_echo='sh -c $as_echo_body as_echo'
   70 fi
   71 
   72 # The user is always right.
   73 if test "${PATH_SEPARATOR+set}" != set; then
   74   PATH_SEPARATOR=:
   75   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
   76     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
   77       PATH_SEPARATOR=';'
   78   }
   79 fi
   80 
   81 
   82 # IFS
   83 # We need space, tab and new line, in precisely that order.  Quoting is
   84 # there to prevent editors from complaining about space-tab.
   85 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
   86 # splitting by setting IFS to empty value.)
   87 IFS=" ""    $as_nl"
   88 
   89 # Find who we are.  Look in the path if we contain no directory separator.
   90 as_myself=
   91 case $0 in #((
   92   *[\\/]* ) as_myself=$0 ;;
   93   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
   94 for as_dir in $PATH
   95 do
   96   IFS=$as_save_IFS
   97   test -z "$as_dir" && as_dir=.
   98     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
   99   done
  100 IFS=$as_save_IFS
  101 
  102      ;;
  103 esac
  104 # We did not find ourselves, most probably we were run as `sh COMMAND'
  105 # in which case we are not to be found in the path.
  106 if test "x$as_myself" = x; then
  107   as_myself=$0
  108 fi
  109 if test ! -f "$as_myself"; then
  110   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  111   exit 1
  112 fi
  113 
  114 # Unset variables that we do not need and which cause bugs (e.g. in
  115 # pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
  116 # suppresses any "Segmentation fault" message there.  '((' could
  117 # trigger a bug in pdksh 5.2.14.
  118 for as_var in BASH_ENV ENV MAIL MAILPATH
  119 do eval test x\${$as_var+set} = xset \
  120   && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  121 done
  122 PS1='$ '
  123 PS2='> '
  124 PS4='+ '
  125 
  126 # NLS nuisances.
  127 LC_ALL=C
  128 export LC_ALL
  129 LANGUAGE=C
  130 export LANGUAGE
  131 
  132 # CDPATH.
  133 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  134 
  135 # Use a proper internal environment variable to ensure we don't fall
  136   # into an infinite loop, continuously re-executing ourselves.
  137   if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
  138     _as_can_reexec=no; export _as_can_reexec;
  139     # We cannot yet assume a decent shell, so we have to provide a
  140 # neutralization value for shells without unset; and this also
  141 # works around shells that cannot unset nonexistent variables.
  142 # Preserve -v and -x to the replacement shell.
  143 BASH_ENV=/dev/null
  144 ENV=/dev/null
  145 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  146 case $- in # ((((
  147   *v*x* | *x*v* ) as_opts=-vx ;;
  148   *v* ) as_opts=-v ;;
  149   *x* ) as_opts=-x ;;
  150   * ) as_opts= ;;
  151 esac
  152 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  153 # Admittedly, this is quite paranoid, since all the known shells bail
  154 # out after a failed `exec'.
  155 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  156 as_fn_exit 255
  157   fi
  158   # We don't want this to propagate to other subprocesses.
  159           { _as_can_reexec=; unset _as_can_reexec;}
  160 if test "x$CONFIG_SHELL" = x; then
  161   as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
  162   emulate sh
  163   NULLCMD=:
  164   # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
  165   # is contrary to our usage.  Disable this feature.
  166   alias -g '\${1+\"\$@\"}'='\"\$@\"'
  167   setopt NO_GLOB_SUBST
  168 else
  169   case \`(set -o) 2>/dev/null\` in #(
  170   *posix*) :
  171     set -o posix ;; #(
  172   *) :
  173      ;;
  174 esac
  175 fi
  176 "
  177   as_required="as_fn_return () { (exit \$1); }
  178 as_fn_success () { as_fn_return 0; }
  179 as_fn_failure () { as_fn_return 1; }
  180 as_fn_ret_success () { return 0; }
  181 as_fn_ret_failure () { return 1; }
  182 
  183 exitcode=0
  184 as_fn_success || { exitcode=1; echo as_fn_success failed.; }
  185 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
  186 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
  187 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
  188 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
  189 
  190 else
  191   exitcode=1; echo positional parameters were not saved.
  192 fi
  193 test x\$exitcode = x0 || exit 1
  194 test -x / || exit 1"
  195   as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  196   as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  197   eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  198   test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
  199   if (eval "$as_required") 2>/dev/null; then :
  200   as_have_required=yes
  201 else
  202   as_have_required=no
  203 fi
  204   if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
  205 
  206 else
  207   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  208 as_found=false
  209 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  210 do
  211   IFS=$as_save_IFS
  212   test -z "$as_dir" && as_dir=.
  213   as_found=:
  214   case $as_dir in #(
  215      /*)
  216        for as_base in sh bash ksh sh5; do
  217          # Try only shells that exist, to save several forks.
  218          as_shell=$as_dir/$as_base
  219          if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
  220             { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
  221   CONFIG_SHELL=$as_shell as_have_required=yes
  222            if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
  223   break 2
  224 fi
  225 fi
  226        done;;
  227        esac
  228   as_found=false
  229 done
  230 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
  231           { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
  232   CONFIG_SHELL=$SHELL as_have_required=yes
  233 fi; }
  234 IFS=$as_save_IFS
  235 
  236 
  237       if test "x$CONFIG_SHELL" != x; then :
  238   export CONFIG_SHELL
  239              # We cannot yet assume a decent shell, so we have to provide a
  240 # neutralization value for shells without unset; and this also
  241 # works around shells that cannot unset nonexistent variables.
  242 # Preserve -v and -x to the replacement shell.
  243 BASH_ENV=/dev/null
  244 ENV=/dev/null
  245 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  246 case $- in # ((((
  247   *v*x* | *x*v* ) as_opts=-vx ;;
  248   *v* ) as_opts=-v ;;
  249   *x* ) as_opts=-x ;;
  250   * ) as_opts= ;;
  251 esac
  252 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  253 # Admittedly, this is quite paranoid, since all the known shells bail
  254 # out after a failed `exec'.
  255 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  256 exit 255
  257 fi
  258 
  259     if test x$as_have_required = xno; then :
  260   $as_echo "$0: This script requires a shell more modern than all"
  261   $as_echo "$0: the shells that I found on your system."
  262   if test x${ZSH_VERSION+set} = xset ; then
  263     $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
  264     $as_echo "$0: be upgraded to zsh 4.3.4 or later."
  265   else
  266     $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
  267 $0: including any error possibly output before this
  268 $0: message. Then install a modern shell, or manually run
  269 $0: the script under such a shell if you do have one."
  270   fi
  271   exit 1
  272 fi
  273 fi
  274 fi
  275 SHELL=${CONFIG_SHELL-/bin/sh}
  276 export SHELL
  277 # Unset more variables known to interfere with behavior of common tools.
  278 CLICOLOR_FORCE= GREP_OPTIONS=
  279 unset CLICOLOR_FORCE GREP_OPTIONS
  280 
  281 ## --------------------- ##
  282 ## M4sh Shell Functions. ##
  283 ## --------------------- ##
  284 # as_fn_unset VAR
  285 # ---------------
  286 # Portably unset VAR.
  287 as_fn_unset ()
  288 {
  289   { eval $1=; unset $1;}
  290 }
  291 as_unset=as_fn_unset
  292 
  293 # as_fn_set_status STATUS
  294 # -----------------------
  295 # Set $? to STATUS, without forking.
  296 as_fn_set_status ()
  297 {
  298   return $1
  299 } # as_fn_set_status
  300 
  301 # as_fn_exit STATUS
  302 # -----------------
  303 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  304 as_fn_exit ()
  305 {
  306   set +e
  307   as_fn_set_status $1
  308   exit $1
  309 } # as_fn_exit
  310 
  311 # as_fn_mkdir_p
  312 # -------------
  313 # Create "$as_dir" as a directory, including parents if necessary.
  314 as_fn_mkdir_p ()
  315 {
  316 
  317   case $as_dir in #(
  318   -*) as_dir=./$as_dir;;
  319   esac
  320   test -d "$as_dir" || eval $as_mkdir_p || {
  321     as_dirs=
  322     while :; do
  323       case $as_dir in #(
  324       *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  325       *) as_qdir=$as_dir;;
  326       esac
  327       as_dirs="'$as_qdir' $as_dirs"
  328       as_dir=`$as_dirname -- "$as_dir" ||
  329 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  330      X"$as_dir" : 'X\(//\)[^/]' \| \
  331      X"$as_dir" : 'X\(//\)$' \| \
  332      X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  333 $as_echo X"$as_dir" |
  334     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  335         s//\1/
  336         q
  337       }
  338       /^X\(\/\/\)[^/].*/{
  339         s//\1/
  340         q
  341       }
  342       /^X\(\/\/\)$/{
  343         s//\1/
  344         q
  345       }
  346       /^X\(\/\).*/{
  347         s//\1/
  348         q
  349       }
  350       s/.*/./; q'`
  351       test -d "$as_dir" && break
  352     done
  353     test -z "$as_dirs" || eval "mkdir $as_dirs"
  354   } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
  355 
  356 
  357 } # as_fn_mkdir_p
  358 
  359 # as_fn_executable_p FILE
  360 # -----------------------
  361 # Test if FILE is an executable regular file.
  362 as_fn_executable_p ()
  363 {
  364   test -f "$1" && test -x "$1"
  365 } # as_fn_executable_p
  366 # as_fn_append VAR VALUE
  367 # ----------------------
  368 # Append the text in VALUE to the end of the definition contained in VAR. Take
  369 # advantage of any shell optimizations that allow amortized linear growth over
  370 # repeated appends, instead of the typical quadratic growth present in naive
  371 # implementations.
  372 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  373   eval 'as_fn_append ()
  374   {
  375     eval $1+=\$2
  376   }'
  377 else
  378   as_fn_append ()
  379   {
  380     eval $1=\$$1\$2
  381   }
  382 fi # as_fn_append
  383 
  384 # as_fn_arith ARG...
  385 # ------------------
  386 # Perform arithmetic evaluation on the ARGs, and store the result in the
  387 # global $as_val. Take advantage of shells that can avoid forks. The arguments
  388 # must be portable across $(()) and expr.
  389 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  390   eval 'as_fn_arith ()
  391   {
  392     as_val=$(( $* ))
  393   }'
  394 else
  395   as_fn_arith ()
  396   {
  397     as_val=`expr "$@" || test $? -eq 1`
  398   }
  399 fi # as_fn_arith
  400 
  401 
  402 # as_fn_error STATUS ERROR [LINENO LOG_FD]
  403 # ----------------------------------------
  404 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  405 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  406 # script with STATUS, using 1 if that was 0.
  407 as_fn_error ()
  408 {
  409   as_status=$1; test $as_status -eq 0 && as_status=1
  410   if test "$4"; then
  411     as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  412     $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  413   fi
  414   $as_echo "$as_me: error: $2" >&2
  415   as_fn_exit $as_status
  416 } # as_fn_error
  417 
  418 if expr a : '\(a\)' >/dev/null 2>&1 &&
  419    test "X`expr 00001 : '.*\(...\)'`" = X001; then
  420   as_expr=expr
  421 else
  422   as_expr=false
  423 fi
  424 
  425 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  426   as_basename=basename
  427 else
  428   as_basename=false
  429 fi
  430 
  431 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  432   as_dirname=dirname
  433 else
  434   as_dirname=false
  435 fi
  436 
  437 as_me=`$as_basename -- "$0" ||
  438 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  439      X"$0" : 'X\(//\)$' \| \
  440      X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  441 $as_echo X/"$0" |
  442     sed '/^.*\/\([^/][^/]*\)\/*$/{
  443         s//\1/
  444         q
  445       }
  446       /^X\/\(\/\/\)$/{
  447         s//\1/
  448         q
  449       }
  450       /^X\/\(\/\).*/{
  451         s//\1/
  452         q
  453       }
  454       s/.*/./; q'`
  455 
  456 # Avoid depending upon Character Ranges.
  457 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  458 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  459 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  460 as_cr_digits='0123456789'
  461 as_cr_alnum=$as_cr_Letters$as_cr_digits
  462 
  463 
  464   as_lineno_1=$LINENO as_lineno_1a=$LINENO
  465   as_lineno_2=$LINENO as_lineno_2a=$LINENO
  466   eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
  467   test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
  468   # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
  469   sed -n '
  470     p
  471     /[$]LINENO/=
  472   ' <$as_myself |
  473     sed '
  474       s/[$]LINENO.*/&-/
  475       t lineno
  476       b
  477       :lineno
  478       N
  479       :loop
  480       s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
  481       t loop
  482       s/-\n.*//
  483     ' >$as_me.lineno &&
  484   chmod +x "$as_me.lineno" ||
  485     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
  486 
  487   # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
  488   # already done that, so ensure we don't try to do so again and fall
  489   # in an infinite loop.  This has already happened in practice.
  490   _as_can_reexec=no; export _as_can_reexec
  491   # Don't try to exec as it changes $[0], causing all sort of problems
  492   # (the dirname of $[0] is not the place where we might find the
  493   # original and so on.  Autoconf is especially sensitive to this).
  494   . "./$as_me.lineno"
  495   # Exit status is that of the last command.
  496   exit
  497 }
  498 
  499 ECHO_C= ECHO_N= ECHO_T=
  500 case `echo -n x` in #(((((
  501 -n*)
  502   case `echo 'xy\c'` in
  503   *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  504   xy)  ECHO_C='\c';;
  505   *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
  506        ECHO_T=' ';;
  507   esac;;
  508 *)
  509   ECHO_N='-n';;
  510 esac
  511 
  512 rm -f conf$$ conf$$.exe conf$$.file
  513 if test -d conf$$.dir; then
  514   rm -f conf$$.dir/conf$$.file
  515 else
  516   rm -f conf$$.dir
  517   mkdir conf$$.dir 2>/dev/null
  518 fi
  519 if (echo >conf$$.file) 2>/dev/null; then
  520   if ln -s conf$$.file conf$$ 2>/dev/null; then
  521     as_ln_s='ln -s'
  522     # ... but there are two gotchas:
  523     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  524     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  525     # In both cases, we have to default to `cp -pR'.
  526     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  527       as_ln_s='cp -pR'
  528   elif ln conf$$.file conf$$ 2>/dev/null; then
  529     as_ln_s=ln
  530   else
  531     as_ln_s='cp -pR'
  532   fi
  533 else
  534   as_ln_s='cp -pR'
  535 fi
  536 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  537 rmdir conf$$.dir 2>/dev/null
  538 
  539 if mkdir -p . 2>/dev/null; then
  540   as_mkdir_p='mkdir -p "$as_dir"'
  541 else
  542   test -d ./-p && rmdir ./-p
  543   as_mkdir_p=false
  544 fi
  545 
  546 as_test_x='test -x'
  547 as_executable_p=as_fn_executable_p
  548 
  549 # Sed expression to map a string onto a valid CPP name.
  550 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  551 
  552 # Sed expression to map a string onto a valid variable name.
  553 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  554 
  555 
  556 test -n "$DJDIR" || exec 7<&0 </dev/null
  557 exec 6>&1
  558 
  559 # Name of the host.
  560 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
  561 # so uname gets run too.
  562 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  563 
  564 #
  565 # Initializations.
  566 #
  567 ac_default_prefix=/usr/local
  568 ac_clean_files=
  569 ac_config_libobj_dir=.
  570 LIBOBJS=
  571 cross_compiling=no
  572 subdirs=
  573 MFLAGS=
  574 MAKEFLAGS=
  575 
  576 # Identity of this package.
  577 PACKAGE_NAME='Makefile.in'
  578 PACKAGE_TARNAME='makefile-in'
  579 PACKAGE_VERSION='1.0'
  580 PACKAGE_STRING='Makefile.in 1.0'
  581 PACKAGE_BUGREPORT=''
  582 PACKAGE_URL=''
  583 
  584 ac_subst_vars='LTLIBOBJS
  585 LIBOBJS
  586 RPM_SIGN_CMD
  587 DATE
  588 EXTN
  589 N2N_VERSION_RPM
  590 MACHINE
  591 APP
  592 target_alias
  593 host_alias
  594 build_alias
  595 LIBS
  596 ECHO_T
  597 ECHO_N
  598 ECHO_C
  599 DEFS
  600 mandir
  601 localedir
  602 libdir
  603 psdir
  604 pdfdir
  605 dvidir
  606 htmldir
  607 infodir
  608 docdir
  609 oldincludedir
  610 includedir
  611 runstatedir
  612 localstatedir
  613 sharedstatedir
  614 sysconfdir
  615 datadir
  616 datarootdir
  617 libexecdir
  618 sbindir
  619 bindir
  620 program_transform_name
  621 prefix
  622 exec_prefix
  623 PACKAGE_URL
  624 PACKAGE_BUGREPORT
  625 PACKAGE_STRING
  626 PACKAGE_VERSION
  627 PACKAGE_TARNAME
  628 PACKAGE_NAME
  629 PATH_SEPARATOR
  630 SHELL'
  631 ac_subst_files=''
  632 ac_user_opts='
  633 enable_option_checking
  634 '
  635       ac_precious_vars='build_alias
  636 host_alias
  637 target_alias'
  638 
  639 
  640 # Initialize some variables set by options.
  641 ac_init_help=
  642 ac_init_version=false
  643 ac_unrecognized_opts=
  644 ac_unrecognized_sep=
  645 # The variables have the same names as the options, with
  646 # dashes changed to underlines.
  647 cache_file=/dev/null
  648 exec_prefix=NONE
  649 no_create=
  650 no_recursion=
  651 prefix=NONE
  652 program_prefix=NONE
  653 program_suffix=NONE
  654 program_transform_name=s,x,x,
  655 silent=
  656 site=
  657 srcdir=
  658 verbose=
  659 x_includes=NONE
  660 x_libraries=NONE
  661 
  662 # Installation directory options.
  663 # These are left unexpanded so users can "make install exec_prefix=/foo"
  664 # and all the variables that are supposed to be based on exec_prefix
  665 # by default will actually change.
  666 # Use braces instead of parens because sh, perl, etc. also accept them.
  667 # (The list follows the same order as the GNU Coding Standards.)
  668 bindir='${exec_prefix}/bin'
  669 sbindir='${exec_prefix}/sbin'
  670 libexecdir='${exec_prefix}/libexec'
  671 datarootdir='${prefix}/share'
  672 datadir='${datarootdir}'
  673 sysconfdir='${prefix}/etc'
  674 sharedstatedir='${prefix}/com'
  675 localstatedir='${prefix}/var'
  676 runstatedir='${localstatedir}/run'
  677 includedir='${prefix}/include'
  678 oldincludedir='/usr/include'
  679 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  680 infodir='${datarootdir}/info'
  681 htmldir='${docdir}'
  682 dvidir='${docdir}'
  683 pdfdir='${docdir}'
  684 psdir='${docdir}'
  685 libdir='${exec_prefix}/lib'
  686 localedir='${datarootdir}/locale'
  687 mandir='${datarootdir}/man'
  688 
  689 ac_prev=
  690 ac_dashdash=
  691 for ac_option
  692 do
  693   # If the previous option needs an argument, assign it.
  694   if test -n "$ac_prev"; then
  695     eval $ac_prev=\$ac_option
  696     ac_prev=
  697     continue
  698   fi
  699 
  700   case $ac_option in
  701   *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  702   *=)   ac_optarg= ;;
  703   *)    ac_optarg=yes ;;
  704   esac
  705 
  706   # Accept the important Cygnus configure options, so we can diagnose typos.
  707 
  708   case $ac_dashdash$ac_option in
  709   --)
  710     ac_dashdash=yes ;;
  711 
  712   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  713     ac_prev=bindir ;;
  714   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  715     bindir=$ac_optarg ;;
  716 
  717   -build | --build | --buil | --bui | --bu)
  718     ac_prev=build_alias ;;
  719   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  720     build_alias=$ac_optarg ;;
  721 
  722   -cache-file | --cache-file | --cache-fil | --cache-fi \
  723   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  724     ac_prev=cache_file ;;
  725   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  726   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  727     cache_file=$ac_optarg ;;
  728 
  729   --config-cache | -C)
  730     cache_file=config.cache ;;
  731 
  732   -datadir | --datadir | --datadi | --datad)
  733     ac_prev=datadir ;;
  734   -datadir=* | --datadir=* | --datadi=* | --datad=*)
  735     datadir=$ac_optarg ;;
  736 
  737   -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
  738   | --dataroo | --dataro | --datar)
  739     ac_prev=datarootdir ;;
  740   -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
  741   | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
  742     datarootdir=$ac_optarg ;;
  743 
  744   -disable-* | --disable-*)
  745     ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  746     # Reject names that are not valid shell variable names.
  747     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  748       as_fn_error $? "invalid feature name: $ac_useropt"
  749     ac_useropt_orig=$ac_useropt
  750     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  751     case $ac_user_opts in
  752       *"
  753 "enable_$ac_useropt"
  754 "*) ;;
  755       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
  756      ac_unrecognized_sep=', ';;
  757     esac
  758     eval enable_$ac_useropt=no ;;
  759 
  760   -docdir | --docdir | --docdi | --doc | --do)
  761     ac_prev=docdir ;;
  762   -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
  763     docdir=$ac_optarg ;;
  764 
  765   -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
  766     ac_prev=dvidir ;;
  767   -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
  768     dvidir=$ac_optarg ;;
  769 
  770   -enable-* | --enable-*)
  771     ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  772     # Reject names that are not valid shell variable names.
  773     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  774       as_fn_error $? "invalid feature name: $ac_useropt"
  775     ac_useropt_orig=$ac_useropt
  776     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  777     case $ac_user_opts in
  778       *"
  779 "enable_$ac_useropt"
  780 "*) ;;
  781       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
  782      ac_unrecognized_sep=', ';;
  783     esac
  784     eval enable_$ac_useropt=\$ac_optarg ;;
  785 
  786   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  787   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  788   | --exec | --exe | --ex)
  789     ac_prev=exec_prefix ;;
  790   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  791   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  792   | --exec=* | --exe=* | --ex=*)
  793     exec_prefix=$ac_optarg ;;
  794 
  795   -gas | --gas | --ga | --g)
  796     # Obsolete; use --with-gas.
  797     with_gas=yes ;;
  798 
  799   -help | --help | --hel | --he | -h)
  800     ac_init_help=long ;;
  801   -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
  802     ac_init_help=recursive ;;
  803   -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
  804     ac_init_help=short ;;
  805 
  806   -host | --host | --hos | --ho)
  807     ac_prev=host_alias ;;
  808   -host=* | --host=* | --hos=* | --ho=*)
  809     host_alias=$ac_optarg ;;
  810 
  811   -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
  812     ac_prev=htmldir ;;
  813   -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
  814   | --ht=*)
  815     htmldir=$ac_optarg ;;
  816 
  817   -includedir | --includedir | --includedi | --included | --include \
  818   | --includ | --inclu | --incl | --inc)
  819     ac_prev=includedir ;;
  820   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  821   | --includ=* | --inclu=* | --incl=* | --inc=*)
  822     includedir=$ac_optarg ;;
  823 
  824   -infodir | --infodir | --infodi | --infod | --info | --inf)
  825     ac_prev=infodir ;;
  826   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  827     infodir=$ac_optarg ;;
  828 
  829   -libdir | --libdir | --libdi | --libd)
  830     ac_prev=libdir ;;
  831   -libdir=* | --libdir=* | --libdi=* | --libd=*)
  832     libdir=$ac_optarg ;;
  833 
  834   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  835   | --libexe | --libex | --libe)
  836     ac_prev=libexecdir ;;
  837   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  838   | --libexe=* | --libex=* | --libe=*)
  839     libexecdir=$ac_optarg ;;
  840 
  841   -localedir | --localedir | --localedi | --localed | --locale)
  842     ac_prev=localedir ;;
  843   -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
  844     localedir=$ac_optarg ;;
  845 
  846   -localstatedir | --localstatedir | --localstatedi | --localstated \
  847   | --localstate | --localstat | --localsta | --localst | --locals)
  848     ac_prev=localstatedir ;;
  849   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  850   | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
  851     localstatedir=$ac_optarg ;;
  852 
  853   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  854     ac_prev=mandir ;;
  855   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  856     mandir=$ac_optarg ;;
  857 
  858   -nfp | --nfp | --nf)
  859     # Obsolete; use --without-fp.
  860     with_fp=no ;;
  861 
  862   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  863   | --no-cr | --no-c | -n)
  864     no_create=yes ;;
  865 
  866   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  867   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  868     no_recursion=yes ;;
  869 
  870   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  871   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  872   | --oldin | --oldi | --old | --ol | --o)
  873     ac_prev=oldincludedir ;;
  874   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  875   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  876   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  877     oldincludedir=$ac_optarg ;;
  878 
  879   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  880     ac_prev=prefix ;;
  881   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  882     prefix=$ac_optarg ;;
  883 
  884   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  885   | --program-pre | --program-pr | --program-p)
  886     ac_prev=program_prefix ;;
  887   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  888   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  889     program_prefix=$ac_optarg ;;
  890 
  891   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  892   | --program-suf | --program-su | --program-s)
  893     ac_prev=program_suffix ;;
  894   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  895   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  896     program_suffix=$ac_optarg ;;
  897 
  898   -program-transform-name | --program-transform-name \
  899   | --program-transform-nam | --program-transform-na \
  900   | --program-transform-n | --program-transform- \
  901   | --program-transform | --program-transfor \
  902   | --program-transfo | --program-transf \
  903   | --program-trans | --program-tran \
  904   | --progr-tra | --program-tr | --program-t)
  905     ac_prev=program_transform_name ;;
  906   -program-transform-name=* | --program-transform-name=* \
  907   | --program-transform-nam=* | --program-transform-na=* \
  908   | --program-transform-n=* | --program-transform-=* \
  909   | --program-transform=* | --program-transfor=* \
  910   | --program-transfo=* | --program-transf=* \
  911   | --program-trans=* | --program-tran=* \
  912   | --progr-tra=* | --program-tr=* | --program-t=*)
  913     program_transform_name=$ac_optarg ;;
  914 
  915   -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
  916     ac_prev=pdfdir ;;
  917   -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
  918     pdfdir=$ac_optarg ;;
  919 
  920   -psdir | --psdir | --psdi | --psd | --ps)
  921     ac_prev=psdir ;;
  922   -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
  923     psdir=$ac_optarg ;;
  924 
  925   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  926   | -silent | --silent | --silen | --sile | --sil)
  927     silent=yes ;;
  928 
  929   -runstatedir | --runstatedir | --runstatedi | --runstated \
  930   | --runstate | --runstat | --runsta | --runst | --runs \
  931   | --run | --ru | --r)
  932     ac_prev=runstatedir ;;
  933   -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
  934   | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
  935   | --run=* | --ru=* | --r=*)
  936     runstatedir=$ac_optarg ;;
  937 
  938   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  939     ac_prev=sbindir ;;
  940   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  941   | --sbi=* | --sb=*)
  942     sbindir=$ac_optarg ;;
  943 
  944   -sharedstatedir | --sharedstatedir | --sharedstatedi \
  945   | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  946   | --sharedst | --shareds | --shared | --share | --shar \
  947   | --sha | --sh)
  948     ac_prev=sharedstatedir ;;
  949   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  950   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  951   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  952   | --sha=* | --sh=*)
  953     sharedstatedir=$ac_optarg ;;
  954 
  955   -site | --site | --sit)
  956     ac_prev=site ;;
  957   -site=* | --site=* | --sit=*)
  958     site=$ac_optarg ;;
  959 
  960   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  961     ac_prev=srcdir ;;
  962   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  963     srcdir=$ac_optarg ;;
  964 
  965   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  966   | --syscon | --sysco | --sysc | --sys | --sy)
  967     ac_prev=sysconfdir ;;
  968   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  969   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  970     sysconfdir=$ac_optarg ;;
  971 
  972   -target | --target | --targe | --targ | --tar | --ta | --t)
  973     ac_prev=target_alias ;;
  974   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  975     target_alias=$ac_optarg ;;
  976 
  977   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  978     verbose=yes ;;
  979 
  980   -version | --version | --versio | --versi | --vers | -V)
  981     ac_init_version=: ;;
  982 
  983   -with-* | --with-*)
  984     ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  985     # Reject names that are not valid shell variable names.
  986     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  987       as_fn_error $? "invalid package name: $ac_useropt"
  988     ac_useropt_orig=$ac_useropt
  989     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  990     case $ac_user_opts in
  991       *"
  992 "with_$ac_useropt"
  993 "*) ;;
  994       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
  995      ac_unrecognized_sep=', ';;
  996     esac
  997     eval with_$ac_useropt=\$ac_optarg ;;
  998 
  999   -without-* | --without-*)
 1000     ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 1001     # Reject names that are not valid shell variable names.
 1002     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 1003       as_fn_error $? "invalid package name: $ac_useropt"
 1004     ac_useropt_orig=$ac_useropt
 1005     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 1006     case $ac_user_opts in
 1007       *"
 1008 "with_$ac_useropt"
 1009 "*) ;;
 1010       *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 1011      ac_unrecognized_sep=', ';;
 1012     esac
 1013     eval with_$ac_useropt=no ;;
 1014 
 1015   --x)
 1016     # Obsolete; use --with-x.
 1017     with_x=yes ;;
 1018 
 1019   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 1020   | --x-incl | --x-inc | --x-in | --x-i)
 1021     ac_prev=x_includes ;;
 1022   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 1023   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
 1024     x_includes=$ac_optarg ;;
 1025 
 1026   -x-libraries | --x-libraries | --x-librarie | --x-librari \
 1027   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
 1028     ac_prev=x_libraries ;;
 1029   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
 1030   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 1031     x_libraries=$ac_optarg ;;
 1032 
 1033   -*) as_fn_error $? "unrecognized option: \`$ac_option'
 1034 Try \`$0 --help' for more information"
 1035     ;;
 1036 
 1037   *=*)
 1038     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 1039     # Reject names that are not valid shell variable names.
 1040     case $ac_envvar in #(
 1041       '' | [0-9]* | *[!_$as_cr_alnum]* )
 1042       as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
 1043     esac
 1044     eval $ac_envvar=\$ac_optarg
 1045     export $ac_envvar ;;
 1046 
 1047   *)
 1048     # FIXME: should be removed in autoconf 3.0.
 1049     $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 1050     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 1051       $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 1052     : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
 1053     ;;
 1054 
 1055   esac
 1056 done
 1057 
 1058 if test -n "$ac_prev"; then
 1059   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 1060   as_fn_error $? "missing argument to $ac_option"
 1061 fi
 1062 
 1063 if test -n "$ac_unrecognized_opts"; then
 1064   case $enable_option_checking in
 1065     no) ;;
 1066     fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
 1067     *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 1068   esac
 1069 fi
 1070 
 1071 # Check all directory arguments for consistency.
 1072 for ac_var in   exec_prefix prefix bindir sbindir libexecdir datarootdir \
 1073         datadir sysconfdir sharedstatedir localstatedir includedir \
 1074         oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 1075         libdir localedir mandir runstatedir
 1076 do
 1077   eval ac_val=\$$ac_var
 1078   # Remove trailing slashes.
 1079   case $ac_val in
 1080     */ )
 1081       ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 1082       eval $ac_var=\$ac_val;;
 1083   esac
 1084   # Be sure to have absolute directory names.
 1085   case $ac_val in
 1086     [\\/$]* | ?:[\\/]* )  continue;;
 1087     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 1088   esac
 1089   as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 1090 done
 1091 
 1092 # There might be people who depend on the old broken behavior: `$host'
 1093 # used to hold the argument of --host etc.
 1094 # FIXME: To remove some day.
 1095 build=$build_alias
 1096 host=$host_alias
 1097 target=$target_alias
 1098 
 1099 # FIXME: To remove some day.
 1100 if test "x$host_alias" != x; then
 1101   if test "x$build_alias" = x; then
 1102     cross_compiling=maybe
 1103   elif test "x$build_alias" != "x$host_alias"; then
 1104     cross_compiling=yes
 1105   fi
 1106 fi
 1107 
 1108 ac_tool_prefix=
 1109 test -n "$host_alias" && ac_tool_prefix=$host_alias-
 1110 
 1111 test "$silent" = yes && exec 6>/dev/null
 1112 
 1113 
 1114 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 1115 ac_ls_di=`ls -di .` &&
 1116 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 1117   as_fn_error $? "working directory cannot be determined"
 1118 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 1119   as_fn_error $? "pwd does not report name of working directory"
 1120 
 1121 
 1122 # Find the source files, if location was not specified.
 1123 if test -z "$srcdir"; then
 1124   ac_srcdir_defaulted=yes
 1125   # Try the directory containing this script, then the parent directory.
 1126   ac_confdir=`$as_dirname -- "$as_myself" ||
 1127 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 1128      X"$as_myself" : 'X\(//\)[^/]' \| \
 1129      X"$as_myself" : 'X\(//\)$' \| \
 1130      X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 1131 $as_echo X"$as_myself" |
 1132     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 1133         s//\1/
 1134         q
 1135       }
 1136       /^X\(\/\/\)[^/].*/{
 1137         s//\1/
 1138         q
 1139       }
 1140       /^X\(\/\/\)$/{
 1141         s//\1/
 1142         q
 1143       }
 1144       /^X\(\/\).*/{
 1145         s//\1/
 1146         q
 1147       }
 1148       s/.*/./; q'`
 1149   srcdir=$ac_confdir
 1150   if test ! -r "$srcdir/$ac_unique_file"; then
 1151     srcdir=..
 1152   fi
 1153 else
 1154   ac_srcdir_defaulted=no
 1155 fi
 1156 if test ! -r "$srcdir/$ac_unique_file"; then
 1157   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 1158   as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 1159 fi
 1160 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 1161 ac_abs_confdir=`(
 1162     cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 1163     pwd)`
 1164 # When building in place, set srcdir=.
 1165 if test "$ac_abs_confdir" = "$ac_pwd"; then
 1166   srcdir=.
 1167 fi
 1168 # Remove unnecessary trailing slashes from srcdir.
 1169 # Double slashes in file names in object file debugging info
 1170 # mess up M-x gdb in Emacs.
 1171 case $srcdir in
 1172 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 1173 esac
 1174 for ac_var in $ac_precious_vars; do
 1175   eval ac_env_${ac_var}_set=\${${ac_var}+set}
 1176   eval ac_env_${ac_var}_value=\$${ac_var}
 1177   eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 1178   eval ac_cv_env_${ac_var}_value=\$${ac_var}
 1179 done
 1180 
 1181 #
 1182 # Report the --help message.
 1183 #
 1184 if test "$ac_init_help" = "long"; then
 1185   # Omit some internal or obsolete options to make the list less imposing.
 1186   # This message is too long to be a string in the A/UX 3.1 sh.
 1187   cat <<_ACEOF
 1188 \`configure' configures Makefile.in 1.0 to adapt to many kinds of systems.
 1189 
 1190 Usage: $0 [OPTION]... [VAR=VALUE]...
 1191 
 1192 To assign environment variables (e.g., CC, CFLAGS...), specify them as
 1193 VAR=VALUE.  See below for descriptions of some of the useful variables.
 1194 
 1195 Defaults for the options are specified in brackets.
 1196 
 1197 Configuration:
 1198   -h, --help              display this help and exit
 1199       --help=short        display options specific to this package
 1200       --help=recursive    display the short help of all the included packages
 1201   -V, --version           display version information and exit
 1202   -q, --quiet, --silent   do not print \`checking ...' messages
 1203       --cache-file=FILE   cache test results in FILE [disabled]
 1204   -C, --config-cache      alias for \`--cache-file=config.cache'
 1205   -n, --no-create         do not create output files
 1206       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 1207 
 1208 Installation directories:
 1209   --prefix=PREFIX         install architecture-independent files in PREFIX
 1210                           [$ac_default_prefix]
 1211   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 1212                           [PREFIX]
 1213 
 1214 By default, \`make install' will install all the files in
 1215 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 1216 an installation prefix other than \`$ac_default_prefix' using \`--prefix',
 1217 for instance \`--prefix=\$HOME'.
 1218 
 1219 For better control, use the options below.
 1220 
 1221 Fine tuning of the installation directories:
 1222   --bindir=DIR            user executables [EPREFIX/bin]
 1223   --sbindir=DIR           system admin executables [EPREFIX/sbin]
 1224   --libexecdir=DIR        program executables [EPREFIX/libexec]
 1225   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 1226   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 1227   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 1228   --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
 1229   --libdir=DIR            object code libraries [EPREFIX/lib]
 1230   --includedir=DIR        C header files [PREFIX/include]
 1231   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 1232   --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 1233   --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 1234   --infodir=DIR           info documentation [DATAROOTDIR/info]
 1235   --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 1236   --mandir=DIR            man documentation [DATAROOTDIR/man]
 1237   --docdir=DIR            documentation root [DATAROOTDIR/doc/makefile-in]
 1238   --htmldir=DIR           html documentation [DOCDIR]
 1239   --dvidir=DIR            dvi documentation [DOCDIR]
 1240   --pdfdir=DIR            pdf documentation [DOCDIR]
 1241   --psdir=DIR             ps documentation [DOCDIR]
 1242 _ACEOF
 1243 
 1244   cat <<\_ACEOF
 1245 _ACEOF
 1246 fi
 1247 
 1248 if test -n "$ac_init_help"; then
 1249   case $ac_init_help in
 1250      short | recursive ) echo "Configuration of Makefile.in 1.0:";;
 1251    esac
 1252   cat <<\_ACEOF
 1253 
 1254 Report bugs to the package provider.
 1255 _ACEOF
 1256 ac_status=$?
 1257 fi
 1258 
 1259 if test "$ac_init_help" = "recursive"; then
 1260   # If there are subdirs, report their specific --help.
 1261   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 1262     test -d "$ac_dir" ||
 1263       { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 1264       continue
 1265     ac_builddir=.
 1266 
 1267 case "$ac_dir" in
 1268 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 1269 *)
 1270   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 1271   # A ".." for each directory in $ac_dir_suffix.
 1272   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 1273   case $ac_top_builddir_sub in
 1274   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 1275   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 1276   esac ;;
 1277 esac
 1278 ac_abs_top_builddir=$ac_pwd
 1279 ac_abs_builddir=$ac_pwd$ac_dir_suffix
 1280 # for backward compatibility:
 1281 ac_top_builddir=$ac_top_build_prefix
 1282 
 1283 case $srcdir in
 1284   .)  # We are building in place.
 1285     ac_srcdir=.
 1286     ac_top_srcdir=$ac_top_builddir_sub
 1287     ac_abs_top_srcdir=$ac_pwd ;;
 1288   [\\/]* | ?:[\\/]* )  # Absolute name.
 1289     ac_srcdir=$srcdir$ac_dir_suffix;
 1290     ac_top_srcdir=$srcdir
 1291     ac_abs_top_srcdir=$srcdir ;;
 1292   *) # Relative name.
 1293     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 1294     ac_top_srcdir=$ac_top_build_prefix$srcdir
 1295     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 1296 esac
 1297 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 1298 
 1299     cd "$ac_dir" || { ac_status=$?; continue; }
 1300     # Check for guested configure.
 1301     if test -f "$ac_srcdir/configure.gnu"; then
 1302       echo &&
 1303       $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 1304     elif test -f "$ac_srcdir/configure"; then
 1305       echo &&
 1306       $SHELL "$ac_srcdir/configure" --help=recursive
 1307     else
 1308       $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 1309     fi || ac_status=$?
 1310     cd "$ac_pwd" || { ac_status=$?; break; }
 1311   done
 1312 fi
 1313 
 1314 test -n "$ac_init_help" && exit $ac_status
 1315 if $ac_init_version; then
 1316   cat <<\_ACEOF
 1317 Makefile.in configure 1.0
 1318 generated by GNU Autoconf 2.69
 1319 
 1320 Copyright (C) 2012 Free Software Foundation, Inc.
 1321 This configure script is free software; the Free Software Foundation
 1322 gives unlimited permission to copy, distribute and modify it.
 1323 _ACEOF
 1324   exit
 1325 fi
 1326 
 1327 ## ------------------------ ##
 1328 ## Autoconf initialization. ##
 1329 ## ------------------------ ##
 1330 cat >config.log <<_ACEOF
 1331 This file contains any messages produced by compilers while
 1332 running configure, to aid debugging if configure makes a mistake.
 1333 
 1334 It was created by Makefile.in $as_me 1.0, which was
 1335 generated by GNU Autoconf 2.69.  Invocation command line was
 1336 
 1337   $ $0 $@
 1338 
 1339 _ACEOF
 1340 exec 5>>config.log
 1341 {
 1342 cat <<_ASUNAME
 1343 ## --------- ##
 1344 ## Platform. ##
 1345 ## --------- ##
 1346 
 1347 hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 1348 uname -m = `(uname -m) 2>/dev/null || echo unknown`
 1349 uname -r = `(uname -r) 2>/dev/null || echo unknown`
 1350 uname -s = `(uname -s) 2>/dev/null || echo unknown`
 1351 uname -v = `(uname -v) 2>/dev/null || echo unknown`
 1352 
 1353 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 1354 /bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 1355 
 1356 /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 1357 /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 1358 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 1359 /usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 1360 /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 1361 /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 1362 /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 1363 
 1364 _ASUNAME
 1365 
 1366 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 1367 for as_dir in $PATH
 1368 do
 1369   IFS=$as_save_IFS
 1370   test -z "$as_dir" && as_dir=.
 1371     $as_echo "PATH: $as_dir"
 1372   done
 1373 IFS=$as_save_IFS
 1374 
 1375 } >&5
 1376 
 1377 cat >&5 <<_ACEOF
 1378 
 1379 
 1380 ## ----------- ##
 1381 ## Core tests. ##
 1382 ## ----------- ##
 1383 
 1384 _ACEOF
 1385 
 1386 
 1387 # Keep a trace of the command line.
 1388 # Strip out --no-create and --no-recursion so they do not pile up.
 1389 # Strip out --silent because we don't want to record it for future runs.
 1390 # Also quote any args containing shell meta-characters.
 1391 # Make two passes to allow for proper duplicate-argument suppression.
 1392 ac_configure_args=
 1393 ac_configure_args0=
 1394 ac_configure_args1=
 1395 ac_must_keep_next=false
 1396 for ac_pass in 1 2
 1397 do
 1398   for ac_arg
 1399   do
 1400     case $ac_arg in
 1401     -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 1402     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 1403     | -silent | --silent | --silen | --sile | --sil)
 1404       continue ;;
 1405     *\'*)
 1406       ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 1407     esac
 1408     case $ac_pass in
 1409     1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 1410     2)
 1411       as_fn_append ac_configure_args1 " '$ac_arg'"
 1412       if test $ac_must_keep_next = true; then
 1413     ac_must_keep_next=false # Got value, back to normal.
 1414       else
 1415     case $ac_arg in
 1416       *=* | --config-cache | -C | -disable-* | --disable-* \
 1417       | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 1418       | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 1419       | -with-* | --with-* | -without-* | --without-* | --x)
 1420         case "$ac_configure_args0 " in
 1421           "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 1422         esac
 1423         ;;
 1424       -* ) ac_must_keep_next=true ;;
 1425     esac
 1426       fi
 1427       as_fn_append ac_configure_args " '$ac_arg'"
 1428       ;;
 1429     esac
 1430   done
 1431 done
 1432 { ac_configure_args0=; unset ac_configure_args0;}
 1433 { ac_configure_args1=; unset ac_configure_args1;}
 1434 
 1435 # When interrupted or exit'd, cleanup temporary files, and complete
 1436 # config.log.  We remove comments because anyway the quotes in there
 1437 # would cause problems or look ugly.
 1438 # WARNING: Use '\'' to represent an apostrophe within the trap.
 1439 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 1440 trap 'exit_status=$?
 1441   # Save into config.log some information that might help in debugging.
 1442   {
 1443     echo
 1444 
 1445     $as_echo "## ---------------- ##
 1446 ## Cache variables. ##
 1447 ## ---------------- ##"
 1448     echo
 1449     # The following way of writing the cache mishandles newlines in values,
 1450 (
 1451   for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 1452     eval ac_val=\$$ac_var
 1453     case $ac_val in #(
 1454     *${as_nl}*)
 1455       case $ac_var in #(
 1456       *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 1457 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 1458       esac
 1459       case $ac_var in #(
 1460       _ | IFS | as_nl) ;; #(
 1461       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 1462       *) { eval $ac_var=; unset $ac_var;} ;;
 1463       esac ;;
 1464     esac
 1465   done
 1466   (set) 2>&1 |
 1467     case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 1468     *${as_nl}ac_space=\ *)
 1469       sed -n \
 1470     "s/'\''/'\''\\\\'\'''\''/g;
 1471       s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 1472       ;; #(
 1473     *)
 1474       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 1475       ;;
 1476     esac |
 1477     sort
 1478 )
 1479     echo
 1480 
 1481     $as_echo "## ----------------- ##
 1482 ## Output variables. ##
 1483 ## ----------------- ##"
 1484     echo
 1485     for ac_var in $ac_subst_vars
 1486     do
 1487       eval ac_val=\$$ac_var
 1488       case $ac_val in
 1489       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 1490       esac
 1491       $as_echo "$ac_var='\''$ac_val'\''"
 1492     done | sort
 1493     echo
 1494 
 1495     if test -n "$ac_subst_files"; then
 1496       $as_echo "## ------------------- ##
 1497 ## File substitutions. ##
 1498 ## ------------------- ##"
 1499       echo
 1500       for ac_var in $ac_subst_files
 1501       do
 1502     eval ac_val=\$$ac_var
 1503     case $ac_val in
 1504     *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 1505     esac
 1506     $as_echo "$ac_var='\''$ac_val'\''"
 1507       done | sort
 1508       echo
 1509     fi
 1510 
 1511     if test -s confdefs.h; then
 1512       $as_echo "## ----------- ##
 1513 ## confdefs.h. ##
 1514 ## ----------- ##"
 1515       echo
 1516       cat confdefs.h
 1517       echo
 1518     fi
 1519     test "$ac_signal" != 0 &&
 1520       $as_echo "$as_me: caught signal $ac_signal"
 1521     $as_echo "$as_me: exit $exit_status"
 1522   } >&5
 1523   rm -f core *.core core.conftest.* &&
 1524     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 1525     exit $exit_status
 1526 ' 0
 1527 for ac_signal in 1 2 13 15; do
 1528   trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
 1529 done
 1530 ac_signal=0
 1531 
 1532 # confdefs.h avoids OS command line length limits that DEFS can exceed.
 1533 rm -f -r conftest* confdefs.h
 1534 
 1535 $as_echo "/* confdefs.h */" > confdefs.h
 1536 
 1537 # Predefined preprocessor variables.
 1538 
 1539 cat >>confdefs.h <<_ACEOF
 1540 #define PACKAGE_NAME "$PACKAGE_NAME"
 1541 _ACEOF
 1542 
 1543 cat >>confdefs.h <<_ACEOF
 1544 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 1545 _ACEOF
 1546 
 1547 cat >>confdefs.h <<_ACEOF
 1548 #define PACKAGE_VERSION "$PACKAGE_VERSION"
 1549 _ACEOF
 1550 
 1551 cat >>confdefs.h <<_ACEOF
 1552 #define PACKAGE_STRING "$PACKAGE_STRING"
 1553 _ACEOF
 1554 
 1555 cat >>confdefs.h <<_ACEOF
 1556 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 1557 _ACEOF
 1558 
 1559 cat >>confdefs.h <<_ACEOF
 1560 #define PACKAGE_URL "$PACKAGE_URL"
 1561 _ACEOF
 1562 
 1563 
 1564 # Let the site file select an alternate cache file if it wants to.
 1565 # Prefer an explicitly selected file to automatically selected ones.
 1566 ac_site_file1=NONE
 1567 ac_site_file2=NONE
 1568 if test -n "$CONFIG_SITE"; then
 1569   # We do not want a PATH search for config.site.
 1570   case $CONFIG_SITE in #((
 1571     -*)  ac_site_file1=./$CONFIG_SITE;;
 1572     */*) ac_site_file1=$CONFIG_SITE;;
 1573     *)   ac_site_file1=./$CONFIG_SITE;;
 1574   esac
 1575 elif test "x$prefix" != xNONE; then
 1576   ac_site_file1=$prefix/share/config.site
 1577   ac_site_file2=$prefix/etc/config.site
 1578 else
 1579   ac_site_file1=$ac_default_prefix/share/config.site
 1580   ac_site_file2=$ac_default_prefix/etc/config.site
 1581 fi
 1582 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 1583 do
 1584   test "x$ac_site_file" = xNONE && continue
 1585   if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
 1586     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 1587 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
 1588     sed 's/^/| /' "$ac_site_file" >&5
 1589     . "$ac_site_file" \
 1590       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 1591 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 1592 as_fn_error $? "failed to load site script $ac_site_file
 1593 See \`config.log' for more details" "$LINENO" 5; }
 1594   fi
 1595 done
 1596 
 1597 if test -r "$cache_file"; then
 1598   # Some versions of bash will fail to source /dev/null (special files
 1599   # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
 1600   if test /dev/null != "$cache_file" && test -f "$cache_file"; then
 1601     { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
 1602 $as_echo "$as_me: loading cache $cache_file" >&6;}
 1603     case $cache_file in
 1604       [\\/]* | ?:[\\/]* ) . "$cache_file";;
 1605       *)                      . "./$cache_file";;
 1606     esac
 1607   fi
 1608 else
 1609   { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
 1610 $as_echo "$as_me: creating cache $cache_file" >&6;}
 1611   >$cache_file
 1612 fi
 1613 
 1614 # Check that the precious variables saved in the cache have kept the same
 1615 # value.
 1616 ac_cache_corrupted=false
 1617 for ac_var in $ac_precious_vars; do
 1618   eval ac_old_set=\$ac_cv_env_${ac_var}_set
 1619   eval ac_new_set=\$ac_env_${ac_var}_set
 1620   eval ac_old_val=\$ac_cv_env_${ac_var}_value
 1621   eval ac_new_val=\$ac_env_${ac_var}_value
 1622   case $ac_old_set,$ac_new_set in
 1623     set,)
 1624       { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 1625 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 1626       ac_cache_corrupted=: ;;
 1627     ,set)
 1628       { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
 1629 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 1630       ac_cache_corrupted=: ;;
 1631     ,);;
 1632     *)
 1633       if test "x$ac_old_val" != "x$ac_new_val"; then
 1634     # differences in whitespace do not lead to failure.
 1635     ac_old_val_w=`echo x $ac_old_val`
 1636     ac_new_val_w=`echo x $ac_new_val`
 1637     if test "$ac_old_val_w" != "$ac_new_val_w"; then
 1638       { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
 1639 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 1640       ac_cache_corrupted=:
 1641     else
 1642       { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 1643 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 1644       eval $ac_var=\$ac_old_val
 1645     fi
 1646     { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
 1647 $as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 1648     { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
 1649 $as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 1650       fi;;
 1651   esac
 1652   # Pass precious variables to config.status.
 1653   if test "$ac_new_set" = set; then
 1654     case $ac_new_val in
 1655     *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 1656     *) ac_arg=$ac_var=$ac_new_val ;;
 1657     esac
 1658     case " $ac_configure_args " in
 1659       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 1660       *) as_fn_append ac_configure_args " '$ac_arg'" ;;
 1661     esac
 1662   fi
 1663 done
 1664 if $ac_cache_corrupted; then
 1665   { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 1666 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 1667   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 1668 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 1669   as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 1670 fi
 1671 ## -------------------- ##
 1672 ## Main body of script. ##
 1673 ## -------------------- ##
 1674 
 1675 ac_ext=c
 1676 ac_cpp='$CPP $CPPFLAGS'
 1677 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 1678 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 1679 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 1680 
 1681 
 1682 
 1683 # NOTE: this file is not actually used. You need to edit configure as well!
 1684 N2N_VERSION_RPM=$(../../scripts/version.sh |tr - _)
 1685 
 1686 MACHINE=`uname -m`
 1687 SHORT_MACHINE=`uname -m | cut -b1-3`
 1688 
 1689 if test $MACHINE = "x86_64"; then
 1690    EXTN="amd64"
 1691 else
 1692   if test $SHORT_MACHINE = "aar"; then
 1693      EXTN="arm64"
 1694      EXTRA_DEPS=""
 1695   else
 1696     if test $SHORT_MACHINE = "arm"; then
 1697        EXTN="armhf"
 1698        EXTRA_DEPS=""
 1699     else
 1700        if test $SHORT_MACHINE = "mip"; then
 1701          EXTN="mips"
 1702          EXTRA_DEPS=""
 1703        else
 1704          EXTN="i386"
 1705        fi
 1706      fi
 1707   fi
 1708 fi
 1709 
 1710 APP=n2n
 1711 DATE=`date -R`
 1712 
 1713 CENTOS_RELEASE=`cat /etc/centos-release | cut -d ' ' -f 3|cut -d '.' -f 1`
 1714 if test $CENTOS_RELEASE = "release"; then
 1715   CENTOS_RELEASE=`cat /etc/centos-release | cut -d ' ' -f 4|cut -d '.' -f 1`
 1716 fi
 1717 
 1718 RPM_SIGN_CMD="rpm --addsign"
 1719 if test "$CENTOS_RELEASE" -ne 8; then
 1720   RPM_SIGN_CMD="./rpm-sign.exp"
 1721 fi
 1722 
 1723 
 1724 
 1725 
 1726 
 1727 
 1728 
 1729 
 1730 ac_config_files="$ac_config_files n2n.spec"
 1731 
 1732 ac_config_files="$ac_config_files ../etc/systemd/system/edge.service"
 1733 
 1734 ac_config_files="$ac_config_files ../etc/systemd/system/edge@.service"
 1735 
 1736 ac_config_files="$ac_config_files ../etc/systemd/system/edge-ntopng@.service"
 1737 
 1738 ac_config_files="$ac_config_files ../etc/systemd/system/supernode.service"
 1739 
 1740 ac_config_files="$ac_config_files Makefile"
 1741 
 1742 cat >confcache <<\_ACEOF
 1743 # This file is a shell script that caches the results of configure
 1744 # tests run on this system so they can be shared between configure
 1745 # scripts and configure runs, see configure's option --config-cache.
 1746 # It is not useful on other systems.  If it contains results you don't
 1747 # want to keep, you may remove or edit it.
 1748 #
 1749 # config.status only pays attention to the cache file if you give it
 1750 # the --recheck option to rerun configure.
 1751 #
 1752 # `ac_cv_env_foo' variables (set or unset) will be overridden when
 1753 # loading this file, other *unset* `ac_cv_foo' will be assigned the
 1754 # following values.
 1755 
 1756 _ACEOF
 1757 
 1758 # The following way of writing the cache mishandles newlines in values,
 1759 # but we know of no workaround that is simple, portable, and efficient.
 1760 # So, we kill variables containing newlines.
 1761 # Ultrix sh set writes to stderr and can't be redirected directly,
 1762 # and sets the high bit in the cache file unless we assign to the vars.
 1763 (
 1764   for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 1765     eval ac_val=\$$ac_var
 1766     case $ac_val in #(
 1767     *${as_nl}*)
 1768       case $ac_var in #(
 1769       *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 1770 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 1771       esac
 1772       case $ac_var in #(
 1773       _ | IFS | as_nl) ;; #(
 1774       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 1775       *) { eval $ac_var=; unset $ac_var;} ;;
 1776       esac ;;
 1777     esac
 1778   done
 1779 
 1780   (set) 2>&1 |
 1781     case $as_nl`(ac_space=' '; set) 2>&1` in #(
 1782     *${as_nl}ac_space=\ *)
 1783       # `set' does not quote correctly, so add quotes: double-quote
 1784       # substitution turns \\\\ into \\, and sed turns \\ into \.
 1785       sed -n \
 1786     "s/'/'\\\\''/g;
 1787       s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 1788       ;; #(
 1789     *)
 1790       # `set' quotes correctly as required by POSIX, so do not add quotes.
 1791       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 1792       ;;
 1793     esac |
 1794     sort
 1795 ) |
 1796   sed '
 1797      /^ac_cv_env_/b end
 1798      t clear
 1799      :clear
 1800      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 1801      t end
 1802      s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 1803      :end' >>confcache
 1804 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 1805   if test -w "$cache_file"; then
 1806     if test "x$cache_file" != "x/dev/null"; then
 1807       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 1808 $as_echo "$as_me: updating cache $cache_file" >&6;}
 1809       if test ! -f "$cache_file" || test -h "$cache_file"; then
 1810     cat confcache >"$cache_file"
 1811       else
 1812         case $cache_file in #(
 1813         */* | ?:*)
 1814       mv -f confcache "$cache_file"$$ &&
 1815       mv -f "$cache_file"$$ "$cache_file" ;; #(
 1816         *)
 1817       mv -f confcache "$cache_file" ;;
 1818     esac
 1819       fi
 1820     fi
 1821   else
 1822     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 1823 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 1824   fi
 1825 fi
 1826 rm -f confcache
 1827 
 1828 test "x$prefix" = xNONE && prefix=$ac_default_prefix
 1829 # Let make expand exec_prefix.
 1830 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 1831 
 1832 # Transform confdefs.h into DEFS.
 1833 # Protect against shell expansion while executing Makefile rules.
 1834 # Protect against Makefile macro expansion.
 1835 #
 1836 # If the first sed substitution is executed (which looks for macros that
 1837 # take arguments), then branch to the quote section.  Otherwise,
 1838 # look for a macro that doesn't take arguments.
 1839 ac_script='
 1840 :mline
 1841 /\\$/{
 1842  N
 1843  s,\\\n,,
 1844  b mline
 1845 }
 1846 t clear
 1847 :clear
 1848 s/^[     ]*#[    ]*define[   ][  ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\)/-D\1=\2/g
 1849 t quote
 1850 s/^[     ]*#[    ]*define[   ][  ]*\([^  ][^     ]*\)[   ]*\(.*\)/-D\1=\2/g
 1851 t quote
 1852 b any
 1853 :quote
 1854 s/[  `~#$^&*(){}\\|;'\''"<>?]/\\&/g
 1855 s/\[/\\&/g
 1856 s/\]/\\&/g
 1857 s/\$/$$/g
 1858 H
 1859 :any
 1860 ${
 1861     g
 1862     s/^\n//
 1863     s/\n/ /g
 1864     p
 1865 }
 1866 '
 1867 DEFS=`sed -n "$ac_script" confdefs.h`
 1868 
 1869 
 1870 ac_libobjs=
 1871 ac_ltlibobjs=
 1872 U=
 1873 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 1874   # 1. Remove the extension, and $U if already installed.
 1875   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 1876   ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 1877   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 1878   #    will be set to the directory where LIBOBJS objects are built.
 1879   as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 1880   as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
 1881 done
 1882 LIBOBJS=$ac_libobjs
 1883 
 1884 LTLIBOBJS=$ac_ltlibobjs
 1885 
 1886 
 1887 
 1888 : "${CONFIG_STATUS=./config.status}"
 1889 ac_write_fail=0
 1890 ac_clean_files_save=$ac_clean_files
 1891 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 1892 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
 1893 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 1894 as_write_fail=0
 1895 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
 1896 #! $SHELL
 1897 # Generated by $as_me.
 1898 # Run this file to recreate the current configuration.
 1899 # Compiler output produced by configure, useful for debugging
 1900 # configure, is in config.log if it exists.
 1901 
 1902 debug=false
 1903 ac_cs_recheck=false
 1904 ac_cs_silent=false
 1905 
 1906 SHELL=\${CONFIG_SHELL-$SHELL}
 1907 export SHELL
 1908 _ASEOF
 1909 cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
 1910 ## -------------------- ##
 1911 ## M4sh Initialization. ##
 1912 ## -------------------- ##
 1913 
 1914 # Be more Bourne compatible
 1915 DUALCASE=1; export DUALCASE # for MKS sh
 1916 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 1917   emulate sh
 1918   NULLCMD=:
 1919   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 1920   # is contrary to our usage.  Disable this feature.
 1921   alias -g '${1+"$@"}'='"$@"'
 1922   setopt NO_GLOB_SUBST
 1923 else
 1924   case `(set -o) 2>/dev/null` in #(
 1925   *posix*) :
 1926     set -o posix ;; #(
 1927   *) :
 1928      ;;
 1929 esac
 1930 fi
 1931 
 1932 
 1933 as_nl='
 1934 '
 1935 export as_nl
 1936 # Printing a long string crashes Solaris 7 /usr/bin/printf.
 1937 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 1938 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 1939 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 1940 # Prefer a ksh shell builtin over an external printf program on Solaris,
 1941 # but without wasting forks for bash or zsh.
 1942 if test -z "$BASH_VERSION$ZSH_VERSION" \
 1943     && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 1944   as_echo='print -r --'
 1945   as_echo_n='print -rn --'
 1946 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 1947   as_echo='printf %s\n'
 1948   as_echo_n='printf %s'
 1949 else
 1950   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 1951     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 1952     as_echo_n='/usr/ucb/echo -n'
 1953   else
 1954     as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 1955     as_echo_n_body='eval
 1956       arg=$1;
 1957       case $arg in #(
 1958       *"$as_nl"*)
 1959     expr "X$arg" : "X\\(.*\\)$as_nl";
 1960     arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 1961       esac;
 1962       expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 1963     '
 1964     export as_echo_n_body
 1965     as_echo_n='sh -c $as_echo_n_body as_echo'
 1966   fi
 1967   export as_echo_body
 1968   as_echo='sh -c $as_echo_body as_echo'
 1969 fi
 1970 
 1971 # The user is always right.
 1972 if test "${PATH_SEPARATOR+set}" != set; then
 1973   PATH_SEPARATOR=:
 1974   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 1975     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 1976       PATH_SEPARATOR=';'
 1977   }
 1978 fi
 1979 
 1980 
 1981 # IFS
 1982 # We need space, tab and new line, in precisely that order.  Quoting is
 1983 # there to prevent editors from complaining about space-tab.
 1984 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
 1985 # splitting by setting IFS to empty value.)
 1986 IFS=" ""    $as_nl"
 1987 
 1988 # Find who we are.  Look in the path if we contain no directory separator.
 1989 as_myself=
 1990 case $0 in #((
 1991   *[\\/]* ) as_myself=$0 ;;
 1992   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 1993 for as_dir in $PATH
 1994 do
 1995   IFS=$as_save_IFS
 1996   test -z "$as_dir" && as_dir=.
 1997     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 1998   done
 1999 IFS=$as_save_IFS
 2000 
 2001      ;;
 2002 esac
 2003 # We did not find ourselves, most probably we were run as `sh COMMAND'
 2004 # in which case we are not to be found in the path.
 2005 if test "x$as_myself" = x; then
 2006   as_myself=$0
 2007 fi
 2008 if test ! -f "$as_myself"; then
 2009   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 2010   exit 1
 2011 fi
 2012 
 2013 # Unset variables that we do not need and which cause bugs (e.g. in
 2014 # pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 2015 # suppresses any "Segmentation fault" message there.  '((' could
 2016 # trigger a bug in pdksh 5.2.14.
 2017 for as_var in BASH_ENV ENV MAIL MAILPATH
 2018 do eval test x\${$as_var+set} = xset \
 2019   && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 2020 done
 2021 PS1='$ '
 2022 PS2='> '
 2023 PS4='+ '
 2024 
 2025 # NLS nuisances.
 2026 LC_ALL=C
 2027 export LC_ALL
 2028 LANGUAGE=C
 2029 export LANGUAGE
 2030 
 2031 # CDPATH.
 2032 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 2033 
 2034 
 2035 # as_fn_error STATUS ERROR [LINENO LOG_FD]
 2036 # ----------------------------------------
 2037 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 2038 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 2039 # script with STATUS, using 1 if that was 0.
 2040 as_fn_error ()
 2041 {
 2042   as_status=$1; test $as_status -eq 0 && as_status=1
 2043   if test "$4"; then
 2044     as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 2045     $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 2046   fi
 2047   $as_echo "$as_me: error: $2" >&2
 2048   as_fn_exit $as_status
 2049 } # as_fn_error
 2050 
 2051 
 2052 # as_fn_set_status STATUS
 2053 # -----------------------
 2054 # Set $? to STATUS, without forking.
 2055 as_fn_set_status ()
 2056 {
 2057   return $1
 2058 } # as_fn_set_status
 2059 
 2060 # as_fn_exit STATUS
 2061 # -----------------
 2062 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 2063 as_fn_exit ()
 2064 {
 2065   set +e
 2066   as_fn_set_status $1
 2067   exit $1
 2068 } # as_fn_exit
 2069 
 2070 # as_fn_unset VAR
 2071 # ---------------
 2072 # Portably unset VAR.
 2073 as_fn_unset ()
 2074 {
 2075   { eval $1=; unset $1;}
 2076 }
 2077 as_unset=as_fn_unset
 2078 # as_fn_append VAR VALUE
 2079 # ----------------------
 2080 # Append the text in VALUE to the end of the definition contained in VAR. Take
 2081 # advantage of any shell optimizations that allow amortized linear growth over
 2082 # repeated appends, instead of the typical quadratic growth present in naive
 2083 # implementations.
 2084 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 2085   eval 'as_fn_append ()
 2086   {
 2087     eval $1+=\$2
 2088   }'
 2089 else
 2090   as_fn_append ()
 2091   {
 2092     eval $1=\$$1\$2
 2093   }
 2094 fi # as_fn_append
 2095 
 2096 # as_fn_arith ARG...
 2097 # ------------------
 2098 # Perform arithmetic evaluation on the ARGs, and store the result in the
 2099 # global $as_val. Take advantage of shells that can avoid forks. The arguments
 2100 # must be portable across $(()) and expr.
 2101 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 2102   eval 'as_fn_arith ()
 2103   {
 2104     as_val=$(( $* ))
 2105   }'
 2106 else
 2107   as_fn_arith ()
 2108   {
 2109     as_val=`expr "$@" || test $? -eq 1`
 2110   }
 2111 fi # as_fn_arith
 2112 
 2113 
 2114 if expr a : '\(a\)' >/dev/null 2>&1 &&
 2115    test "X`expr 00001 : '.*\(...\)'`" = X001; then
 2116   as_expr=expr
 2117 else
 2118   as_expr=false
 2119 fi
 2120 
 2121 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 2122   as_basename=basename
 2123 else
 2124   as_basename=false
 2125 fi
 2126 
 2127 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 2128   as_dirname=dirname
 2129 else
 2130   as_dirname=false
 2131 fi
 2132 
 2133 as_me=`$as_basename -- "$0" ||
 2134 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 2135      X"$0" : 'X\(//\)$' \| \
 2136      X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 2137 $as_echo X/"$0" |
 2138     sed '/^.*\/\([^/][^/]*\)\/*$/{
 2139         s//\1/
 2140         q
 2141       }
 2142       /^X\/\(\/\/\)$/{
 2143         s//\1/
 2144         q
 2145       }
 2146       /^X\/\(\/\).*/{
 2147         s//\1/
 2148         q
 2149       }
 2150       s/.*/./; q'`
 2151 
 2152 # Avoid depending upon Character Ranges.
 2153 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 2154 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 2155 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 2156 as_cr_digits='0123456789'
 2157 as_cr_alnum=$as_cr_Letters$as_cr_digits
 2158 
 2159 ECHO_C= ECHO_N= ECHO_T=
 2160 case `echo -n x` in #(((((
 2161 -n*)
 2162   case `echo 'xy\c'` in
 2163   *c*) ECHO_T=' ';; # ECHO_T is single tab character.
 2164   xy)  ECHO_C='\c';;
 2165   *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 2166        ECHO_T=' ';;
 2167   esac;;
 2168 *)
 2169   ECHO_N='-n';;
 2170 esac
 2171 
 2172 rm -f conf$$ conf$$.exe conf$$.file
 2173 if test -d conf$$.dir; then
 2174   rm -f conf$$.dir/conf$$.file
 2175 else
 2176   rm -f conf$$.dir
 2177   mkdir conf$$.dir 2>/dev/null
 2178 fi
 2179 if (echo >conf$$.file) 2>/dev/null; then
 2180   if ln -s conf$$.file conf$$ 2>/dev/null; then
 2181     as_ln_s='ln -s'
 2182     # ... but there are two gotchas:
 2183     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 2184     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 2185     # In both cases, we have to default to `cp -pR'.
 2186     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 2187       as_ln_s='cp -pR'
 2188   elif ln conf$$.file conf$$ 2>/dev/null; then
 2189     as_ln_s=ln
 2190   else
 2191     as_ln_s='cp -pR'
 2192   fi
 2193 else
 2194   as_ln_s='cp -pR'
 2195 fi
 2196 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 2197 rmdir conf$$.dir 2>/dev/null
 2198 
 2199 
 2200 # as_fn_mkdir_p
 2201 # -------------
 2202 # Create "$as_dir" as a directory, including parents if necessary.
 2203 as_fn_mkdir_p ()
 2204 {
 2205 
 2206   case $as_dir in #(
 2207   -*) as_dir=./$as_dir;;
 2208   esac
 2209   test -d "$as_dir" || eval $as_mkdir_p || {
 2210     as_dirs=
 2211     while :; do
 2212       case $as_dir in #(
 2213       *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 2214       *) as_qdir=$as_dir;;
 2215       esac
 2216       as_dirs="'$as_qdir' $as_dirs"
 2217       as_dir=`$as_dirname -- "$as_dir" ||
 2218 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 2219      X"$as_dir" : 'X\(//\)[^/]' \| \
 2220      X"$as_dir" : 'X\(//\)$' \| \
 2221      X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 2222 $as_echo X"$as_dir" |
 2223     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 2224         s//\1/
 2225         q
 2226       }
 2227       /^X\(\/\/\)[^/].*/{
 2228         s//\1/
 2229         q
 2230       }
 2231       /^X\(\/\/\)$/{
 2232         s//\1/
 2233         q
 2234       }
 2235       /^X\(\/\).*/{
 2236         s//\1/
 2237         q
 2238       }
 2239       s/.*/./; q'`
 2240       test -d "$as_dir" && break
 2241     done
 2242     test -z "$as_dirs" || eval "mkdir $as_dirs"
 2243   } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 2244 
 2245 
 2246 } # as_fn_mkdir_p
 2247 if mkdir -p . 2>/dev/null; then
 2248   as_mkdir_p='mkdir -p "$as_dir"'
 2249 else
 2250   test -d ./-p && rmdir ./-p
 2251   as_mkdir_p=false
 2252 fi
 2253 
 2254 
 2255 # as_fn_executable_p FILE
 2256 # -----------------------
 2257 # Test if FILE is an executable regular file.
 2258 as_fn_executable_p ()
 2259 {
 2260   test -f "$1" && test -x "$1"
 2261 } # as_fn_executable_p
 2262 as_test_x='test -x'
 2263 as_executable_p=as_fn_executable_p
 2264 
 2265 # Sed expression to map a string onto a valid CPP name.
 2266 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 2267 
 2268 # Sed expression to map a string onto a valid variable name.
 2269 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 2270 
 2271 
 2272 exec 6>&1
 2273 ## ----------------------------------- ##
 2274 ## Main body of $CONFIG_STATUS script. ##
 2275 ## ----------------------------------- ##
 2276 _ASEOF
 2277 test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
 2278 
 2279 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2280 # Save the log message, to keep $0 and so on meaningful, and to
 2281 # report actual input values of CONFIG_FILES etc. instead of their
 2282 # values after options handling.
 2283 ac_log="
 2284 This file was extended by Makefile.in $as_me 1.0, which was
 2285 generated by GNU Autoconf 2.69.  Invocation command line was
 2286 
 2287   CONFIG_FILES    = $CONFIG_FILES
 2288   CONFIG_HEADERS  = $CONFIG_HEADERS
 2289   CONFIG_LINKS    = $CONFIG_LINKS
 2290   CONFIG_COMMANDS = $CONFIG_COMMANDS
 2291   $ $0 $@
 2292 
 2293 on `(hostname || uname -n) 2>/dev/null | sed 1q`
 2294 "
 2295 
 2296 _ACEOF
 2297 
 2298 case $ac_config_files in *"
 2299 "*) set x $ac_config_files; shift; ac_config_files=$*;;
 2300 esac
 2301 
 2302 
 2303 
 2304 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2305 # Files that config.status was made for.
 2306 config_files="$ac_config_files"
 2307 
 2308 _ACEOF
 2309 
 2310 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2311 ac_cs_usage="\
 2312 \`$as_me' instantiates files and other configuration actions
 2313 from templates according to the current configuration.  Unless the files
 2314 and actions are specified as TAGs, all are instantiated by default.
 2315 
 2316 Usage: $0 [OPTION]... [TAG]...
 2317 
 2318   -h, --help       print this help, then exit
 2319   -V, --version    print version number and configuration settings, then exit
 2320       --config     print configuration, then exit
 2321   -q, --quiet, --silent
 2322                    do not print progress messages
 2323   -d, --debug      don't remove temporary files
 2324       --recheck    update $as_me by reconfiguring in the same conditions
 2325       --file=FILE[:TEMPLATE]
 2326                    instantiate the configuration file FILE
 2327 
 2328 Configuration files:
 2329 $config_files
 2330 
 2331 Report bugs to the package provider."
 2332 
 2333 _ACEOF
 2334 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2335 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 2336 ac_cs_version="\\
 2337 Makefile.in config.status 1.0
 2338 configured by $0, generated by GNU Autoconf 2.69,
 2339   with options \\"\$ac_cs_config\\"
 2340 
 2341 Copyright (C) 2012 Free Software Foundation, Inc.
 2342 This config.status script is free software; the Free Software Foundation
 2343 gives unlimited permission to copy, distribute and modify it."
 2344 
 2345 ac_pwd='$ac_pwd'
 2346 srcdir='$srcdir'
 2347 test -n "\$AWK" || AWK=awk
 2348 _ACEOF
 2349 
 2350 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2351 # The default lists apply if the user does not specify any file.
 2352 ac_need_defaults=:
 2353 while test $# != 0
 2354 do
 2355   case $1 in
 2356   --*=?*)
 2357     ac_option=`expr "X$1" : 'X\([^=]*\)='`
 2358     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 2359     ac_shift=:
 2360     ;;
 2361   --*=)
 2362     ac_option=`expr "X$1" : 'X\([^=]*\)='`
 2363     ac_optarg=
 2364     ac_shift=:
 2365     ;;
 2366   *)
 2367     ac_option=$1
 2368     ac_optarg=$2
 2369     ac_shift=shift
 2370     ;;
 2371   esac
 2372 
 2373   case $ac_option in
 2374   # Handling of the options.
 2375   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 2376     ac_cs_recheck=: ;;
 2377   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 2378     $as_echo "$ac_cs_version"; exit ;;
 2379   --config | --confi | --conf | --con | --co | --c )
 2380     $as_echo "$ac_cs_config"; exit ;;
 2381   --debug | --debu | --deb | --de | --d | -d )
 2382     debug=: ;;
 2383   --file | --fil | --fi | --f )
 2384     $ac_shift
 2385     case $ac_optarg in
 2386     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 2387     '') as_fn_error $? "missing file argument" ;;
 2388     esac
 2389     as_fn_append CONFIG_FILES " '$ac_optarg'"
 2390     ac_need_defaults=false;;
 2391   --he | --h |  --help | --hel | -h )
 2392     $as_echo "$ac_cs_usage"; exit ;;
 2393   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 2394   | -silent | --silent | --silen | --sile | --sil | --si | --s)
 2395     ac_cs_silent=: ;;
 2396 
 2397   # This is an error.
 2398   -*) as_fn_error $? "unrecognized option: \`$1'
 2399 Try \`$0 --help' for more information." ;;
 2400 
 2401   *) as_fn_append ac_config_targets " $1"
 2402      ac_need_defaults=false ;;
 2403 
 2404   esac
 2405   shift
 2406 done
 2407 
 2408 ac_configure_extra_args=
 2409 
 2410 if $ac_cs_silent; then
 2411   exec 6>/dev/null
 2412   ac_configure_extra_args="$ac_configure_extra_args --silent"
 2413 fi
 2414 
 2415 _ACEOF
 2416 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2417 if \$ac_cs_recheck; then
 2418   set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 2419   shift
 2420   \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 2421   CONFIG_SHELL='$SHELL'
 2422   export CONFIG_SHELL
 2423   exec "\$@"
 2424 fi
 2425 
 2426 _ACEOF
 2427 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2428 exec 5>>config.log
 2429 {
 2430   echo
 2431   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 2432 ## Running $as_me. ##
 2433 _ASBOX
 2434   $as_echo "$ac_log"
 2435 } >&5
 2436 
 2437 _ACEOF
 2438 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2439 _ACEOF
 2440 
 2441 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2442 
 2443 # Handling of arguments.
 2444 for ac_config_target in $ac_config_targets
 2445 do
 2446   case $ac_config_target in
 2447     "n2n.spec") CONFIG_FILES="$CONFIG_FILES n2n.spec" ;;
 2448     "../etc/systemd/system/edge.service") CONFIG_FILES="$CONFIG_FILES ../etc/systemd/system/edge.service" ;;
 2449     "../etc/systemd/system/edge@.service") CONFIG_FILES="$CONFIG_FILES ../etc/systemd/system/edge@.service" ;;
 2450     "../etc/systemd/system/edge-ntopng@.service") CONFIG_FILES="$CONFIG_FILES ../etc/systemd/system/edge-ntopng@.service" ;;
 2451     "../etc/systemd/system/supernode.service") CONFIG_FILES="$CONFIG_FILES ../etc/systemd/system/supernode.service" ;;
 2452     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 2453 
 2454   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 2455   esac
 2456 done
 2457 
 2458 
 2459 # If the user did not use the arguments to specify the items to instantiate,
 2460 # then the envvar interface is used.  Set only those that are not.
 2461 # We use the long form for the default assignment because of an extremely
 2462 # bizarre bug on SunOS 4.1.3.
 2463 if $ac_need_defaults; then
 2464   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 2465 fi
 2466 
 2467 # Have a temporary directory for convenience.  Make it in the build tree
 2468 # simply because there is no reason against having it here, and in addition,
 2469 # creating and moving files from /tmp can sometimes cause problems.
 2470 # Hook for its removal unless debugging.
 2471 # Note that there is a small window in which the directory will not be cleaned:
 2472 # after its creation but before its name has been assigned to `$tmp'.
 2473 $debug ||
 2474 {
 2475   tmp= ac_tmp=
 2476   trap 'exit_status=$?
 2477   : "${ac_tmp:=$tmp}"
 2478   { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
 2479 ' 0
 2480   trap 'as_fn_exit 1' 1 2 13 15
 2481 }
 2482 # Create a (secure) tmp directory for tmp files.
 2483 
 2484 {
 2485   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 2486   test -d "$tmp"
 2487 }  ||
 2488 {
 2489   tmp=./conf$$-$RANDOM
 2490   (umask 077 && mkdir "$tmp")
 2491 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 2492 ac_tmp=$tmp
 2493 
 2494 # Set up the scripts for CONFIG_FILES section.
 2495 # No need to generate them if there are no CONFIG_FILES.
 2496 # This happens for instance with `./config.status config.h'.
 2497 if test -n "$CONFIG_FILES"; then
 2498 
 2499 
 2500 ac_cr=`echo X | tr X '\015'`
 2501 # On cygwin, bash can eat \r inside `` if the user requested igncr.
 2502 # But we know of no other shell where ac_cr would be empty at this
 2503 # point, so we can use a bashism as a fallback.
 2504 if test "x$ac_cr" = x; then
 2505   eval ac_cr=\$\'\\r\'
 2506 fi
 2507 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 2508 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 2509   ac_cs_awk_cr='\\r'
 2510 else
 2511   ac_cs_awk_cr=$ac_cr
 2512 fi
 2513 
 2514 echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
 2515 _ACEOF
 2516 
 2517 
 2518 {
 2519   echo "cat >conf$$subs.awk <<_ACEOF" &&
 2520   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 2521   echo "_ACEOF"
 2522 } >conf$$subs.sh ||
 2523   as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 2524 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 2525 ac_delim='%!_!# '
 2526 for ac_last_try in false false false false false :; do
 2527   . ./conf$$subs.sh ||
 2528     as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 2529 
 2530   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 2531   if test $ac_delim_n = $ac_delim_num; then
 2532     break
 2533   elif $ac_last_try; then
 2534     as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 2535   else
 2536     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 2537   fi
 2538 done
 2539 rm -f conf$$subs.sh
 2540 
 2541 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2542 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
 2543 _ACEOF
 2544 sed -n '
 2545 h
 2546 s/^/S["/; s/!.*/"]=/
 2547 p
 2548 g
 2549 s/^[^!]*!//
 2550 :repl
 2551 t repl
 2552 s/'"$ac_delim"'$//
 2553 t delim
 2554 :nl
 2555 h
 2556 s/\(.\{148\}\)..*/\1/
 2557 t more1
 2558 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 2559 p
 2560 n
 2561 b repl
 2562 :more1
 2563 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 2564 p
 2565 g
 2566 s/.\{148\}//
 2567 t nl
 2568 :delim
 2569 h
 2570 s/\(.\{148\}\)..*/\1/
 2571 t more2
 2572 s/["\\]/\\&/g; s/^/"/; s/$/"/
 2573 p
 2574 b
 2575 :more2
 2576 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 2577 p
 2578 g
 2579 s/.\{148\}//
 2580 t delim
 2581 ' <conf$$subs.awk | sed '
 2582 /^[^""]/{
 2583   N
 2584   s/\n//
 2585 }
 2586 ' >>$CONFIG_STATUS || ac_write_fail=1
 2587 rm -f conf$$subs.awk
 2588 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2589 _ACAWK
 2590 cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
 2591   for (key in S) S_is_set[key] = 1
 2592   FS = ""
 2593 
 2594 }
 2595 {
 2596   line = $ 0
 2597   nfields = split(line, field, "@")
 2598   substed = 0
 2599   len = length(field[1])
 2600   for (i = 2; i < nfields; i++) {
 2601     key = field[i]
 2602     keylen = length(key)
 2603     if (S_is_set[key]) {
 2604       value = S[key]
 2605       line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 2606       len += length(value) + length(field[++i])
 2607       substed = 1
 2608     } else
 2609       len += 1 + keylen
 2610   }
 2611 
 2612   print line
 2613 }
 2614 
 2615 _ACAWK
 2616 _ACEOF
 2617 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2618 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 2619   sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 2620 else
 2621   cat
 2622 fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
 2623   || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 2624 _ACEOF
 2625 
 2626 # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
 2627 # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 2628 # trailing colons and then remove the whole line if VPATH becomes empty
 2629 # (actually we leave an empty line to preserve line numbers).
 2630 if test "x$srcdir" = x.; then
 2631   ac_vpsub='/^[  ]*VPATH[    ]*=[    ]*/{
 2632 h
 2633 s///
 2634 s/^/:/
 2635 s/[  ]*$/:/
 2636 s/:\$(srcdir):/:/g
 2637 s/:\${srcdir}:/:/g
 2638 s/:@srcdir@:/:/g
 2639 s/^:*//
 2640 s/:*$//
 2641 x
 2642 s/\(=[   ]*\).*/\1/
 2643 G
 2644 s/\n//
 2645 s/^[^=]*=[   ]*$//
 2646 }'
 2647 fi
 2648 
 2649 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2650 fi # test -n "$CONFIG_FILES"
 2651 
 2652 
 2653 eval set X "  :F $CONFIG_FILES      "
 2654 shift
 2655 for ac_tag
 2656 do
 2657   case $ac_tag in
 2658   :[FHLC]) ac_mode=$ac_tag; continue;;
 2659   esac
 2660   case $ac_mode$ac_tag in
 2661   :[FHL]*:*);;
 2662   :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
 2663   :[FH]-) ac_tag=-:-;;
 2664   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 2665   esac
 2666   ac_save_IFS=$IFS
 2667   IFS=:
 2668   set x $ac_tag
 2669   IFS=$ac_save_IFS
 2670   shift
 2671   ac_file=$1
 2672   shift
 2673 
 2674   case $ac_mode in
 2675   :L) ac_source=$1;;
 2676   :[FH])
 2677     ac_file_inputs=
 2678     for ac_f
 2679     do
 2680       case $ac_f in
 2681       -) ac_f="$ac_tmp/stdin";;
 2682       *) # Look for the file first in the build tree, then in the source tree
 2683      # (if the path is not absolute).  The absolute path cannot be DOS-style,
 2684      # because $ac_f cannot contain `:'.
 2685      test -f "$ac_f" ||
 2686        case $ac_f in
 2687        [\\/$]*) false;;
 2688        *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 2689        esac ||
 2690        as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 2691       esac
 2692       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 2693       as_fn_append ac_file_inputs " '$ac_f'"
 2694     done
 2695 
 2696     # Let's still pretend it is `configure' which instantiates (i.e., don't
 2697     # use $as_me), people would be surprised to read:
 2698     #    /* config.h.  Generated by config.status.  */
 2699     configure_input='Generated from '`
 2700       $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 2701     `' by configure.'
 2702     if test x"$ac_file" != x-; then
 2703       configure_input="$ac_file.  $configure_input"
 2704       { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
 2705 $as_echo "$as_me: creating $ac_file" >&6;}
 2706     fi
 2707     # Neutralize special characters interpreted by sed in replacement strings.
 2708     case $configure_input in #(
 2709     *\&* | *\|* | *\\* )
 2710        ac_sed_conf_input=`$as_echo "$configure_input" |
 2711        sed 's/[\\\\&|]/\\\\&/g'`;; #(
 2712     *) ac_sed_conf_input=$configure_input;;
 2713     esac
 2714 
 2715     case $ac_tag in
 2716     *:-:* | *:-) cat >"$ac_tmp/stdin" \
 2717       || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
 2718     esac
 2719     ;;
 2720   esac
 2721 
 2722   ac_dir=`$as_dirname -- "$ac_file" ||
 2723 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 2724      X"$ac_file" : 'X\(//\)[^/]' \| \
 2725      X"$ac_file" : 'X\(//\)$' \| \
 2726      X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 2727 $as_echo X"$ac_file" |
 2728     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 2729         s//\1/
 2730         q
 2731       }
 2732       /^X\(\/\/\)[^/].*/{
 2733         s//\1/
 2734         q
 2735       }
 2736       /^X\(\/\/\)$/{
 2737         s//\1/
 2738         q
 2739       }
 2740       /^X\(\/\).*/{
 2741         s//\1/
 2742         q
 2743       }
 2744       s/.*/./; q'`
 2745   as_dir="$ac_dir"; as_fn_mkdir_p
 2746   ac_builddir=.
 2747 
 2748 case "$ac_dir" in
 2749 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 2750 *)
 2751   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 2752   # A ".." for each directory in $ac_dir_suffix.
 2753   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 2754   case $ac_top_builddir_sub in
 2755   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 2756   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 2757   esac ;;
 2758 esac
 2759 ac_abs_top_builddir=$ac_pwd
 2760 ac_abs_builddir=$ac_pwd$ac_dir_suffix
 2761 # for backward compatibility:
 2762 ac_top_builddir=$ac_top_build_prefix
 2763 
 2764 case $srcdir in
 2765   .)  # We are building in place.
 2766     ac_srcdir=.
 2767     ac_top_srcdir=$ac_top_builddir_sub
 2768     ac_abs_top_srcdir=$ac_pwd ;;
 2769   [\\/]* | ?:[\\/]* )  # Absolute name.
 2770     ac_srcdir=$srcdir$ac_dir_suffix;
 2771     ac_top_srcdir=$srcdir
 2772     ac_abs_top_srcdir=$srcdir ;;
 2773   *) # Relative name.
 2774     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 2775     ac_top_srcdir=$ac_top_build_prefix$srcdir
 2776     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 2777 esac
 2778 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 2779 
 2780 
 2781   case $ac_mode in
 2782   :F)
 2783   #
 2784   # CONFIG_FILE
 2785   #
 2786 
 2787 _ACEOF
 2788 
 2789 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2790 # If the template does not know about datarootdir, expand it.
 2791 # FIXME: This hack should be removed a few years after 2.60.
 2792 ac_datarootdir_hack=; ac_datarootdir_seen=
 2793 ac_sed_dataroot='
 2794 /datarootdir/ {
 2795   p
 2796   q
 2797 }
 2798 /@datadir@/p
 2799 /@docdir@/p
 2800 /@infodir@/p
 2801 /@localedir@/p
 2802 /@mandir@/p'
 2803 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
 2804 *datarootdir*) ac_datarootdir_seen=yes;;
 2805 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 2806   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 2807 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 2808 _ACEOF
 2809 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2810   ac_datarootdir_hack='
 2811   s&@datadir@&$datadir&g
 2812   s&@docdir@&$docdir&g
 2813   s&@infodir@&$infodir&g
 2814   s&@localedir@&$localedir&g
 2815   s&@mandir@&$mandir&g
 2816   s&\\\${datarootdir}&$datarootdir&g' ;;
 2817 esac
 2818 _ACEOF
 2819 
 2820 # Neutralize VPATH when `$srcdir' = `.'.
 2821 # Shell code in configure.ac might set extrasub.
 2822 # FIXME: do we really want to maintain this feature?
 2823 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 2824 ac_sed_extra="$ac_vpsub
 2825 $extrasub
 2826 _ACEOF
 2827 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 2828 :t
 2829 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 2830 s|@configure_input@|$ac_sed_conf_input|;t t
 2831 s&@top_builddir@&$ac_top_builddir_sub&;t t
 2832 s&@top_build_prefix@&$ac_top_build_prefix&;t t
 2833 s&@srcdir@&$ac_srcdir&;t t
 2834 s&@abs_srcdir@&$ac_abs_srcdir&;t t
 2835 s&@top_srcdir@&$ac_top_srcdir&;t t
 2836 s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 2837 s&@builddir@&$ac_builddir&;t t
 2838 s&@abs_builddir@&$ac_abs_builddir&;t t
 2839 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 2840 $ac_datarootdir_hack
 2841 "
 2842 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
 2843   >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 2844 
 2845 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 2846   { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
 2847   { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' \
 2848       "$ac_tmp/out"`; test -z "$ac_out"; } &&
 2849   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 2850 which seems to be undefined.  Please make sure it is defined" >&5
 2851 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 2852 which seems to be undefined.  Please make sure it is defined" >&2;}
 2853 
 2854   rm -f "$ac_tmp/stdin"
 2855   case $ac_file in
 2856   -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
 2857   *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
 2858   esac \
 2859   || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 2860  ;;
 2861 
 2862 
 2863 
 2864   esac
 2865 
 2866 done # for ac_tag
 2867 
 2868 
 2869 as_fn_exit 0
 2870 _ACEOF
 2871 ac_clean_files=$ac_clean_files_save
 2872 
 2873 test $ac_write_fail = 0 ||
 2874   as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 2875 
 2876 
 2877 # configure is writing to config.log, and then calls config.status.
 2878 # config.status does its own redirection, appending to config.log.
 2879 # Unfortunately, on DOS this fails, as config.log is still kept open
 2880 # by configure, so config.status won't be able to write to it; its
 2881 # output is simply discarded.  So we exec the FD to /dev/null,
 2882 # effectively closing config.log, so it can be properly (re)opened and
 2883 # appended to by config.status.  When coming back to configure, we
 2884 # need to make the FD available again.
 2885 if test "$no_create" != yes; then
 2886   ac_cs_success=:
 2887   ac_config_status_args=
 2888   test "$silent" = yes &&
 2889     ac_config_status_args="$ac_config_status_args --quiet"
 2890   exec 5>/dev/null
 2891   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
 2892   exec 5>>config.log
 2893   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 2894   # would make configure fail if this is the last instruction.
 2895   $ac_cs_success || as_fn_exit 1
 2896 fi
 2897 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 2898   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 2899 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 2900 fi
 2901