source: trunk/configure @ 216

Last change on this file since 216 was 216, checked in by bas, 14 years ago

New configure options to determine version and where the libs are installed, borrowed from mpiexec

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