configure
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:938k
源码类别:

数学计算

开发平台:

Unix_Linux

  1.   ac_status=$?
  2.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3.   test $ac_status = 0; }; then
  4.     if test "$tmp_underscore" = "_"; then
  5.       gmp_cv_asm_x86_got_underscore=yes
  6.     else
  7.       gmp_cv_asm_x86_got_underscore=no
  8.     fi
  9.     break
  10.   fi
  11. done
  12. rm -f conftest* a.out b.out a.exe a_out.exe
  13. fi
  14. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gmp_cv_asm_x86_got_underscore" >&5
  15. $as_echo "$gmp_cv_asm_x86_got_underscore" >&6; }
  16. if test "$gmp_cv_asm_x86_got_underscore" = "yes"; then
  17. echo 'define(<GOT_GSYM_PREFIX>, <_>)' >>$gmp_tmpconfigm4
  18. else
  19. echo 'define(<GOT_GSYM_PREFIX>, <>)' >>$gmp_tmpconfigm4
  20. fi
  21. { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the assembler takes cl with shldl" >&5
  22. $as_echo_n "checking if the assembler takes cl with shldl... " >&6; }
  23. if test "${gmp_cv_asm_x86_shldl_cl+set}" = set; then :
  24.   $as_echo_n "(cached) " >&6
  25. else
  26.   cat >conftest.s <<EOF
  27. $gmp_cv_asm_text
  28. shldl %cl, %eax, %ebx
  29. EOF
  30. gmp_assemble="$CCAS $CFLAGS $CPPFLAGS conftest.s >conftest.out 2>&1"
  31. if { { eval echo ""$as_me":${as_lineno-$LINENO}: "$gmp_assemble""; } >&5
  32.   (eval $gmp_assemble) 2>&5
  33.   ac_status=$?
  34.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  35.   test $ac_status = 0; }; then
  36.   cat conftest.out >&5
  37.   gmp_cv_asm_x86_shldl_cl=yes
  38. else
  39.   cat conftest.out >&5
  40.   echo "configure: failed program was:" >&5
  41.   cat conftest.s >&5
  42.   gmp_cv_asm_x86_shldl_cl=no
  43. fi
  44. rm -f conftest*
  45. fi
  46. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gmp_cv_asm_x86_shldl_cl" >&5
  47. $as_echo "$gmp_cv_asm_x86_shldl_cl" >&6; }
  48. if test "$gmp_cv_asm_x86_shldl_cl" = "yes"; then
  49. echo 'define(<WANT_SHLDL_CL>, <1>)' >>$gmp_tmpconfigm4
  50. else
  51. echo 'define(<WANT_SHLDL_CL>, <0>)' >>$gmp_tmpconfigm4
  52. fi
  53.   case $enable_profiling in
  54.     prof | gprof)  # Check whether --enable-shared was given.
  55. if test "${enable_shared+set}" = set; then :
  56.   enableval=$enable_shared; p=${PACKAGE-default}
  57.     case $enableval in
  58.     yes) enable_shared=yes ;;
  59.     no) enable_shared=no ;;
  60.     *)
  61.       enable_shared=no
  62.       # Look at the argument we got.  We use all the common list separators.
  63.       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  64.       for pkg in $enableval; do
  65. IFS="$lt_save_ifs"
  66. if test "X$pkg" = "X$p"; then
  67.   enable_shared=yes
  68. fi
  69.       done
  70.       IFS="$lt_save_ifs"
  71.       ;;
  72.     esac
  73. else
  74.   enable_shared=yes
  75. fi
  76. { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to call x86 mcount" >&5
  77. $as_echo_n "checking how to call x86 mcount... " >&6; }
  78. cat >conftest.c <<EOF
  79. foo(){bar();}
  80. EOF
  81. if test "$enable_static" = yes; then
  82.   gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS -S conftest.c 1>&5"
  83.   if { { eval echo ""$as_me":${as_lineno-$LINENO}: "$gmp_asmout_compile""; } >&5
  84.   (eval $gmp_asmout_compile) 2>&5
  85.   ac_status=$?
  86.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  87.   test $ac_status = 0; }; then
  88.     if grep '.data' conftest.s >/dev/null; then
  89.       mcount_nonpic_reg=`sed -n '/esp/!s/.*movl.*,(%[a-z]*).*$/1/p' conftest.s`
  90.     else
  91.       mcount_nonpic_reg=
  92.     fi
  93.     mcount_nonpic_call=`grep 'call.*mcount' conftest.s`
  94.     if test -z "$mcount_nonpic_call"; then
  95.       as_fn_error "Cannot find mcount call for non-PIC" "$LINENO" 5
  96.     fi
  97.   else
  98.     as_fn_error "Cannot compile test program for non-PIC" "$LINENO" 5
  99.   fi
  100. fi
  101. if test "$enable_shared" = yes; then
  102.   gmp_asmout_compile="$CC $CFLAGS $CPPFLAGS $lt_prog_compiler_pic -S conftest.c 1>&5"
  103.   if { { eval echo ""$as_me":${as_lineno-$LINENO}: "$gmp_asmout_compile""; } >&5
  104.   (eval $gmp_asmout_compile) 2>&5
  105.   ac_status=$?
  106.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  107.   test $ac_status = 0; }; then
  108.     if grep '.data' conftest.s >/dev/null; then
  109.       case $lt_prog_compiler_pic in
  110.         *-DDLL_EXPORT*)
  111.           # Windows DLLs have non-PIC style mcount
  112.           mcount_pic_reg=`sed -n '/esp/!s/.*movl.*,(%[a-z]*).*$/1/p' conftest.s`
  113.           ;;
  114.         *)
  115.           mcount_pic_reg=`sed -n 's/.*GOTOFF.*,(%[a-z]*).*$/1/p' conftest.s`
  116.           ;;
  117.       esac
  118.     else
  119.       mcount_pic_reg=
  120.     fi
  121.     mcount_pic_call=`grep 'call.*mcount' conftest.s`
  122.     if test -z "$mcount_pic_call"; then
  123.       as_fn_error "Cannot find mcount call for PIC" "$LINENO" 5
  124.     fi
  125.   else
  126.     as_fn_error "Cannot compile test program for PIC" "$LINENO" 5
  127.   fi
  128. fi
  129. echo "define(<MCOUNT_NONPIC_REG>, <`$mcount_nonpic_reg'>)" >> $gmp_tmpconfigm4
  130. echo "define(<MCOUNT_NONPIC_CALL>,<`$mcount_nonpic_call'>)" >> $gmp_tmpconfigm4
  131. echo "define(<MCOUNT_PIC_REG>,    <`$mcount_pic_reg'>)" >> $gmp_tmpconfigm4
  132. echo "define(<MCOUNT_PIC_CALL>,   <`$mcount_pic_call'>)" >> $gmp_tmpconfigm4
  133. rm -f conftest.*
  134. { $as_echo "$as_me:${as_lineno-$LINENO}: result: determined" >&5
  135. $as_echo "determined" >&6; }
  136.  ;;
  137.   esac
  138.   case $host in
  139.     *-*-darwin*)
  140. echo "include_mpn(`x86/darwin.m4')" >> $gmp_tmpconfigm4i
  141.  ;;
  142.   esac
  143.           ;;
  144.         64)
  145. echo "include_mpn(`x86_64/x86_64-defs.m4')" >> $gmp_tmpconfigm4i
  146.           $as_echo "#define HAVE_HOST_CPU_FAMILY_x86_64 1" >>confdefs.h
  147.   case $host in
  148.     *-*-darwin*)
  149. echo "include_mpn(`x86_64/darwin.m4')" >> $gmp_tmpconfigm4i
  150.  ;;
  151.   esac
  152.           ;;
  153.       esac
  154.       ;;
  155.   esac
  156. fi
  157. # For --enable-minithres, prepend "minithres" to path so that its special
  158. # gmp-mparam.h will be used.
  159. if test $enable_minithres = yes; then
  160.   path="minithres $path"
  161. fi
  162. # Create link for gmp-mparam.h.
  163. gmp_mparam_source=
  164. for gmp_mparam_dir in $path; do
  165.   test "$no_create" = yes || rm -f gmp-mparam.h
  166.   tmp_file=$srcdir/mpn/$gmp_mparam_dir/gmp-mparam.h
  167.   if test -f $tmp_file; then
  168.     ac_config_links="$ac_config_links gmp-mparam.h:mpn/$gmp_mparam_dir/gmp-mparam.h"
  169.     gmp_srclinks="$gmp_srclinks gmp-mparam.h"
  170.     gmp_mparam_source=$tmp_file
  171.     break
  172.   fi
  173. done
  174. if test -z "$gmp_mparam_source"; then
  175.   as_fn_error "no version of gmp-mparam.h found in path: $path" "$LINENO" 5
  176. fi
  177. # For a helpful message from tune/tuneup.c
  178. gmp_mparam_suggest=$gmp_mparam_source
  179. if test "$gmp_mparam_dir" = generic; then
  180.   for i in $path; do break; done
  181.   if test "$i" != generic; then
  182.     gmp_mparam_suggest="new file $srcdir/mpn/$i/gmp-mparam.h"
  183.   fi
  184. fi
  185. cat >>confdefs.h <<_ACEOF
  186. #define GMP_MPARAM_H_SUGGEST "$gmp_mparam_source"
  187. _ACEOF
  188. # Copy any SQR_TOOM2_THRESHOLD from gmp-mparam.h to config.m4.
  189. # Some versions of sqr_basecase.asm use this.
  190. # Fat binaries do this on a per-file basis, so skip in that case.
  191. #
  192. if test -z "$fat_path"; then
  193.   tmp_gmp_karatsuba_sqr_threshold=`sed -n 's/^#define SQR_TOOM2_THRESHOLD[  ]*([0-9][0-9]*).*$/1/p' $gmp_mparam_source`
  194.   if test -n "$tmp_gmp_karatsuba_sqr_threshold"; then
  195. echo "define(<SQR_TOOM2_THRESHOLD>,<$tmp_gmp_karatsuba_sqr_threshold>)" >> $gmp_tmpconfigm4
  196.   fi
  197. fi
  198. # Sizes of some types, needed at preprocessing time.
  199. #
  200. # FIXME: The assumption that GMP_LIMB_BITS is 8*sizeof(mp_limb_t) might
  201. # be slightly rash, but it's true everywhere we know of and ought to be true
  202. # of any sensible system.  In a generic C build, grepping LONG_BIT out of
  203. # <limits.h> might be an alternative, for maximum portability.
  204. #
  205. # The cast to long int works around a bug in the HP C Compiler
  206. # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  207. # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  208. # This bug is HP SR number 8606223364.
  209. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5
  210. $as_echo_n "checking size of void *... " >&6; }
  211. if test "${ac_cv_sizeof_void_p+set}" = set; then :
  212.   $as_echo_n "(cached) " >&6
  213. else
  214.   if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p"        "$ac_includes_default"; then :
  215. else
  216.   if test "$ac_cv_type_void_p" = yes; then
  217.      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
  218. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  219. { as_fn_set_status 77
  220. as_fn_error "cannot compute sizeof (void *)
  221. See `config.log' for more details." "$LINENO" 5; }; }
  222.    else
  223.      ac_cv_sizeof_void_p=0
  224.    fi
  225. fi
  226. fi
  227. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5
  228. $as_echo "$ac_cv_sizeof_void_p" >&6; }
  229. cat >>confdefs.h <<_ACEOF
  230. #define SIZEOF_VOID_P $ac_cv_sizeof_void_p
  231. _ACEOF
  232. # The cast to long int works around a bug in the HP C Compiler
  233. # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  234. # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  235. # This bug is HP SR number 8606223364.
  236. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned short" >&5
  237. $as_echo_n "checking size of unsigned short... " >&6; }
  238. if test "${ac_cv_sizeof_unsigned_short+set}" = set; then :
  239.   $as_echo_n "(cached) " >&6
  240. else
  241.   if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned short))" "ac_cv_sizeof_unsigned_short"        "$ac_includes_default"; then :
  242. else
  243.   if test "$ac_cv_type_unsigned_short" = yes; then
  244.      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
  245. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  246. { as_fn_set_status 77
  247. as_fn_error "cannot compute sizeof (unsigned short)
  248. See `config.log' for more details." "$LINENO" 5; }; }
  249.    else
  250.      ac_cv_sizeof_unsigned_short=0
  251.    fi
  252. fi
  253. fi
  254. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned_short" >&5
  255. $as_echo "$ac_cv_sizeof_unsigned_short" >&6; }
  256. cat >>confdefs.h <<_ACEOF
  257. #define SIZEOF_UNSIGNED_SHORT $ac_cv_sizeof_unsigned_short
  258. _ACEOF
  259. # The cast to long int works around a bug in the HP C Compiler
  260. # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  261. # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  262. # This bug is HP SR number 8606223364.
  263. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned" >&5
  264. $as_echo_n "checking size of unsigned... " >&6; }
  265. if test "${ac_cv_sizeof_unsigned+set}" = set; then :
  266.   $as_echo_n "(cached) " >&6
  267. else
  268.   if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned))" "ac_cv_sizeof_unsigned"        "$ac_includes_default"; then :
  269. else
  270.   if test "$ac_cv_type_unsigned" = yes; then
  271.      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
  272. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  273. { as_fn_set_status 77
  274. as_fn_error "cannot compute sizeof (unsigned)
  275. See `config.log' for more details." "$LINENO" 5; }; }
  276.    else
  277.      ac_cv_sizeof_unsigned=0
  278.    fi
  279. fi
  280. fi
  281. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned" >&5
  282. $as_echo "$ac_cv_sizeof_unsigned" >&6; }
  283. cat >>confdefs.h <<_ACEOF
  284. #define SIZEOF_UNSIGNED $ac_cv_sizeof_unsigned
  285. _ACEOF
  286. # The cast to long int works around a bug in the HP C Compiler
  287. # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  288. # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  289. # This bug is HP SR number 8606223364.
  290. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned long" >&5
  291. $as_echo_n "checking size of unsigned long... " >&6; }
  292. if test "${ac_cv_sizeof_unsigned_long+set}" = set; then :
  293.   $as_echo_n "(cached) " >&6
  294. else
  295.   if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned long))" "ac_cv_sizeof_unsigned_long"        "$ac_includes_default"; then :
  296. else
  297.   if test "$ac_cv_type_unsigned_long" = yes; then
  298.      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
  299. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  300. { as_fn_set_status 77
  301. as_fn_error "cannot compute sizeof (unsigned long)
  302. See `config.log' for more details." "$LINENO" 5; }; }
  303.    else
  304.      ac_cv_sizeof_unsigned_long=0
  305.    fi
  306. fi
  307. fi
  308. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned_long" >&5
  309. $as_echo "$ac_cv_sizeof_unsigned_long" >&6; }
  310. cat >>confdefs.h <<_ACEOF
  311. #define SIZEOF_UNSIGNED_LONG $ac_cv_sizeof_unsigned_long
  312. _ACEOF
  313. # The cast to long int works around a bug in the HP C Compiler
  314. # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
  315. # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
  316. # This bug is HP SR number 8606223364.
  317. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of mp_limb_t" >&5
  318. $as_echo_n "checking size of mp_limb_t... " >&6; }
  319. if test "${ac_cv_sizeof_mp_limb_t+set}" = set; then :
  320.   $as_echo_n "(cached) " >&6
  321. else
  322.   if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (mp_limb_t))" "ac_cv_sizeof_mp_limb_t"        "#define __GMP_WITHIN_CONFIGURE 1   /* ignore template stuff */
  323. #define GMP_NAIL_BITS $GMP_NAIL_BITS
  324. #define GMP_LIMB_BITS 123
  325. $DEFN_LONG_LONG_LIMB
  326. #include "$srcdir/gmp-h.in"
  327. "; then :
  328. else
  329.   if test "$ac_cv_type_mp_limb_t" = yes; then
  330.      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
  331. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  332. { as_fn_set_status 77
  333. as_fn_error "cannot compute sizeof (mp_limb_t)
  334. See `config.log' for more details." "$LINENO" 5; }; }
  335.    else
  336.      ac_cv_sizeof_mp_limb_t=0
  337.    fi
  338. fi
  339. fi
  340. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_mp_limb_t" >&5
  341. $as_echo "$ac_cv_sizeof_mp_limb_t" >&6; }
  342. cat >>confdefs.h <<_ACEOF
  343. #define SIZEOF_MP_LIMB_T $ac_cv_sizeof_mp_limb_t
  344. _ACEOF
  345. if test "$ac_cv_sizeof_mp_limb_t" = 0; then
  346.   as_fn_error "Oops, mp_limb_t doesn't seem to work" "$LINENO" 5
  347. fi
  348. GMP_LIMB_BITS=`expr 8 * $ac_cv_sizeof_mp_limb_t`
  349. echo "define(<SIZEOF_UNSIGNED>,<$ac_cv_sizeof_unsigned>)" >> $gmp_tmpconfigm4
  350. # Check compiler limb size matches gmp-mparam.h
  351. #
  352. # FIXME: Some of the cycle counter objects in the tune directory depend on
  353. # the size of ulong, it'd be possible to check that here, though a mismatch
  354. # probably wouldn't want to be fatal, none of the libgmp assembler code
  355. # depends on ulong.
  356. #
  357. mparam_bits=`sed -n 's/^#define GMP_LIMB_BITS[  ][  ]*([0-9]*).*$/1/p' $gmp_mparam_source`
  358. if test -n "$mparam_bits" && test "$mparam_bits" -ne $GMP_LIMB_BITS; then
  359.   if test "$test_CFLAGS" = set; then
  360.     as_fn_error "Oops, mp_limb_t is $GMP_LIMB_BITS bits, but the assembler code
  361. in this configuration expects $mparam_bits bits.
  362. You appear to have set $CFLAGS, perhaps you also need to tell GMP the
  363. intended ABI, see "ABI and ISA" in the manual." "$LINENO" 5
  364.   else
  365.     as_fn_error "Oops, mp_limb_t is $GMP_LIMB_BITS bits, but the assembler code
  366. in this configuration expects $mparam_bits bits." "$LINENO" 5
  367.   fi
  368. fi
  369. echo "define(<GMP_LIMB_BITS>,$GMP_LIMB_BITS)" >> $gmp_tmpconfigm4
  370. echo "define(<GMP_NAIL_BITS>,$GMP_NAIL_BITS)" >> $gmp_tmpconfigm4
  371. echo "define(<GMP_NUMB_BITS>,eval(GMP_LIMB_BITS-GMP_NAIL_BITS))" >> $gmp_tmpconfigm4
  372. # Exclude the mpn random functions from mpbsd since that would drag in the
  373. # top-level rand things, all of which are unnecessary for libmp.  There's
  374. # other unnecessary objects too actually, if we could be bothered figuring
  375. # out exactly which they are.
  376. #
  377. mpn_objs_in_libmp=
  378. for i in $mpn_objs_in_libgmp; do
  379.   case $i in
  380.   *random*) ;;
  381.   *) mpn_objs_in_libmp="$mpn_objs_in_libmp $i" ;;
  382.   esac
  383. done
  384. # A recompiled sqr_basecase for use in the tune program, if necessary.
  385. TUNE_SQR_OBJ=
  386. test -d tune || mkdir tune
  387. case $sqr_basecase_source in
  388.   *.asm)
  389.     sqr_max=`sed -n 's/^def...(SQR_TOOM2_THRESHOLD_MAX, *([0-9]*))/1/p' $sqr_basecase_source`
  390.     if test -n "$sqr_max"; then
  391.       TUNE_SQR_OBJ=sqr_asm.o
  392. cat >>confdefs.h <<_ACEOF
  393. #define TUNE_SQR_TOOM2_MAX $sqr_max
  394. _ACEOF
  395.     fi
  396.     cat >tune/sqr_basecase.c <<EOF
  397. /* not sure that an empty file can compile, so put in a dummy */
  398. int sqr_basecase_dummy;
  399. EOF
  400.     ;;
  401.   *.c)
  402.     TUNE_SQR_OBJ=
  403.     $as_echo "#define TUNE_SQR_TOOM2_MAX SQR_TOOM2_MAX_GENERIC" >>confdefs.h
  404.     cat >tune/sqr_basecase.c <<EOF
  405. #define TUNE_PROGRAM_BUILD 1
  406. #define TUNE_PROGRAM_BUILD_SQR 1
  407. #include "mpn/sqr_basecase.c"
  408. EOF
  409.     ;;
  410. esac
  411. # Configs for demos/pexpr.c.
  412. #
  413. ac_config_files="$ac_config_files demos/pexpr-config.h:demos/pexpr-config-h.in"
  414. case $ac_cv_func_clock in
  415. yes) HAVE_CLOCK_01=1
  416.  ;;
  417. no)  HAVE_CLOCK_01=0 ;;
  418. esac
  419. case $ac_cv_func_cputime in
  420. yes) HAVE_CPUTIME_01=1
  421.  ;;
  422. no)  HAVE_CPUTIME_01=0 ;;
  423. esac
  424. case $ac_cv_func_getrusage in
  425. yes) HAVE_GETRUSAGE_01=1
  426.  ;;
  427. no)  HAVE_GETRUSAGE_01=0 ;;
  428. esac
  429. case $ac_cv_func_gettimeofday in
  430. yes) HAVE_GETTIMEOFDAY_01=1
  431.  ;;
  432. no)  HAVE_GETTIMEOFDAY_01=0 ;;
  433. esac
  434. case $ac_cv_func_sigaction in
  435. yes) HAVE_SIGACTION_01=1
  436.  ;;
  437. no)  HAVE_SIGACTION_01=0 ;;
  438. esac
  439. case $ac_cv_func_sigaltstack in
  440. yes) HAVE_SIGALTSTACK_01=1
  441.  ;;
  442. no)  HAVE_SIGALTSTACK_01=0 ;;
  443. esac
  444. case $ac_cv_func_sigstack in
  445. yes) HAVE_SIGSTACK_01=1
  446.  ;;
  447. no)  HAVE_SIGSTACK_01=0 ;;
  448. esac
  449. case $ac_cv_header_sys_resource_h in
  450. yes) HAVE_SYS_RESOURCE_H_01=1
  451.  ;;
  452. no)  HAVE_SYS_RESOURCE_H_01=0 ;;
  453. esac
  454. ac_fn_c_check_type "$LINENO" "stack_t" "ac_cv_type_stack_t" "#include <signal.h>
  455. "
  456. if test "x$ac_cv_type_stack_t" = x""yes; then :
  457. cat >>confdefs.h <<_ACEOF
  458. #define HAVE_STACK_T 1
  459. _ACEOF
  460. HAVE_STACK_T_01=1
  461. else
  462.   HAVE_STACK_T_01=0
  463. fi
  464. # Configs for demos/calc directory
  465. #
  466. # AC_SUBST+AC_CONFIG_FILES is used for calc-config.h, rather than AC_DEFINE+
  467. # AC_CONFIG_HEADERS, since with the latter automake (1.8) will then put the
  468. # directory (ie. demos/calc) into $(DEFAULT_INCLUDES) for every Makefile.in,
  469. # which would look very strange.
  470. #
  471. # -lcurses is required by libreadline.  On a typical SVR4 style system this
  472. # normally doesn't have to be given explicitly, since libreadline.so will
  473. # have a NEEDED record for it.  But if someone for some reason is using only
  474. # a static libreadline.a then we must give -lcurses.  Readline (as of
  475. # version 4.3) doesn't use libtool, so we can't rely on a .la to cover
  476. # necessary dependencies.
  477. #
  478. # On a couple of systems we've seen libreadline available, but the headers
  479. # not in the default include path, so check for readline/readline.h.  We've
  480. # also seen readline/history.h missing, not sure if that's just a broken
  481. # install or a very old version, but check that too.
  482. #
  483. ac_config_files="$ac_config_files demos/calc/calc-config.h:demos/calc/calc-config-h.in"
  484. LIBCURSES=
  485. if test $with_readline != no; then
  486.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tputs in -lncurses" >&5
  487. $as_echo_n "checking for tputs in -lncurses... " >&6; }
  488. if test "${ac_cv_lib_ncurses_tputs+set}" = set; then :
  489.   $as_echo_n "(cached) " >&6
  490. else
  491.   ac_check_lib_save_LIBS=$LIBS
  492. LIBS="-lncurses  $LIBS"
  493. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  494. /* end confdefs.h.  */
  495. /* Override any GCC internal prototype to avoid an error.
  496.    Use char because int might match the return type of a GCC
  497.    builtin and then its argument prototype would still apply.  */
  498. #ifdef __cplusplus
  499. extern "C"
  500. #endif
  501. char tputs ();
  502. int
  503. main ()
  504. {
  505. return tputs ();
  506.   ;
  507.   return 0;
  508. }
  509. _ACEOF
  510. if ac_fn_c_try_link "$LINENO"; then :
  511.   ac_cv_lib_ncurses_tputs=yes
  512. else
  513.   ac_cv_lib_ncurses_tputs=no
  514. fi
  515. rm -f core conftest.err conftest.$ac_objext 
  516.     conftest$ac_exeext conftest.$ac_ext
  517. LIBS=$ac_check_lib_save_LIBS
  518. fi
  519. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_tputs" >&5
  520. $as_echo "$ac_cv_lib_ncurses_tputs" >&6; }
  521. if test "x$ac_cv_lib_ncurses_tputs" = x""yes; then :
  522.   LIBCURSES=-lncurses
  523. else
  524.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tputs in -lcurses" >&5
  525. $as_echo_n "checking for tputs in -lcurses... " >&6; }
  526. if test "${ac_cv_lib_curses_tputs+set}" = set; then :
  527.   $as_echo_n "(cached) " >&6
  528. else
  529.   ac_check_lib_save_LIBS=$LIBS
  530. LIBS="-lcurses  $LIBS"
  531. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  532. /* end confdefs.h.  */
  533. /* Override any GCC internal prototype to avoid an error.
  534.    Use char because int might match the return type of a GCC
  535.    builtin and then its argument prototype would still apply.  */
  536. #ifdef __cplusplus
  537. extern "C"
  538. #endif
  539. char tputs ();
  540. int
  541. main ()
  542. {
  543. return tputs ();
  544.   ;
  545.   return 0;
  546. }
  547. _ACEOF
  548. if ac_fn_c_try_link "$LINENO"; then :
  549.   ac_cv_lib_curses_tputs=yes
  550. else
  551.   ac_cv_lib_curses_tputs=no
  552. fi
  553. rm -f core conftest.err conftest.$ac_objext 
  554.     conftest$ac_exeext conftest.$ac_ext
  555. LIBS=$ac_check_lib_save_LIBS
  556. fi
  557. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_tputs" >&5
  558. $as_echo "$ac_cv_lib_curses_tputs" >&6; }
  559. if test "x$ac_cv_lib_curses_tputs" = x""yes; then :
  560.   LIBCURSES=-lcurses
  561. fi
  562. fi
  563. fi
  564. use_readline=$with_readline
  565. if test $with_readline = detect; then
  566.   use_readline=no
  567.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5
  568. $as_echo_n "checking for readline in -lreadline... " >&6; }
  569. if test "${ac_cv_lib_readline_readline+set}" = set; then :
  570.   $as_echo_n "(cached) " >&6
  571. else
  572.   ac_check_lib_save_LIBS=$LIBS
  573. LIBS="-lreadline $LIBCURSES $LIBS"
  574. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  575. /* end confdefs.h.  */
  576. /* Override any GCC internal prototype to avoid an error.
  577.    Use char because int might match the return type of a GCC
  578.    builtin and then its argument prototype would still apply.  */
  579. #ifdef __cplusplus
  580. extern "C"
  581. #endif
  582. char readline ();
  583. int
  584. main ()
  585. {
  586. return readline ();
  587.   ;
  588.   return 0;
  589. }
  590. _ACEOF
  591. if ac_fn_c_try_link "$LINENO"; then :
  592.   ac_cv_lib_readline_readline=yes
  593. else
  594.   ac_cv_lib_readline_readline=no
  595. fi
  596. rm -f core conftest.err conftest.$ac_objext 
  597.     conftest$ac_exeext conftest.$ac_ext
  598. LIBS=$ac_check_lib_save_LIBS
  599. fi
  600. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5
  601. $as_echo "$ac_cv_lib_readline_readline" >&6; }
  602. if test "x$ac_cv_lib_readline_readline" = x""yes; then :
  603.   ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
  604. if test "x$ac_cv_header_readline_readline_h" = x""yes; then :
  605.   ac_fn_c_check_header_mongrel "$LINENO" "readline/history.h" "ac_cv_header_readline_history_h" "$ac_includes_default"
  606. if test "x$ac_cv_header_readline_history_h" = x""yes; then :
  607.   use_readline=yes
  608. fi
  609. fi
  610. fi
  611.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking readline detected" >&5
  612. $as_echo_n "checking readline detected... " >&6; }
  613.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $use_readline" >&5
  614. $as_echo "$use_readline" >&6; }
  615. fi
  616. if test $use_readline = yes; then
  617.   WITH_READLINE_01=1
  618.   LIBREADLINE=-lreadline
  619. else
  620.   WITH_READLINE_01=0
  621. fi
  622. for ac_prog in 'bison -y' byacc
  623. do
  624.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  625. set dummy $ac_prog; ac_word=$2
  626. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  627. $as_echo_n "checking for $ac_word... " >&6; }
  628. if test "${ac_cv_prog_YACC+set}" = set; then :
  629.   $as_echo_n "(cached) " >&6
  630. else
  631.   if test -n "$YACC"; then
  632.   ac_cv_prog_YACC="$YACC" # Let the user override the test.
  633. else
  634. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  635. for as_dir in $PATH
  636. do
  637.   IFS=$as_save_IFS
  638.   test -z "$as_dir" && as_dir=.
  639.     for ac_exec_ext in '' $ac_executable_extensions; do
  640.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  641.     ac_cv_prog_YACC="$ac_prog"
  642.     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  643.     break 2
  644.   fi
  645. done
  646.   done
  647. IFS=$as_save_IFS
  648. fi
  649. fi
  650. YACC=$ac_cv_prog_YACC
  651. if test -n "$YACC"; then
  652.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5
  653. $as_echo "$YACC" >&6; }
  654. else
  655.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  656. $as_echo "no" >&6; }
  657. fi
  658.   test -n "$YACC" && break
  659. done
  660. test -n "$YACC" || YACC="yacc"
  661. for ac_prog in flex lex
  662. do
  663.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  664. set dummy $ac_prog; ac_word=$2
  665. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  666. $as_echo_n "checking for $ac_word... " >&6; }
  667. if test "${ac_cv_prog_LEX+set}" = set; then :
  668.   $as_echo_n "(cached) " >&6
  669. else
  670.   if test -n "$LEX"; then
  671.   ac_cv_prog_LEX="$LEX" # Let the user override the test.
  672. else
  673. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  674. for as_dir in $PATH
  675. do
  676.   IFS=$as_save_IFS
  677.   test -z "$as_dir" && as_dir=.
  678.     for ac_exec_ext in '' $ac_executable_extensions; do
  679.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  680.     ac_cv_prog_LEX="$ac_prog"
  681.     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  682.     break 2
  683.   fi
  684. done
  685.   done
  686. IFS=$as_save_IFS
  687. fi
  688. fi
  689. LEX=$ac_cv_prog_LEX
  690. if test -n "$LEX"; then
  691.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5
  692. $as_echo "$LEX" >&6; }
  693. else
  694.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  695. $as_echo "no" >&6; }
  696. fi
  697.   test -n "$LEX" && break
  698. done
  699. test -n "$LEX" || LEX=":"
  700. if test "x$LEX" != "x:"; then
  701.   cat >conftest.l <<_ACEOF
  702. %%
  703. a { ECHO; }
  704. b { REJECT; }
  705. c { yymore (); }
  706. d { yyless (1); }
  707. e { yyless (input () != 0); }
  708. f { unput (yytext[0]); }
  709. . { BEGIN INITIAL; }
  710. %%
  711. #ifdef YYTEXT_POINTER
  712. extern char *yytext;
  713. #endif
  714. int
  715. main (void)
  716. {
  717.   return ! yylex () + ! yywrap ();
  718. }
  719. _ACEOF
  720. { { ac_try="$LEX conftest.l"
  721. case "(($ac_try" in
  722.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  723.   *) ac_try_echo=$ac_try;;
  724. esac
  725. eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo""
  726. $as_echo "$ac_try_echo"; } >&5
  727.   (eval "$LEX conftest.l") 2>&5
  728.   ac_status=$?
  729.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  730.   test $ac_status = 0; }
  731. { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5
  732. $as_echo_n "checking lex output file root... " >&6; }
  733. if test "${ac_cv_prog_lex_root+set}" = set; then :
  734.   $as_echo_n "(cached) " >&6
  735. else
  736. if test -f lex.yy.c; then
  737.   ac_cv_prog_lex_root=lex.yy
  738. elif test -f lexyy.c; then
  739.   ac_cv_prog_lex_root=lexyy
  740. else
  741.   as_fn_error "cannot find output from $LEX; giving up" "$LINENO" 5
  742. fi
  743. fi
  744. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5
  745. $as_echo "$ac_cv_prog_lex_root" >&6; }
  746. LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
  747. if test -z "${LEXLIB+set}"; then
  748.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5
  749. $as_echo_n "checking lex library... " >&6; }
  750. if test "${ac_cv_lib_lex+set}" = set; then :
  751.   $as_echo_n "(cached) " >&6
  752. else
  753.     ac_save_LIBS=$LIBS
  754.     ac_cv_lib_lex='none needed'
  755.     for ac_lib in '' -lfl -ll; do
  756.       LIBS="$ac_lib $ac_save_LIBS"
  757.       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  758. /* end confdefs.h.  */
  759. `cat $LEX_OUTPUT_ROOT.c`
  760. _ACEOF
  761. if ac_fn_c_try_link "$LINENO"; then :
  762.   ac_cv_lib_lex=$ac_lib
  763. fi
  764. rm -f core conftest.err conftest.$ac_objext 
  765.     conftest$ac_exeext conftest.$ac_ext
  766.       test "$ac_cv_lib_lex" != 'none needed' && break
  767.     done
  768.     LIBS=$ac_save_LIBS
  769. fi
  770. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5
  771. $as_echo "$ac_cv_lib_lex" >&6; }
  772.   test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex
  773. fi
  774. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5
  775. $as_echo_n "checking whether yytext is a pointer... " >&6; }
  776. if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then :
  777.   $as_echo_n "(cached) " >&6
  778. else
  779.   # POSIX says lex can declare yytext either as a pointer or an array; the
  780. # default is implementation-dependent.  Figure out which it is, since
  781. # not all implementations provide the %pointer and %array declarations.
  782. ac_cv_prog_lex_yytext_pointer=no
  783. ac_save_LIBS=$LIBS
  784. LIBS="$LEXLIB $ac_save_LIBS"
  785. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  786. /* end confdefs.h.  */
  787. #define YYTEXT_POINTER 1
  788. `cat $LEX_OUTPUT_ROOT.c`
  789. _ACEOF
  790. if ac_fn_c_try_link "$LINENO"; then :
  791.   ac_cv_prog_lex_yytext_pointer=yes
  792. fi
  793. rm -f core conftest.err conftest.$ac_objext 
  794.     conftest$ac_exeext conftest.$ac_ext
  795. LIBS=$ac_save_LIBS
  796. fi
  797. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5
  798. $as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; }
  799. if test $ac_cv_prog_lex_yytext_pointer = yes; then
  800. $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h
  801. fi
  802. rm -f conftest.l $LEX_OUTPUT_ROOT.c
  803. fi
  804. if test "$LEX" = :; then
  805.   LEX=${am_missing_run}flex
  806. fi
  807. # Configs for demos/expr directory
  808. #
  809. # Libtool already runs an AC_CHECK_TOOL for ranlib, but we give
  810. # AC_PROG_RANLIB anyway since automake is supposed to complain if it's not
  811. # called.  (Automake 1.8.4 doesn't, at least not when the only library is in
  812. # an EXTRA_LIBRARIES.)
  813. #
  814. if test -n "$ac_tool_prefix"; then
  815.   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  816. set dummy ${ac_tool_prefix}ranlib; ac_word=$2
  817. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  818. $as_echo_n "checking for $ac_word... " >&6; }
  819. if test "${ac_cv_prog_RANLIB+set}" = set; then :
  820.   $as_echo_n "(cached) " >&6
  821. else
  822.   if test -n "$RANLIB"; then
  823.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  824. else
  825. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  826. for as_dir in $PATH
  827. do
  828.   IFS=$as_save_IFS
  829.   test -z "$as_dir" && as_dir=.
  830.     for ac_exec_ext in '' $ac_executable_extensions; do
  831.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  832.     ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
  833.     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  834.     break 2
  835.   fi
  836. done
  837.   done
  838. IFS=$as_save_IFS
  839. fi
  840. fi
  841. RANLIB=$ac_cv_prog_RANLIB
  842. if test -n "$RANLIB"; then
  843.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
  844. $as_echo "$RANLIB" >&6; }
  845. else
  846.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  847. $as_echo "no" >&6; }
  848. fi
  849. fi
  850. if test -z "$ac_cv_prog_RANLIB"; then
  851.   ac_ct_RANLIB=$RANLIB
  852.   # Extract the first word of "ranlib", so it can be a program name with args.
  853. set dummy ranlib; ac_word=$2
  854. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  855. $as_echo_n "checking for $ac_word... " >&6; }
  856. if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
  857.   $as_echo_n "(cached) " >&6
  858. else
  859.   if test -n "$ac_ct_RANLIB"; then
  860.   ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
  861. else
  862. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  863. for as_dir in $PATH
  864. do
  865.   IFS=$as_save_IFS
  866.   test -z "$as_dir" && as_dir=.
  867.     for ac_exec_ext in '' $ac_executable_extensions; do
  868.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  869.     ac_cv_prog_ac_ct_RANLIB="ranlib"
  870.     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  871.     break 2
  872.   fi
  873. done
  874.   done
  875. IFS=$as_save_IFS
  876. fi
  877. fi
  878. ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
  879. if test -n "$ac_ct_RANLIB"; then
  880.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
  881. $as_echo "$ac_ct_RANLIB" >&6; }
  882. else
  883.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  884. $as_echo "no" >&6; }
  885. fi
  886.   if test "x$ac_ct_RANLIB" = x; then
  887.     RANLIB=":"
  888.   else
  889.     case $cross_compiling:$ac_tool_warned in
  890. yes:)
  891. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
  892. $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
  893. ac_tool_warned=yes ;;
  894. esac
  895.     RANLIB=$ac_ct_RANLIB
  896.   fi
  897. else
  898.   RANLIB="$ac_cv_prog_RANLIB"
  899. fi
  900. # Create config.m4.
  901. echo "creating $gmp_configm4"
  902. echo "d""nl $gmp_configm4.  Generated automatically by configure." > $gmp_configm4
  903. if test -f $gmp_tmpconfigm4; then
  904.   echo "changequote(<,>)" >> $gmp_configm4
  905.   echo "ifdef(<__CONFIG_M4_INCLUDED__>,,<" >> $gmp_configm4
  906.   cat $gmp_tmpconfigm4 >> $gmp_configm4
  907.   echo ">)" >> $gmp_configm4
  908.   echo "changequote(`,')" >> $gmp_configm4
  909.   rm $gmp_tmpconfigm4
  910. fi
  911. echo "ifdef(`__CONFIG_M4_INCLUDED__',,`" >> $gmp_configm4
  912. if test -f $gmp_tmpconfigm4i; then
  913.   cat $gmp_tmpconfigm4i >> $gmp_configm4
  914.   rm $gmp_tmpconfigm4i
  915. fi
  916. if test -f $gmp_tmpconfigm4p; then
  917.   cat $gmp_tmpconfigm4p >> $gmp_configm4
  918.   rm $gmp_tmpconfigm4p
  919. fi
  920. echo "')" >> $gmp_configm4
  921. echo "define(`__CONFIG_M4_INCLUDED__')" >> $gmp_configm4
  922. # Create Makefiles
  923. # FIXME: Upcoming version of autoconf/automake may not like broken lines.
  924. #        Right now automake isn't accepting the new AC_CONFIG_FILES scheme.
  925. ac_config_files="$ac_config_files Makefile mpbsd/Makefile mpf/Makefile mpn/Makefile mpq/Makefile mpz/Makefile printf/Makefile scanf/Makefile cxx/Makefile tests/Makefile tests/devel/Makefile tests/mpbsd/Makefile tests/mpf/Makefile tests/mpn/Makefile tests/mpq/Makefile tests/mpz/Makefile tests/rand/Makefile tests/misc/Makefile tests/cxx/Makefile doc/Makefile tune/Makefile demos/Makefile demos/calc/Makefile demos/expr/Makefile gmp.h:gmp-h.in mp.h:mp-h.in"
  926. cat >confcache <<_ACEOF
  927. # This file is a shell script that caches the results of configure
  928. # tests run on this system so they can be shared between configure
  929. # scripts and configure runs, see configure's option --config-cache.
  930. # It is not useful on other systems.  If it contains results you don't
  931. # want to keep, you may remove or edit it.
  932. #
  933. # config.status only pays attention to the cache file if you give it
  934. # the --recheck option to rerun configure.
  935. #
  936. # `ac_cv_env_foo' variables (set or unset) will be overridden when
  937. # loading this file, other *unset* `ac_cv_foo' will be assigned the
  938. # following values.
  939. _ACEOF
  940. # The following way of writing the cache mishandles newlines in values,
  941. # but we know of no workaround that is simple, portable, and efficient.
  942. # So, we kill variables containing newlines.
  943. # Ultrix sh set writes to stderr and can't be redirected directly,
  944. # and sets the high bit in the cache file unless we assign to the vars.
  945. (
  946.   for ac_var in `(set) 2>&1 | sed -n 's/^([a-zA-Z_][a-zA-Z0-9_]*)=.*/1/p'`; do
  947.     eval ac_val=$$ac_var
  948.     case $ac_val in #(
  949.     *${as_nl}*)
  950.       case $ac_var in #(
  951.       *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
  952. $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
  953.       esac
  954.       case $ac_var in #(
  955.       _ | IFS | as_nl) ;; #(
  956.       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
  957.       *) { eval $ac_var=; unset $ac_var;} ;;
  958.       esac ;;
  959.     esac
  960.   done
  961.   (set) 2>&1 |
  962.     case $as_nl`(ac_space=' '; set) 2>&1` in #(
  963.     *${as_nl}ac_space= *)
  964.       # `set' does not quote correctly, so add quotes: double-quote
  965.       # substitution turns \\ into \, and sed turns \ into .
  966.       sed -n 
  967. "s/'/'\\''/g;
  968.   s/^\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\)=\(.*\)/\1='\2'/p"
  969.       ;; #(
  970.     *)
  971.       # `set' quotes correctly as required by POSIX, so do not add quotes.
  972.       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
  973.       ;;
  974.     esac |
  975.     sort
  976. ) |
  977.   sed '
  978.      /^ac_cv_env_/b end
  979.      t clear
  980.      :clear
  981.      s/^([^=]*)=(.*[{}].*)$/test "${1+set}" = set || &/
  982.      t end
  983.      s/^([^=]*)=(.*)$/1=${1=2}/
  984.      :end' >>confcache
  985. if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  986.   if test -w "$cache_file"; then
  987.     test "x$cache_file" != "x/dev/null" &&
  988.       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
  989. $as_echo "$as_me: updating cache $cache_file" >&6;}
  990.     cat confcache >$cache_file
  991.   else
  992.     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
  993. $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  994.   fi
  995. fi
  996. rm -f confcache
  997. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  998. # Let make expand exec_prefix.
  999. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  1000. DEFS=-DHAVE_CONFIG_H
  1001. ac_libobjs=
  1002. ac_ltlibobjs=
  1003. for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  1004.   # 1. Remove the extension, and $U if already installed.
  1005.   ac_script='s/$U././;s/.o$//;s/.obj$//'
  1006.   ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
  1007.   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
  1008.   #    will be set to the directory where LIBOBJS objects are built.
  1009.   as_fn_append ac_libobjs " ${LIBOBJDIR}$ac_i$U.$ac_objext"
  1010.   as_fn_append ac_ltlibobjs " ${LIBOBJDIR}$ac_i"'$U.lo'
  1011. done
  1012. LIBOBJS=$ac_libobjs
  1013. LTLIBOBJS=$ac_ltlibobjs
  1014.  if test -n "$EXEEXT"; then
  1015.   am__EXEEXT_TRUE=
  1016.   am__EXEEXT_FALSE='#'
  1017. else
  1018.   am__EXEEXT_TRUE='#'
  1019.   am__EXEEXT_FALSE=
  1020. fi
  1021. if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
  1022.   as_fn_error "conditional "MAINTAINER_MODE" was never defined.
  1023. Usually this means the macro was only invoked conditionally." "$LINENO" 5
  1024. fi
  1025. if test -z "${WANT_MPBSD_TRUE}" && test -z "${WANT_MPBSD_FALSE}"; then
  1026.   as_fn_error "conditional "WANT_MPBSD" was never defined.
  1027. Usually this means the macro was only invoked conditionally." "$LINENO" 5
  1028. fi
  1029. if test -z "${WANT_CXX_TRUE}" && test -z "${WANT_CXX_FALSE}"; then
  1030.   as_fn_error "conditional "WANT_CXX" was never defined.
  1031. Usually this means the macro was only invoked conditionally." "$LINENO" 5
  1032. fi
  1033. if test -z "${ENABLE_STATIC_TRUE}" && test -z "${ENABLE_STATIC_FALSE}"; then
  1034.   as_fn_error "conditional "ENABLE_STATIC" was never defined.
  1035. Usually this means the macro was only invoked conditionally." "$LINENO" 5
  1036. fi
  1037. : ${CONFIG_STATUS=./config.status}
  1038. ac_write_fail=0
  1039. ac_clean_files_save=$ac_clean_files
  1040. ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  1041. { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
  1042. $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
  1043. as_write_fail=0
  1044. cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
  1045. #! $SHELL
  1046. # Generated by $as_me.
  1047. # Run this file to recreate the current configuration.
  1048. # Compiler output produced by configure, useful for debugging
  1049. # configure, is in config.log if it exists.
  1050. debug=false
  1051. ac_cs_recheck=false
  1052. ac_cs_silent=false
  1053. SHELL=${CONFIG_SHELL-$SHELL}
  1054. export SHELL
  1055. _ASEOF
  1056. cat >>$CONFIG_STATUS <<_ASEOF || as_write_fail=1
  1057. ## -------------------- ##
  1058. ## M4sh Initialization. ##
  1059. ## -------------------- ##
  1060. # Be more Bourne compatible
  1061. DUALCASE=1; export DUALCASE # for MKS sh
  1062. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  1063.   emulate sh
  1064.   NULLCMD=:
  1065.   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  1066.   # is contrary to our usage.  Disable this feature.
  1067.   alias -g '${1+"$@"}'='"$@"'
  1068.   setopt NO_GLOB_SUBST
  1069. else
  1070.   case `(set -o) 2>/dev/null` in #(
  1071.   *posix*) :
  1072.     set -o posix ;; #(
  1073.   *) :
  1074.      ;;
  1075. esac
  1076. fi
  1077. as_nl='
  1078. '
  1079. export as_nl
  1080. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  1081. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  1082. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  1083. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  1084. # Prefer a ksh shell builtin over an external printf program on Solaris,
  1085. # but without wasting forks for bash or zsh.
  1086. if test -z "$BASH_VERSION$ZSH_VERSION" 
  1087.     && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  1088.   as_echo='print -r --'
  1089.   as_echo_n='print -rn --'
  1090. elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  1091.   as_echo='printf %sn'
  1092.   as_echo_n='printf %s'
  1093. else
  1094.   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  1095.     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  1096.     as_echo_n='/usr/ucb/echo -n'
  1097.   else
  1098.     as_echo_body='eval expr "X$1" : "X\(.*\)"'
  1099.     as_echo_n_body='eval
  1100.       arg=$1;
  1101.       case $arg in #(
  1102.       *"$as_nl"*)
  1103. expr "X$arg" : "X\(.*\)$as_nl";
  1104. arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;;
  1105.       esac;
  1106.       expr "X$arg" : "X\(.*\)" | tr -d "$as_nl"
  1107.     '
  1108.     export as_echo_n_body
  1109.     as_echo_n='sh -c $as_echo_n_body as_echo'
  1110.   fi
  1111.   export as_echo_body
  1112.   as_echo='sh -c $as_echo_body as_echo'
  1113. fi
  1114. # The user is always right.
  1115. if test "${PATH_SEPARATOR+set}" != set; then
  1116.   PATH_SEPARATOR=:
  1117.   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  1118.     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  1119.       PATH_SEPARATOR=';'
  1120.   }
  1121. fi
  1122. # IFS
  1123. # We need space, tab and new line, in precisely that order.  Quoting is
  1124. # there to prevent editors from complaining about space-tab.
  1125. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  1126. # splitting by setting IFS to empty value.)
  1127. IFS=" "" $as_nl"
  1128. # Find who we are.  Look in the path if we contain no directory separator.
  1129. case $0 in #((
  1130.   *[\/]* ) as_myself=$0 ;;
  1131.   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1132. for as_dir in $PATH
  1133. do
  1134.   IFS=$as_save_IFS
  1135.   test -z "$as_dir" && as_dir=.
  1136.     test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  1137.   done
  1138. IFS=$as_save_IFS
  1139.      ;;
  1140. esac
  1141. # We did not find ourselves, most probably we were run as `sh COMMAND'
  1142. # in which case we are not to be found in the path.
  1143. if test "x$as_myself" = x; then
  1144.   as_myself=$0
  1145. fi
  1146. if test ! -f "$as_myself"; then
  1147.   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  1148.   exit 1
  1149. fi
  1150. # Unset variables that we do not need and which cause bugs (e.g. in
  1151. # pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
  1152. # suppresses any "Segmentation fault" message there.  '((' could
  1153. # trigger a bug in pdksh 5.2.14.
  1154. for as_var in BASH_ENV ENV MAIL MAILPATH
  1155. do eval test x${$as_var+set} = xset 
  1156.   && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  1157. done
  1158. PS1='$ '
  1159. PS2='> '
  1160. PS4='+ '
  1161. # NLS nuisances.
  1162. LC_ALL=C
  1163. export LC_ALL
  1164. LANGUAGE=C
  1165. export LANGUAGE
  1166. # CDPATH.
  1167. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  1168. # as_fn_error ERROR [LINENO LOG_FD]
  1169. # ---------------------------------
  1170. # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  1171. # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  1172. # script with status $?, using 1 if that was 0.
  1173. as_fn_error ()
  1174. {
  1175.   as_status=$?; test $as_status -eq 0 && as_status=1
  1176.   if test "$3"; then
  1177.     as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1178.     $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
  1179.   fi
  1180.   $as_echo "$as_me: error: $1" >&2
  1181.   as_fn_exit $as_status
  1182. } # as_fn_error
  1183. # as_fn_set_status STATUS
  1184. # -----------------------
  1185. # Set $? to STATUS, without forking.
  1186. as_fn_set_status ()
  1187. {
  1188.   return $1
  1189. } # as_fn_set_status
  1190. # as_fn_exit STATUS
  1191. # -----------------
  1192. # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  1193. as_fn_exit ()
  1194. {
  1195.   set +e
  1196.   as_fn_set_status $1
  1197.   exit $1
  1198. } # as_fn_exit
  1199. # as_fn_unset VAR
  1200. # ---------------
  1201. # Portably unset VAR.
  1202. as_fn_unset ()
  1203. {
  1204.   { eval $1=; unset $1;}
  1205. }
  1206. as_unset=as_fn_unset
  1207. # as_fn_append VAR VALUE
  1208. # ----------------------
  1209. # Append the text in VALUE to the end of the definition contained in VAR. Take
  1210. # advantage of any shell optimizations that allow amortized linear growth over
  1211. # repeated appends, instead of the typical quadratic growth present in naive
  1212. # implementations.
  1213. if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null; then :
  1214.   eval 'as_fn_append ()
  1215.   {
  1216.     eval $1+=$2
  1217.   }'
  1218. else
  1219.   as_fn_append ()
  1220.   {
  1221.     eval $1=$$1$2
  1222.   }
  1223. fi # as_fn_append
  1224. # as_fn_arith ARG...
  1225. # ------------------
  1226. # Perform arithmetic evaluation on the ARGs, and store the result in the
  1227. # global $as_val. Take advantage of shells that can avoid forks. The arguments
  1228. # must be portable across $(()) and expr.
  1229. if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null; then :
  1230.   eval 'as_fn_arith ()
  1231.   {
  1232.     as_val=$(( $* ))
  1233.   }'
  1234. else
  1235.   as_fn_arith ()
  1236.   {
  1237.     as_val=`expr "$@" || test $? -eq 1`
  1238.   }
  1239. fi # as_fn_arith
  1240. if expr a : '(a)' >/dev/null 2>&1 &&
  1241.    test "X`expr 00001 : '.*(...)'`" = X001; then
  1242.   as_expr=expr
  1243. else
  1244.   as_expr=false
  1245. fi
  1246. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  1247.   as_basename=basename
  1248. else
  1249.   as_basename=false
  1250. fi
  1251. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  1252.   as_dirname=dirname
  1253. else
  1254.   as_dirname=false
  1255. fi
  1256. as_me=`$as_basename -- "$0" ||
  1257. $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | 
  1258.  X"$0" : 'X(//)$' | 
  1259.  X"$0" : 'X(/)' | . 2>/dev/null ||
  1260. $as_echo X/"$0" |
  1261.     sed '/^.*/([^/][^/]*)/*$/{
  1262.     s//1/
  1263.     q
  1264.   }
  1265.   /^X/(//)$/{
  1266.     s//1/
  1267.     q
  1268.   }
  1269.   /^X/(/).*/{
  1270.     s//1/
  1271.     q
  1272.   }
  1273.   s/.*/./; q'`
  1274. # Avoid depending upon Character Ranges.
  1275. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  1276. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  1277. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  1278. as_cr_digits='0123456789'
  1279. as_cr_alnum=$as_cr_Letters$as_cr_digits
  1280. ECHO_C= ECHO_N= ECHO_T=
  1281. case `echo -n x` in #(((((
  1282. -n*)
  1283.   case `echo 'xyc'` in
  1284.   *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  1285.   xy)  ECHO_C='c';;
  1286.   *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
  1287.        ECHO_T=' ';;
  1288.   esac;;
  1289. *)
  1290.   ECHO_N='-n';;
  1291. esac
  1292. rm -f conf$$ conf$$.exe conf$$.file
  1293. if test -d conf$$.dir; then
  1294.   rm -f conf$$.dir/conf$$.file
  1295. else
  1296.   rm -f conf$$.dir
  1297.   mkdir conf$$.dir 2>/dev/null
  1298. fi
  1299. if (echo >conf$$.file) 2>/dev/null; then
  1300.   if ln -s conf$$.file conf$$ 2>/dev/null; then
  1301.     as_ln_s='ln -s'
  1302.     # ... but there are two gotchas:
  1303.     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  1304.     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  1305.     # In both cases, we have to default to `cp -p'.
  1306.     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  1307.       as_ln_s='cp -p'
  1308.   elif ln conf$$.file conf$$ 2>/dev/null; then
  1309.     as_ln_s=ln
  1310.   else
  1311.     as_ln_s='cp -p'
  1312.   fi
  1313. else
  1314.   as_ln_s='cp -p'
  1315. fi
  1316. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  1317. rmdir conf$$.dir 2>/dev/null
  1318. # as_fn_mkdir_p
  1319. # -------------
  1320. # Create "$as_dir" as a directory, including parents if necessary.
  1321. as_fn_mkdir_p ()
  1322. {
  1323.   case $as_dir in #(
  1324.   -*) as_dir=./$as_dir;;
  1325.   esac
  1326.   test -d "$as_dir" || eval $as_mkdir_p || {
  1327.     as_dirs=
  1328.     while :; do
  1329.       case $as_dir in #(
  1330.       *'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #'(
  1331.       *) as_qdir=$as_dir;;
  1332.       esac
  1333.       as_dirs="'$as_qdir' $as_dirs"
  1334.       as_dir=`$as_dirname -- "$as_dir" ||
  1335. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  1336.  X"$as_dir" : 'X(//)[^/]' | 
  1337.  X"$as_dir" : 'X(//)$' | 
  1338.  X"$as_dir" : 'X(/)' | . 2>/dev/null ||
  1339. $as_echo X"$as_dir" |
  1340.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  1341.     s//1/
  1342.     q
  1343.   }
  1344.   /^X(//)[^/].*/{
  1345.     s//1/
  1346.     q
  1347.   }
  1348.   /^X(//)$/{
  1349.     s//1/
  1350.     q
  1351.   }
  1352.   /^X(/).*/{
  1353.     s//1/
  1354.     q
  1355.   }
  1356.   s/.*/./; q'`
  1357.       test -d "$as_dir" && break
  1358.     done
  1359.     test -z "$as_dirs" || eval "mkdir $as_dirs"
  1360.   } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
  1361. } # as_fn_mkdir_p
  1362. if mkdir -p . 2>/dev/null; then
  1363.   as_mkdir_p='mkdir -p "$as_dir"'
  1364. else
  1365.   test -d ./-p && rmdir ./-p
  1366.   as_mkdir_p=false
  1367. fi
  1368. if test -x / >/dev/null 2>&1; then
  1369.   as_test_x='test -x'
  1370. else
  1371.   if ls -dL / >/dev/null 2>&1; then
  1372.     as_ls_L_option=L
  1373.   else
  1374.     as_ls_L_option=
  1375.   fi
  1376.   as_test_x='
  1377.     eval sh -c '''
  1378.       if test -d "$1"; then
  1379. test -d "$1/.";
  1380.       else
  1381. case $1 in #(
  1382. -*)set "./$1";;
  1383. esac;
  1384. case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
  1385. ???[sx]*):;;*)false;;esac;fi
  1386.     ''' sh
  1387.   '
  1388. fi
  1389. as_executable_p=$as_test_x
  1390. # Sed expression to map a string onto a valid CPP name.
  1391. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  1392. # Sed expression to map a string onto a valid variable name.
  1393. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  1394. exec 6>&1
  1395. ## ----------------------------------- ##
  1396. ## Main body of $CONFIG_STATUS script. ##
  1397. ## ----------------------------------- ##
  1398. _ASEOF
  1399. test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
  1400. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1401. # Save the log message, to keep $0 and so on meaningful, and to
  1402. # report actual input values of CONFIG_FILES etc. instead of their
  1403. # values after options handling.
  1404. ac_log="
  1405. This file was extended by GNU MP $as_me 5.0.1, which was
  1406. generated by GNU Autoconf 2.65.  Invocation command line was
  1407.   CONFIG_FILES    = $CONFIG_FILES
  1408.   CONFIG_HEADERS  = $CONFIG_HEADERS
  1409.   CONFIG_LINKS    = $CONFIG_LINKS
  1410.   CONFIG_COMMANDS = $CONFIG_COMMANDS
  1411.   $ $0 $@
  1412. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  1413. "
  1414. _ACEOF
  1415. case $ac_config_files in *"
  1416. "*) set x $ac_config_files; shift; ac_config_files=$*;;
  1417. esac
  1418. case $ac_config_headers in *"
  1419. "*) set x $ac_config_headers; shift; ac_config_headers=$*;;
  1420. esac
  1421. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1422. # Files that config.status was made for.
  1423. config_files="$ac_config_files"
  1424. config_headers="$ac_config_headers"
  1425. config_links="$ac_config_links"
  1426. config_commands="$ac_config_commands"
  1427. _ACEOF
  1428. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1429. ac_cs_usage="
  1430. `$as_me' instantiates files and other configuration actions
  1431. from templates according to the current configuration.  Unless the files
  1432. and actions are specified as TAGs, all are instantiated by default.
  1433. Usage: $0 [OPTION]... [TAG]...
  1434.   -h, --help       print this help, then exit
  1435.   -V, --version    print version number and configuration settings, then exit
  1436.       --config     print configuration, then exit
  1437.   -q, --quiet, --silent
  1438.                    do not print progress messages
  1439.   -d, --debug      don't remove temporary files
  1440.       --recheck    update $as_me by reconfiguring in the same conditions
  1441.       --file=FILE[:TEMPLATE]
  1442.                    instantiate the configuration file FILE
  1443.       --header=FILE[:TEMPLATE]
  1444.                    instantiate the configuration header FILE
  1445. Configuration files:
  1446. $config_files
  1447. Configuration headers:
  1448. $config_headers
  1449. Configuration links:
  1450. $config_links
  1451. Configuration commands:
  1452. $config_commands
  1453. Report bugs to <gmp-bugs@gmplib.org>.
  1454. GNU MP home page: <http://www.gnu.org/software/gmp/>.
  1455. General help using GNU software: <http://www.gnu.org/gethelp/>."
  1456. _ACEOF
  1457. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1458. ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\""`$]/\\&/g'`"
  1459. ac_cs_version="\
  1460. GNU MP config.status 5.0.1
  1461. configured by $0, generated by GNU Autoconf 2.65,
  1462.   with options \"$ac_cs_config\"
  1463. Copyright (C) 2009 Free Software Foundation, Inc.
  1464. This config.status script is free software; the Free Software Foundation
  1465. gives unlimited permission to copy, distribute and modify it."
  1466. ac_pwd='$ac_pwd'
  1467. srcdir='$srcdir'
  1468. INSTALL='$INSTALL'
  1469. MKDIR_P='$MKDIR_P'
  1470. AWK='$AWK'
  1471. test -n "$AWK" || AWK=awk
  1472. _ACEOF
  1473. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1474. # The default lists apply if the user does not specify any file.
  1475. ac_need_defaults=:
  1476. while test $# != 0
  1477. do
  1478.   case $1 in
  1479.   --*=*)
  1480.     ac_option=`expr "X$1" : 'X([^=]*)='`
  1481.     ac_optarg=`expr "X$1" : 'X[^=]*=(.*)'`
  1482.     ac_shift=:
  1483.     ;;
  1484.   *)
  1485.     ac_option=$1
  1486.     ac_optarg=$2
  1487.     ac_shift=shift
  1488.     ;;
  1489.   esac
  1490.   case $ac_option in
  1491.   # Handling of the options.
  1492.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1493.     ac_cs_recheck=: ;;
  1494.   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  1495.     $as_echo "$ac_cs_version"; exit ;;
  1496.   --config | --confi | --conf | --con | --co | --c )
  1497.     $as_echo "$ac_cs_config"; exit ;;
  1498.   --debug | --debu | --deb | --de | --d | -d )
  1499.     debug=: ;;
  1500.   --file | --fil | --fi | --f )
  1501.     $ac_shift
  1502.     case $ac_optarg in
  1503.     *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;;
  1504.     esac
  1505.     as_fn_append CONFIG_FILES " '$ac_optarg'"
  1506.     ac_need_defaults=false;;
  1507.   --header | --heade | --head | --hea )
  1508.     $ac_shift
  1509.     case $ac_optarg in
  1510.     *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;;
  1511.     esac
  1512.     as_fn_append CONFIG_HEADERS " '$ac_optarg'"
  1513.     ac_need_defaults=false;;
  1514.   --he | --h)
  1515.     # Conflict between --help and --header
  1516.     as_fn_error "ambiguous option: `$1'
  1517. Try `$0 --help' for more information.";;
  1518.   --help | --hel | -h )
  1519.     $as_echo "$ac_cs_usage"; exit ;;
  1520.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  1521.   | -silent | --silent | --silen | --sile | --sil | --si | --s)
  1522.     ac_cs_silent=: ;;
  1523.   # This is an error.
  1524.   -*) as_fn_error "unrecognized option: `$1'
  1525. Try `$0 --help' for more information." ;;
  1526.   *) as_fn_append ac_config_targets " $1"
  1527.      ac_need_defaults=false ;;
  1528.   esac
  1529.   shift
  1530. done
  1531. ac_configure_extra_args=
  1532. if $ac_cs_silent; then
  1533.   exec 6>/dev/null
  1534.   ac_configure_extra_args="$ac_configure_extra_args --silent"
  1535. fi
  1536. _ACEOF
  1537. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1538. if $ac_cs_recheck; then
  1539.   set X '$SHELL' '$0' $ac_configure_args $ac_configure_extra_args --no-create --no-recursion
  1540.   shift
  1541.   $as_echo "running CONFIG_SHELL=$SHELL $*" >&6
  1542.   CONFIG_SHELL='$SHELL'
  1543.   export CONFIG_SHELL
  1544.   exec "$@"
  1545. fi
  1546. _ACEOF
  1547. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1548. exec 5>>config.log
  1549. {
  1550.   echo
  1551.   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  1552. ## Running $as_me. ##
  1553. _ASBOX
  1554.   $as_echo "$ac_log"
  1555. } >&5
  1556. _ACEOF
  1557. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1558. #
  1559. # INIT-COMMANDS
  1560. #
  1561. # The HP-UX ksh and POSIX shell print the target directory to stdout
  1562. # if CDPATH is set.
  1563. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  1564. sed_quote_subst='$sed_quote_subst'
  1565. double_quote_subst='$double_quote_subst'
  1566. delay_variable_subst='$delay_variable_subst'
  1567. NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`'
  1568. AS='`$ECHO "X$AS" | $Xsed -e "$delay_single_quote_subst"`'
  1569. DLLTOOL='`$ECHO "X$DLLTOOL" | $Xsed -e "$delay_single_quote_subst"`'
  1570. OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`'
  1571. macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`'
  1572. macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`'
  1573. enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`'
  1574. enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`'
  1575. pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`'
  1576. enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`'
  1577. host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`'
  1578. host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`'
  1579. host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`'
  1580. build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`'
  1581. build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`'
  1582. build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`'
  1583. SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`'
  1584. Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`'
  1585. GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`'
  1586. EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`'
  1587. FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`'
  1588. LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`'
  1589. LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`'
  1590. max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`'
  1591. ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`'
  1592. exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`'
  1593. lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`'
  1594. lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`'
  1595. lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`'
  1596. reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`'
  1597. reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1598. deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`'
  1599. file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`'
  1600. AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`'
  1601. AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`'
  1602. STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`'
  1603. RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`'
  1604. old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1605. old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1606. old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1607. CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`'
  1608. CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`'
  1609. compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`'
  1610. GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`'
  1611. lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`'
  1612. lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`'
  1613. lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`'
  1614. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
  1615. objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`'
  1616. SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`'
  1617. ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`'
  1618. MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`'
  1619. lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`'
  1620. lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`'
  1621. lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`'
  1622. lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`'
  1623. lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`'
  1624. need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`'
  1625. DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`'
  1626. NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`'
  1627. LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`'
  1628. OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`'
  1629. OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`'
  1630. libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`'
  1631. shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1632. extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1633. archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`'
  1634. enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`'
  1635. export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1636. whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1637. compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`'
  1638. old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1639. old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1640. archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1641. archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1642. module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1643. module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1644. with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`'
  1645. allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
  1646. no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
  1647. hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1648. hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`'
  1649. hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`'
  1650. hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`'
  1651. hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`'
  1652. hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`'
  1653. hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  1654. hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`'
  1655. inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`'
  1656. link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`'
  1657. fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`'
  1658. always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`'
  1659. export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1660. exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
  1661. include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
  1662. prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1663. file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1664. variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`'
  1665. need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
  1666. need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`'
  1667. version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`'
  1668. runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  1669. shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  1670. shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`'
  1671. libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1672. library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1673. soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1674. postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1675. postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1676. finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  1677. finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`'
  1678. hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`'
  1679. sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1680. sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
  1681. hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`'
  1682. enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`'
  1683. enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`'
  1684. enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`'
  1685. old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`'
  1686. striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`'
  1687. compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`'
  1688. predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`'
  1689. postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`'
  1690. predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`'
  1691. postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`'
  1692. compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`'
  1693. LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1694. LD_F77='`$ECHO "X$LD_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1695. old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1696. old_archive_cmds_F77='`$ECHO "X$old_archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1697. compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1698. compiler_F77='`$ECHO "X$compiler_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1699. GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1700. GCC_F77='`$ECHO "X$GCC_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1701. lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1702. lt_prog_compiler_no_builtin_flag_F77='`$ECHO "X$lt_prog_compiler_no_builtin_flag_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1703. lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1704. lt_prog_compiler_wl_F77='`$ECHO "X$lt_prog_compiler_wl_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1705. lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1706. lt_prog_compiler_pic_F77='`$ECHO "X$lt_prog_compiler_pic_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1707. lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1708. lt_prog_compiler_static_F77='`$ECHO "X$lt_prog_compiler_static_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1709. lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1710. lt_cv_prog_compiler_c_o_F77='`$ECHO "X$lt_cv_prog_compiler_c_o_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1711. archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1712. archive_cmds_need_lc_F77='`$ECHO "X$archive_cmds_need_lc_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1713. enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1714. enable_shared_with_static_runtimes_F77='`$ECHO "X$enable_shared_with_static_runtimes_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1715. export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1716. export_dynamic_flag_spec_F77='`$ECHO "X$export_dynamic_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1717. whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1718. whole_archive_flag_spec_F77='`$ECHO "X$whole_archive_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1719. compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1720. compiler_needs_object_F77='`$ECHO "X$compiler_needs_object_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1721. old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1722. old_archive_from_new_cmds_F77='`$ECHO "X$old_archive_from_new_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1723. old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1724. old_archive_from_expsyms_cmds_F77='`$ECHO "X$old_archive_from_expsyms_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1725. archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1726. archive_cmds_F77='`$ECHO "X$archive_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1727. archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1728. archive_expsym_cmds_F77='`$ECHO "X$archive_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1729. module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1730. module_cmds_F77='`$ECHO "X$module_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1731. module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1732. module_expsym_cmds_F77='`$ECHO "X$module_expsym_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1733. with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1734. with_gnu_ld_F77='`$ECHO "X$with_gnu_ld_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1735. allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1736. allow_undefined_flag_F77='`$ECHO "X$allow_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1737. no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1738. no_undefined_flag_F77='`$ECHO "X$no_undefined_flag_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1739. hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1740. hardcode_libdir_flag_spec_F77='`$ECHO "X$hardcode_libdir_flag_spec_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1741. hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1742. hardcode_libdir_flag_spec_ld_F77='`$ECHO "X$hardcode_libdir_flag_spec_ld_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1743. hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1744. hardcode_libdir_separator_F77='`$ECHO "X$hardcode_libdir_separator_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1745. hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1746. hardcode_direct_F77='`$ECHO "X$hardcode_direct_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1747. hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1748. hardcode_direct_absolute_F77='`$ECHO "X$hardcode_direct_absolute_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1749. hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1750. hardcode_minus_L_F77='`$ECHO "X$hardcode_minus_L_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1751. hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1752. hardcode_shlibpath_var_F77='`$ECHO "X$hardcode_shlibpath_var_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1753. hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1754. hardcode_automatic_F77='`$ECHO "X$hardcode_automatic_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1755. inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1756. inherit_rpath_F77='`$ECHO "X$inherit_rpath_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1757. link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1758. link_all_deplibs_F77='`$ECHO "X$link_all_deplibs_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1759. fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1760. fix_srcfile_path_F77='`$ECHO "X$fix_srcfile_path_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1761. always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1762. always_export_symbols_F77='`$ECHO "X$always_export_symbols_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1763. export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1764. export_symbols_cmds_F77='`$ECHO "X$export_symbols_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1765. exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1766. exclude_expsyms_F77='`$ECHO "X$exclude_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1767. include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1768. include_expsyms_F77='`$ECHO "X$include_expsyms_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1769. prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1770. prelink_cmds_F77='`$ECHO "X$prelink_cmds_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1771. file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1772. file_list_spec_F77='`$ECHO "X$file_list_spec_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1773. hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1774. hardcode_action_F77='`$ECHO "X$hardcode_action_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1775. compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1776. compiler_lib_search_dirs_F77='`$ECHO "X$compiler_lib_search_dirs_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1777. predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1778. predep_objects_F77='`$ECHO "X$predep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1779. postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1780. postdep_objects_F77='`$ECHO "X$postdep_objects_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1781. predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1782. predeps_F77='`$ECHO "X$predeps_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1783. postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1784. postdeps_F77='`$ECHO "X$postdeps_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1785. compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
  1786. compiler_lib_search_path_F77='`$ECHO "X$compiler_lib_search_path_F77" | $Xsed -e "$delay_single_quote_subst"`'
  1787. LTCC='$LTCC'
  1788. LTCFLAGS='$LTCFLAGS'
  1789. compiler='$compiler_DEFAULT'
  1790. # Quote evaled strings.
  1791. for var in NM 
  1792. SED 
  1793. GREP 
  1794. EGREP 
  1795. FGREP 
  1796. LD 
  1797. LN_S 
  1798. lt_SP2NL 
  1799. lt_NL2SP 
  1800. reload_flag 
  1801. deplibs_check_method 
  1802. file_magic_cmd 
  1803. AR 
  1804. AR_FLAGS 
  1805. STRIP 
  1806. RANLIB 
  1807. CC 
  1808. CFLAGS 
  1809. compiler 
  1810. lt_cv_sys_global_symbol_pipe 
  1811. lt_cv_sys_global_symbol_to_cdecl 
  1812. lt_cv_sys_global_symbol_to_c_name_address 
  1813. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix 
  1814. SHELL 
  1815. ECHO 
  1816. lt_prog_compiler_no_builtin_flag 
  1817. lt_prog_compiler_wl 
  1818. lt_prog_compiler_pic 
  1819. lt_prog_compiler_static 
  1820. lt_cv_prog_compiler_c_o 
  1821. need_locks 
  1822. DSYMUTIL 
  1823. NMEDIT 
  1824. LIPO 
  1825. OTOOL 
  1826. OTOOL64 
  1827. shrext_cmds 
  1828. export_dynamic_flag_spec 
  1829. whole_archive_flag_spec 
  1830. compiler_needs_object 
  1831. with_gnu_ld 
  1832. allow_undefined_flag 
  1833. no_undefined_flag 
  1834. hardcode_libdir_flag_spec 
  1835. hardcode_libdir_flag_spec_ld 
  1836. hardcode_libdir_separator 
  1837. fix_srcfile_path 
  1838. exclude_expsyms 
  1839. include_expsyms 
  1840. file_list_spec 
  1841. variables_saved_for_relink 
  1842. libname_spec 
  1843. library_names_spec 
  1844. soname_spec 
  1845. finish_eval 
  1846. old_striplib 
  1847. striplib 
  1848. compiler_lib_search_dirs 
  1849. predep_objects 
  1850. postdep_objects 
  1851. predeps 
  1852. postdeps 
  1853. compiler_lib_search_path 
  1854. LD_CXX 
  1855. LD_F77 
  1856. compiler_CXX 
  1857. compiler_F77 
  1858. lt_prog_compiler_no_builtin_flag_CXX 
  1859. lt_prog_compiler_no_builtin_flag_F77 
  1860. lt_prog_compiler_wl_CXX 
  1861. lt_prog_compiler_wl_F77 
  1862. lt_prog_compiler_pic_CXX 
  1863. lt_prog_compiler_pic_F77 
  1864. lt_prog_compiler_static_CXX 
  1865. lt_prog_compiler_static_F77 
  1866. lt_cv_prog_compiler_c_o_CXX 
  1867. lt_cv_prog_compiler_c_o_F77 
  1868. export_dynamic_flag_spec_CXX 
  1869. export_dynamic_flag_spec_F77 
  1870. whole_archive_flag_spec_CXX 
  1871. whole_archive_flag_spec_F77 
  1872. compiler_needs_object_CXX 
  1873. compiler_needs_object_F77 
  1874. with_gnu_ld_CXX 
  1875. with_gnu_ld_F77 
  1876. allow_undefined_flag_CXX 
  1877. allow_undefined_flag_F77 
  1878. no_undefined_flag_CXX 
  1879. no_undefined_flag_F77 
  1880. hardcode_libdir_flag_spec_CXX 
  1881. hardcode_libdir_flag_spec_F77 
  1882. hardcode_libdir_flag_spec_ld_CXX 
  1883. hardcode_libdir_flag_spec_ld_F77 
  1884. hardcode_libdir_separator_CXX 
  1885. hardcode_libdir_separator_F77 
  1886. fix_srcfile_path_CXX 
  1887. fix_srcfile_path_F77 
  1888. exclude_expsyms_CXX 
  1889. exclude_expsyms_F77 
  1890. include_expsyms_CXX 
  1891. include_expsyms_F77 
  1892. file_list_spec_CXX 
  1893. file_list_spec_F77 
  1894. compiler_lib_search_dirs_CXX 
  1895. compiler_lib_search_dirs_F77 
  1896. predep_objects_CXX 
  1897. predep_objects_F77 
  1898. postdep_objects_CXX 
  1899. postdep_objects_F77 
  1900. predeps_CXX 
  1901. predeps_F77 
  1902. postdeps_CXX 
  1903. postdeps_F77 
  1904. compiler_lib_search_path_CXX 
  1905. compiler_lib_search_path_F77; do
  1906.     case `eval \\$ECHO "X\\$$var"` in
  1907.     *[\\\`\"\$]*)
  1908.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
  1909.       ;;
  1910.     *)
  1911.       eval "lt_$var=\\\"\$$var\\\""
  1912.       ;;
  1913.     esac
  1914. done
  1915. # Double-quote double-evaled strings.
  1916. for var in reload_cmds 
  1917. old_postinstall_cmds 
  1918. old_postuninstall_cmds 
  1919. old_archive_cmds 
  1920. extract_expsyms_cmds 
  1921. old_archive_from_new_cmds 
  1922. old_archive_from_expsyms_cmds 
  1923. archive_cmds 
  1924. archive_expsym_cmds 
  1925. module_cmds 
  1926. module_expsym_cmds 
  1927. export_symbols_cmds 
  1928. prelink_cmds 
  1929. postinstall_cmds 
  1930. postuninstall_cmds 
  1931. finish_cmds 
  1932. sys_lib_search_path_spec 
  1933. sys_lib_dlsearch_path_spec 
  1934. old_archive_cmds_CXX 
  1935. old_archive_cmds_F77 
  1936. old_archive_from_new_cmds_CXX 
  1937. old_archive_from_new_cmds_F77 
  1938. old_archive_from_expsyms_cmds_CXX 
  1939. old_archive_from_expsyms_cmds_F77 
  1940. archive_cmds_CXX 
  1941. archive_cmds_F77 
  1942. archive_expsym_cmds_CXX 
  1943. archive_expsym_cmds_F77 
  1944. module_cmds_CXX 
  1945. module_cmds_F77 
  1946. module_expsym_cmds_CXX 
  1947. module_expsym_cmds_F77 
  1948. export_symbols_cmds_CXX 
  1949. export_symbols_cmds_F77 
  1950. prelink_cmds_CXX 
  1951. prelink_cmds_F77; do
  1952.     case `eval \\$ECHO "X\\$$var"` in
  1953.     *[\\\`\"\$]*)
  1954.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
  1955.       ;;
  1956.     *)
  1957.       eval "lt_$var=\\\"\$$var\\\""
  1958.       ;;
  1959.     esac
  1960. done
  1961. # Fix-up fallback echo if it was mangled by the above quoting rules.
  1962. case $lt_ECHO in
  1963. *'\$0 --fallback-echo"')  lt_ECHO=`$ECHO "X$lt_ECHO" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  1964.   ;;
  1965. esac
  1966. ac_aux_dir='$ac_aux_dir'
  1967. xsi_shell='$xsi_shell'
  1968. lt_shell_append='$lt_shell_append'
  1969. # See if we are running on zsh, and set the options which allow our
  1970. # commands through without removal of  escapes INIT.
  1971. if test -n "${ZSH_VERSION+set}" ; then
  1972.    setopt NO_GLOB_SUBST
  1973. fi
  1974.     PACKAGE='$PACKAGE'
  1975.     VERSION='$VERSION'
  1976.     TIMESTAMP='$TIMESTAMP'
  1977.     RM='$RM'
  1978.     ofile='$ofile'
  1979. _ACEOF
  1980. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1981. # Handling of arguments.
  1982. for ac_config_target in $ac_config_targets
  1983. do
  1984.   case $ac_config_target in
  1985.     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
  1986.     "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
  1987.     "mpn/$tmp_fn.$tmp_ext") CONFIG_LINKS="$CONFIG_LINKS mpn/$tmp_fn.$tmp_ext:mpn/$tmp_dir/$tmp_base.$tmp_ext" ;;
  1988.     "gmp-mparam.h") CONFIG_LINKS="$CONFIG_LINKS gmp-mparam.h:mpn/$gmp_mparam_dir/gmp-mparam.h" ;;
  1989.     "demos/pexpr-config.h") CONFIG_FILES="$CONFIG_FILES demos/pexpr-config.h:demos/pexpr-config-h.in" ;;
  1990.     "demos/calc/calc-config.h") CONFIG_FILES="$CONFIG_FILES demos/calc/calc-config.h:demos/calc/calc-config-h.in" ;;
  1991.     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  1992.     "mpbsd/Makefile") CONFIG_FILES="$CONFIG_FILES mpbsd/Makefile" ;;
  1993.     "mpf/Makefile") CONFIG_FILES="$CONFIG_FILES mpf/Makefile" ;;
  1994.     "mpn/Makefile") CONFIG_FILES="$CONFIG_FILES mpn/Makefile" ;;
  1995.     "mpq/Makefile") CONFIG_FILES="$CONFIG_FILES mpq/Makefile" ;;
  1996.     "mpz/Makefile") CONFIG_FILES="$CONFIG_FILES mpz/Makefile" ;;
  1997.     "printf/Makefile") CONFIG_FILES="$CONFIG_FILES printf/Makefile" ;;
  1998.     "scanf/Makefile") CONFIG_FILES="$CONFIG_FILES scanf/Makefile" ;;
  1999.     "cxx/Makefile") CONFIG_FILES="$CONFIG_FILES cxx/Makefile" ;;
  2000.     "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
  2001.     "tests/devel/Makefile") CONFIG_FILES="$CONFIG_FILES tests/devel/Makefile" ;;
  2002.     "tests/mpbsd/Makefile") CONFIG_FILES="$CONFIG_FILES tests/mpbsd/Makefile" ;;
  2003.     "tests/mpf/Makefile") CONFIG_FILES="$CONFIG_FILES tests/mpf/Makefile" ;;
  2004.     "tests/mpn/Makefile") CONFIG_FILES="$CONFIG_FILES tests/mpn/Makefile" ;;
  2005.     "tests/mpq/Makefile") CONFIG_FILES="$CONFIG_FILES tests/mpq/Makefile" ;;
  2006.     "tests/mpz/Makefile") CONFIG_FILES="$CONFIG_FILES tests/mpz/Makefile" ;;
  2007.     "tests/rand/Makefile") CONFIG_FILES="$CONFIG_FILES tests/rand/Makefile" ;;
  2008.     "tests/misc/Makefile") CONFIG_FILES="$CONFIG_FILES tests/misc/Makefile" ;;
  2009.     "tests/cxx/Makefile") CONFIG_FILES="$CONFIG_FILES tests/cxx/Makefile" ;;
  2010.     "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
  2011.     "tune/Makefile") CONFIG_FILES="$CONFIG_FILES tune/Makefile" ;;
  2012.     "demos/Makefile") CONFIG_FILES="$CONFIG_FILES demos/Makefile" ;;
  2013.     "demos/calc/Makefile") CONFIG_FILES="$CONFIG_FILES demos/calc/Makefile" ;;
  2014.     "demos/expr/Makefile") CONFIG_FILES="$CONFIG_FILES demos/expr/Makefile" ;;
  2015.     "gmp.h") CONFIG_FILES="$CONFIG_FILES gmp.h:gmp-h.in" ;;
  2016.     "mp.h") CONFIG_FILES="$CONFIG_FILES mp.h:mp-h.in" ;;
  2017.   *) as_fn_error "invalid argument: `$ac_config_target'" "$LINENO" 5;;
  2018.   esac
  2019. done
  2020. # If the user did not use the arguments to specify the items to instantiate,
  2021. # then the envvar interface is used.  Set only those that are not.
  2022. # We use the long form for the default assignment because of an extremely
  2023. # bizarre bug on SunOS 4.1.3.
  2024. if $ac_need_defaults; then
  2025.   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  2026.   test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  2027.   test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links
  2028.   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  2029. fi
  2030. # Have a temporary directory for convenience.  Make it in the build tree
  2031. # simply because there is no reason against having it here, and in addition,
  2032. # creating and moving files from /tmp can sometimes cause problems.
  2033. # Hook for its removal unless debugging.
  2034. # Note that there is a small window in which the directory will not be cleaned:
  2035. # after its creation but before its name has been assigned to `$tmp'.
  2036. $debug ||
  2037. {
  2038.   tmp=
  2039.   trap 'exit_status=$?
  2040.   { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  2041. ' 0
  2042.   trap 'as_fn_exit 1' 1 2 13 15
  2043. }
  2044. # Create a (secure) tmp directory for tmp files.
  2045. {
  2046.   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  2047.   test -n "$tmp" && test -d "$tmp"
  2048. }  ||
  2049. {
  2050.   tmp=./conf$$-$RANDOM
  2051.   (umask 077 && mkdir "$tmp")
  2052. } || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
  2053. # Set up the scripts for CONFIG_FILES section.
  2054. # No need to generate them if there are no CONFIG_FILES.
  2055. # This happens for instance with `./config.status config.h'.
  2056. if test -n "$CONFIG_FILES"; then
  2057. ac_cr=`echo X | tr X '15'`
  2058. # On cygwin, bash can eat r inside `` if the user requested igncr.
  2059. # But we know of no other shell where ac_cr would be empty at this
  2060. # point, so we can use a bashism as a fallback.
  2061. if test "x$ac_cr" = x; then
  2062.   eval ac_cr=$'\r'
  2063. fi
  2064. ac_cs_awk_cr=`$AWK 'BEGIN { print "arb" }' </dev/null 2>/dev/null`
  2065. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  2066.   ac_cs_awk_cr='r'
  2067. else
  2068.   ac_cs_awk_cr=$ac_cr
  2069. fi
  2070. echo 'BEGIN {' >"$tmp/subs1.awk" &&
  2071. _ACEOF
  2072. {
  2073.   echo "cat >conf$$subs.awk <<_ACEOF" &&
  2074.   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  2075.   echo "_ACEOF"
  2076. } >conf$$subs.sh ||
  2077.   as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  2078. ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
  2079. ac_delim='%!_!# '
  2080. for ac_last_try in false false false false false :; do
  2081.   . ./conf$$subs.sh ||
  2082.     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  2083.   ac_delim_n=`sed -n "s/.*$ac_delim$/X/p" conf$$subs.awk | grep -c X`
  2084.   if test $ac_delim_n = $ac_delim_num; then
  2085.     break
  2086.   elif $ac_last_try; then
  2087.     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  2088.   else
  2089.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2090.   fi
  2091. done
  2092. rm -f conf$$subs.sh
  2093. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2094. cat >>"$tmp/subs1.awk" <<\_ACAWK &&
  2095. _ACEOF
  2096. sed -n '
  2097. h
  2098. s/^/S["/; s/!.*/"]=/
  2099. p
  2100. g
  2101. s/^[^!]*!//
  2102. :repl
  2103. t repl
  2104. s/'"$ac_delim"'$//
  2105. t delim
  2106. :nl
  2107. h
  2108. s/(.{148})..*/1/
  2109. t more1
  2110. s/["\]/\&/g; s/^/"/; s/$/\n"\/
  2111. p
  2112. n
  2113. b repl
  2114. :more1
  2115. s/["\]/\&/g; s/^/"/; s/$/"\/
  2116. p
  2117. g
  2118. s/.{148}//
  2119. t nl
  2120. :delim
  2121. h
  2122. s/(.{148})..*/1/
  2123. t more2
  2124. s/["\]/\&/g; s/^/"/; s/$/"/
  2125. p
  2126. b
  2127. :more2
  2128. s/["\]/\&/g; s/^/"/; s/$/"\/
  2129. p
  2130. g
  2131. s/.{148}//
  2132. t delim
  2133. ' <conf$$subs.awk | sed '
  2134. /^[^""]/{
  2135.   N
  2136.   s/n//
  2137. }
  2138. ' >>$CONFIG_STATUS || ac_write_fail=1
  2139. rm -f conf$$subs.awk
  2140. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2141. _ACAWK
  2142. cat >>"$tmp/subs1.awk" <<_ACAWK &&
  2143.   for (key in S) S_is_set[key] = 1
  2144.   FS = ""
  2145. }
  2146. {
  2147.   line = $ 0
  2148.   nfields = split(line, field, "@")
  2149.   substed = 0
  2150.   len = length(field[1])
  2151.   for (i = 2; i < nfields; i++) {
  2152.     key = field[i]
  2153.     keylen = length(key)
  2154.     if (S_is_set[key]) {
  2155.       value = S[key]
  2156.       line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  2157.       len += length(value) + length(field[++i])
  2158.       substed = 1
  2159.     } else
  2160.       len += 1 + keylen
  2161.   }
  2162.   print line
  2163. }
  2164. _ACAWK
  2165. _ACEOF
  2166. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2167. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  2168.   sed "s/$ac_cr$//; s/$ac_cr/$ac_cs_awk_cr/g"
  2169. else
  2170.   cat
  2171. fi < "$tmp/subs1.awk" > "$tmp/subs.awk" 
  2172.   || as_fn_error "could not setup config files machinery" "$LINENO" 5
  2173. _ACEOF
  2174. # VPATH may cause trouble with some makes, so we remove $(srcdir),
  2175. # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  2176. # trailing colons and then remove the whole line if VPATH becomes empty
  2177. # (actually we leave an empty line to preserve line numbers).
  2178. if test "x$srcdir" = x.; then
  2179.   ac_vpsub='/^[  ]*VPATH[  ]*=/{
  2180. s/:*$(srcdir):*/:/
  2181. s/:*${srcdir}:*/:/
  2182. s/:*@srcdir@:*/:/
  2183. s/^([^=]*=[  ]*):*/1/
  2184. s/:*$//
  2185. s/^[^=]*=[  ]*$//
  2186. }'
  2187. fi
  2188. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2189. fi # test -n "$CONFIG_FILES"
  2190. # Set up the scripts for CONFIG_HEADERS section.
  2191. # No need to generate them if there are no CONFIG_HEADERS.
  2192. # This happens for instance with `./config.status Makefile'.
  2193. if test -n "$CONFIG_HEADERS"; then
  2194. cat >"$tmp/defines.awk" <<_ACAWK ||
  2195. BEGIN {
  2196. _ACEOF
  2197. # Transform confdefs.h into an awk script `defines.awk', embedded as
  2198. # here-document in config.status, that substitutes the proper values into
  2199. # config.h.in to produce config.h.
  2200. # Create a delimiter string that does not exist in confdefs.h, to ease
  2201. # handling of long lines.
  2202. ac_delim='%!_!# '
  2203. for ac_last_try in false false :; do
  2204.   ac_t=`sed -n "/$ac_delim/p" confdefs.h`
  2205.   if test -z "$ac_t"; then
  2206.     break
  2207.   elif $ac_last_try; then
  2208.     as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
  2209.   else
  2210.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2211.   fi
  2212. done
  2213. # For the awk script, D is an array of macro values keyed by name,
  2214. # likewise P contains macro parameters if any.  Preserve backslash
  2215. # newline sequences.
  2216. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
  2217. sed -n '
  2218. s/.{148}/&'"$ac_delim"'/g
  2219. t rset
  2220. :rset
  2221. s/^[  ]*#[  ]*define[  ][  ]*/ /
  2222. t def
  2223. d
  2224. :def
  2225. s/\$//
  2226. t bsnl
  2227. s/["\]/\&/g
  2228. s/^ ('"$ac_word_re"')(([^()]*))[  ]*(.*)/P["1"]="2"
  2229. D["1"]=" 3"/p
  2230. s/^ ('"$ac_word_re"')[  ]*(.*)/D["1"]=" 2"/p
  2231. d
  2232. :bsnl
  2233. s/["\]/\&/g
  2234. s/^ ('"$ac_word_re"')(([^()]*))[  ]*(.*)/P["1"]="2"
  2235. D["1"]=" 3\\\n"\/p
  2236. t cont
  2237. s/^ ('"$ac_word_re"')[  ]*(.*)/D["1"]=" 2\\\n"\/p
  2238. t cont
  2239. d
  2240. :cont
  2241. n
  2242. s/.{148}/&'"$ac_delim"'/g
  2243. t clear
  2244. :clear
  2245. s/\$//
  2246. t bsnlc
  2247. s/["\]/\&/g; s/^/"/; s/$/"/p
  2248. d
  2249. :bsnlc
  2250. s/["\]/\&/g; s/^/"/; s/$/\\\n"\/p
  2251. b cont
  2252. ' <confdefs.h | sed '
  2253. s/'"$ac_delim"'/"\
  2254. "/g' >>$CONFIG_STATUS || ac_write_fail=1
  2255. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2256.   for (key in D) D_is_set[key] = 1
  2257.   FS = ""
  2258. }
  2259. /^[t ]*#[t ]*(define|undef)[t ]+$ac_word_re([t (]|$)/ {
  2260.   line = $ 0
  2261.   split(line, arg, " ")
  2262.   if (arg[1] == "#") {
  2263.     defundef = arg[2]
  2264.     mac1 = arg[3]
  2265.   } else {
  2266.     defundef = substr(arg[1], 2)
  2267.     mac1 = arg[2]
  2268.   }
  2269.   split(mac1, mac2, "(") #)
  2270.   macro = mac2[1]
  2271.   prefix = substr(line, 1, index(line, defundef) - 1)
  2272.   if (D_is_set[macro]) {
  2273.     # Preserve the white space surrounding the "#".
  2274.     print prefix "define", macro P[macro] D[macro]
  2275.     next
  2276.   } else {
  2277.     # Replace #undef with comments.  This is necessary, for example,
  2278.     # in the case of _POSIX_SOURCE, which is predefined and required
  2279.     # on some systems where configure will not decide to define it.
  2280.     if (defundef == "undef") {
  2281.       print "/*", prefix defundef, macro, "*/"
  2282.       next
  2283.     }
  2284.   }
  2285. }
  2286. { print }
  2287. _ACAWK
  2288. _ACEOF
  2289. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2290.   as_fn_error "could not setup config headers machinery" "$LINENO" 5
  2291. fi # test -n "$CONFIG_HEADERS"
  2292. eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS  :L $CONFIG_LINKS  :C $CONFIG_COMMANDS"
  2293. shift
  2294. for ac_tag
  2295. do
  2296.   case $ac_tag in
  2297.   :[FHLC]) ac_mode=$ac_tag; continue;;
  2298.   esac
  2299.   case $ac_mode$ac_tag in
  2300.   :[FHL]*:*);;
  2301.   :L* | :C*:*) as_fn_error "invalid tag `$ac_tag'" "$LINENO" 5;;
  2302.   :[FH]-) ac_tag=-:-;;
  2303.   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  2304.   esac
  2305.   ac_save_IFS=$IFS
  2306.   IFS=:
  2307.   set x $ac_tag
  2308.   IFS=$ac_save_IFS
  2309.   shift
  2310.   ac_file=$1
  2311.   shift
  2312.   case $ac_mode in
  2313.   :L) ac_source=$1;;
  2314.   :[FH])
  2315.     ac_file_inputs=
  2316.     for ac_f
  2317.     do
  2318.       case $ac_f in
  2319.       -) ac_f="$tmp/stdin";;
  2320.       *) # Look for the file first in the build tree, then in the source tree
  2321.  # (if the path is not absolute).  The absolute path cannot be DOS-style,
  2322.  # because $ac_f cannot contain `:'.
  2323.  test -f "$ac_f" ||
  2324.    case $ac_f in
  2325.    [\/$]*) false;;
  2326.    *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  2327.    esac ||
  2328.    as_fn_error "cannot find input file: `$ac_f'" "$LINENO" 5;;
  2329.       esac
  2330.       case $ac_f in *'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\''/g"`;; esac
  2331.       as_fn_append ac_file_inputs " '$ac_f'"
  2332.     done
  2333.     # Let's still pretend it is `configure' which instantiates (i.e., don't
  2334.     # use $as_me), people would be surprised to read:
  2335.     #    /* config.h.  Generated by config.status.  */
  2336.     configure_input='Generated from '`
  2337.   $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  2338. `' by configure.'
  2339.     if test x"$ac_file" != x-; then
  2340.       configure_input="$ac_file.  $configure_input"
  2341.       { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  2342. $as_echo "$as_me: creating $ac_file" >&6;}
  2343.     fi
  2344.     # Neutralize special characters interpreted by sed in replacement strings.
  2345.     case $configure_input in #(
  2346.     *&* | *|* | *\* )
  2347.        ac_sed_conf_input=`$as_echo "$configure_input" |
  2348.        sed 's/[\\&|]/\\&/g'`;; #(
  2349.     *) ac_sed_conf_input=$configure_input;;
  2350.     esac
  2351.     case $ac_tag in
  2352.     *:-:* | *:-) cat >"$tmp/stdin" 
  2353.       || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
  2354.     esac
  2355.     ;;
  2356.   esac
  2357.   ac_dir=`$as_dirname -- "$ac_file" ||
  2358. $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2359.  X"$ac_file" : 'X(//)[^/]' | 
  2360.  X"$ac_file" : 'X(//)$' | 
  2361.  X"$ac_file" : 'X(/)' | . 2>/dev/null ||
  2362. $as_echo X"$ac_file" |
  2363.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  2364.     s//1/
  2365.     q
  2366.   }
  2367.   /^X(//)[^/].*/{
  2368.     s//1/
  2369.     q
  2370.   }
  2371.   /^X(//)$/{
  2372.     s//1/
  2373.     q
  2374.   }
  2375.   /^X(/).*/{
  2376.     s//1/
  2377.     q
  2378.   }
  2379.   s/.*/./; q'`
  2380.   as_dir="$ac_dir"; as_fn_mkdir_p
  2381.   ac_builddir=.
  2382. case "$ac_dir" in
  2383. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  2384. *)
  2385.   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'`
  2386.   # A ".." for each directory in $ac_dir_suffix.
  2387.   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'`
  2388.   case $ac_top_builddir_sub in
  2389.   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  2390.   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  2391.   esac ;;
  2392. esac
  2393. ac_abs_top_builddir=$ac_pwd
  2394. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  2395. # for backward compatibility:
  2396. ac_top_builddir=$ac_top_build_prefix
  2397. case $srcdir in
  2398.   .)  # We are building in place.
  2399.     ac_srcdir=.
  2400.     ac_top_srcdir=$ac_top_builddir_sub
  2401.     ac_abs_top_srcdir=$ac_pwd ;;
  2402.   [\/]* | ?:[\/]* )  # Absolute name.
  2403.     ac_srcdir=$srcdir$ac_dir_suffix;
  2404.     ac_top_srcdir=$srcdir
  2405.     ac_abs_top_srcdir=$srcdir ;;
  2406.   *) # Relative name.
  2407.     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  2408.     ac_top_srcdir=$ac_top_build_prefix$srcdir
  2409.     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  2410. esac
  2411. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  2412.   case $ac_mode in
  2413.   :F)
  2414.   #
  2415.   # CONFIG_FILE
  2416.   #
  2417.   case $INSTALL in
  2418.   [\/$]* | ?:[\/]* ) ac_INSTALL=$INSTALL ;;
  2419.   *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  2420.   esac
  2421.   ac_MKDIR_P=$MKDIR_P
  2422.   case $MKDIR_P in
  2423.   [\/$]* | ?:[\/]* ) ;;
  2424.   */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  2425.   esac
  2426. _ACEOF
  2427. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2428. # If the template does not know about datarootdir, expand it.
  2429. # FIXME: This hack should be removed a few years after 2.60.
  2430. ac_datarootdir_hack=; ac_datarootdir_seen=
  2431. ac_sed_dataroot='
  2432. /datarootdir/ {
  2433.   p
  2434.   q
  2435. }
  2436. /@datadir@/p
  2437. /@docdir@/p
  2438. /@infodir@/p
  2439. /@localedir@/p
  2440. /@mandir@/p'
  2441. case `eval "sed -n "$ac_sed_dataroot" $ac_file_inputs"` in
  2442. *datarootdir*) ac_datarootdir_seen=yes;;
  2443. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  2444.   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  2445. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  2446. _ACEOF
  2447. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2448.   ac_datarootdir_hack='
  2449.   s&@datadir@&$datadir&g
  2450.   s&@docdir@&$docdir&g
  2451.   s&@infodir@&$infodir&g
  2452.   s&@localedir@&$localedir&g
  2453.   s&@mandir@&$mandir&g
  2454.   s&\${datarootdir}&$datarootdir&g' ;;
  2455. esac
  2456. _ACEOF
  2457. # Neutralize VPATH when `$srcdir' = `.'.
  2458. # Shell code in configure.ac might set extrasub.
  2459. # FIXME: do we really want to maintain this feature?
  2460. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2461. ac_sed_extra="$ac_vpsub
  2462. $extrasub
  2463. _ACEOF
  2464. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2465. :t
  2466. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  2467. s|@configure_input@|$ac_sed_conf_input|;t t
  2468. s&@top_builddir@&$ac_top_builddir_sub&;t t
  2469. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  2470. s&@srcdir@&$ac_srcdir&;t t
  2471. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  2472. s&@top_srcdir@&$ac_top_srcdir&;t t
  2473. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  2474. s&@builddir@&$ac_builddir&;t t
  2475. s&@abs_builddir@&$ac_abs_builddir&;t t
  2476. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  2477. s&@INSTALL@&$ac_INSTALL&;t t
  2478. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  2479. $ac_datarootdir_hack
  2480. "
  2481. eval sed "$ac_sed_extra" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out 
  2482.   || as_fn_error "could not create $ac_file" "$LINENO" 5
  2483. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  2484.   { ac_out=`sed -n '/${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  2485.   { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  2486.   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable `datarootdir'
  2487. which seems to be undefined.  Please make sure it is defined." >&5
  2488. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir'
  2489. which seems to be undefined.  Please make sure it is defined." >&2;}
  2490.   rm -f "$tmp/stdin"
  2491.   case $ac_file in
  2492.   -) cat "$tmp/out" && rm -f "$tmp/out";;
  2493.   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  2494.   esac 
  2495.   || as_fn_error "could not create $ac_file" "$LINENO" 5
  2496.  ;;
  2497.   :H)
  2498.   #
  2499.   # CONFIG_HEADER
  2500.   #
  2501.   if test x"$ac_file" != x-; then
  2502.     {
  2503.       $as_echo "/* $configure_input  */" 
  2504.       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
  2505.     } >"$tmp/config.h" 
  2506.       || as_fn_error "could not create $ac_file" "$LINENO" 5
  2507.     if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
  2508.       { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
  2509. $as_echo "$as_me: $ac_file is unchanged" >&6;}
  2510.     else
  2511.       rm -f "$ac_file"
  2512.       mv "$tmp/config.h" "$ac_file" 
  2513. || as_fn_error "could not create $ac_file" "$LINENO" 5
  2514.     fi
  2515.   else
  2516.     $as_echo "/* $configure_input  */" 
  2517.       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" 
  2518.       || as_fn_error "could not create -" "$LINENO" 5
  2519.   fi
  2520. # Compute "$ac_file"'s index in $config_headers.
  2521. _am_arg="$ac_file"
  2522. _am_stamp_count=1
  2523. for _am_header in $config_headers :; do
  2524.   case $_am_header in
  2525.     $_am_arg | $_am_arg:* )
  2526.       break ;;
  2527.     * )
  2528.       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  2529.   esac
  2530. done
  2531. echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
  2532. $as_expr X"$_am_arg" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2533.  X"$_am_arg" : 'X(//)[^/]' | 
  2534.  X"$_am_arg" : 'X(//)$' | 
  2535.  X"$_am_arg" : 'X(/)' | . 2>/dev/null ||
  2536. $as_echo X"$_am_arg" |
  2537.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  2538.     s//1/
  2539.     q
  2540.   }
  2541.   /^X(//)[^/].*/{
  2542.     s//1/
  2543.     q
  2544.   }
  2545.   /^X(//)$/{
  2546.     s//1/
  2547.     q
  2548.   }
  2549.   /^X(/).*/{
  2550.     s//1/
  2551.     q
  2552.   }
  2553.   s/.*/./; q'`/stamp-h$_am_stamp_count
  2554.  ;;
  2555.   :L)
  2556.   #
  2557.   # CONFIG_LINK
  2558.   #
  2559.   if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then
  2560.     :
  2561.   else
  2562.     # Prefer the file from the source tree if names are identical.
  2563.     if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then
  2564.       ac_source=$srcdir/$ac_source
  2565.     fi
  2566.     { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
  2567. $as_echo "$as_me: linking $ac_source to $ac_file" >&6;}
  2568.     if test ! -r "$ac_source"; then
  2569.       as_fn_error "$ac_source: file not found" "$LINENO" 5
  2570.     fi
  2571.     rm -f "$ac_file"
  2572.     # Try a relative symlink, then a hard link, then a copy.
  2573.     case $srcdir in
  2574.     [\/$]* | ?:[\/]* ) ac_rel_source=$ac_source ;;
  2575. *) ac_rel_source=$ac_top_build_prefix$ac_source ;;
  2576.     esac
  2577.     ln -s "$ac_rel_source" "$ac_file" 2>/dev/null ||
  2578.       ln "$ac_source" "$ac_file" 2>/dev/null ||
  2579.       cp -p "$ac_source" "$ac_file" ||
  2580.       as_fn_error "cannot link or copy $ac_source to $ac_file" "$LINENO" 5
  2581.   fi
  2582.  ;;
  2583.   :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
  2584. $as_echo "$as_me: executing $ac_file commands" >&6;}
  2585.  ;;
  2586.   esac
  2587.   case $ac_file$ac_mode in
  2588.     "libtool":C)
  2589.     # See if we are running on zsh, and set the options which allow our
  2590.     # commands through without removal of  escapes.
  2591.     if test -n "${ZSH_VERSION+set}" ; then
  2592.       setopt NO_GLOB_SUBST
  2593.     fi
  2594.     cfgfile="${ofile}T"
  2595.     trap "$RM "$cfgfile"; exit 1" 1 2 15
  2596.     $RM "$cfgfile"
  2597.     cat <<_LT_EOF >> "$cfgfile"
  2598. #! $SHELL
  2599. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  2600. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  2601. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  2602. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  2603. #
  2604. #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  2605. #                 2006, 2007, 2008 Free Software Foundation, Inc.
  2606. #   Written by Gordon Matzigkeit, 1996
  2607. #
  2608. #   This file is part of GNU Libtool.
  2609. #
  2610. # GNU Libtool is free software; you can redistribute it and/or
  2611. # modify it under the terms of the GNU General Public License as
  2612. # published by the Free Software Foundation; either version 2 of
  2613. # the License, or (at your option) any later version.
  2614. #
  2615. # As a special exception to the GNU General Public License,
  2616. # if you distribute this file as part of a program or library that
  2617. # is built using GNU Libtool, you may include this file under the
  2618. # same distribution terms that you use for the rest of that program.
  2619. #
  2620. # GNU Libtool is distributed in the hope that it will be useful,
  2621. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2622. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2623. # GNU General Public License for more details.
  2624. #
  2625. # You should have received a copy of the GNU General Public License
  2626. # along with GNU Libtool; see the file COPYING.  If not, a copy
  2627. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  2628. # obtained by writing to the Free Software Foundation, Inc.,
  2629. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  2630. # The names of the tagged configurations supported by this script.
  2631. available_tags="CXX F77 "
  2632. # ### BEGIN LIBTOOL CONFIG
  2633. # A BSD- or MS-compatible name lister.
  2634. NM=$lt_NM
  2635. # Assembler program.
  2636. AS=$AS
  2637. # DLL creation program.
  2638. DLLTOOL=$DLLTOOL
  2639. # Object dumper program.
  2640. OBJDUMP=$OBJDUMP
  2641. # Which release of libtool.m4 was used?
  2642. macro_version=$macro_version
  2643. macro_revision=$macro_revision
  2644. # Whether or not to build shared libraries.
  2645. build_libtool_libs=$enable_shared
  2646. # Whether or not to build static libraries.
  2647. build_old_libs=$enable_static
  2648. # What type of objects to build.
  2649. pic_mode=$pic_mode
  2650. # Whether or not to optimize for fast installation.
  2651. fast_install=$enable_fast_install
  2652. # The host system.
  2653. host_alias=$host_alias
  2654. host=$host
  2655. host_os=$host_os
  2656. # The build system.
  2657. build_alias=$build_alias
  2658. build=$build
  2659. build_os=$build_os
  2660. # A sed program that does not truncate output.
  2661. SED=$lt_SED
  2662. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  2663. Xsed="$SED -e 1s/^X//"
  2664. # A grep program that handles long lines.
  2665. GREP=$lt_GREP
  2666. # An ERE matcher.
  2667. EGREP=$lt_EGREP
  2668. # A literal string matcher.
  2669. FGREP=$lt_FGREP
  2670. # Whether we need soft or hard links.
  2671. LN_S=$lt_LN_S
  2672. # What is the maximum length of a command?
  2673. max_cmd_len=$max_cmd_len
  2674. # Object file suffix (normally "o").
  2675. objext=$ac_objext
  2676. # Executable file suffix (normally "").
  2677. exeext=$exeext
  2678. # whether the shell understands "unset".
  2679. lt_unset=$lt_unset
  2680. # turn spaces into newlines.
  2681. SP2NL=$lt_lt_SP2NL
  2682. # turn newlines into spaces.
  2683. NL2SP=$lt_lt_NL2SP
  2684. # How to create reloadable object files.
  2685. reload_flag=$lt_reload_flag
  2686. reload_cmds=$lt_reload_cmds
  2687. # Method to check whether dependent libraries are shared objects.
  2688. deplibs_check_method=$lt_deplibs_check_method
  2689. # Command to use when deplibs_check_method == "file_magic".
  2690. file_magic_cmd=$lt_file_magic_cmd
  2691. # The archiver.
  2692. AR=$lt_AR
  2693. AR_FLAGS=$lt_AR_FLAGS
  2694. # A symbol stripping program.
  2695. STRIP=$lt_STRIP
  2696. # Commands used to install an old-style archive.
  2697. RANLIB=$lt_RANLIB
  2698. old_postinstall_cmds=$lt_old_postinstall_cmds
  2699. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  2700. # A C compiler.
  2701. LTCC=$lt_CC
  2702. # LTCC compiler flags.
  2703. LTCFLAGS=$lt_CFLAGS
  2704. # Take the output of nm and produce a listing of raw symbols and C names.
  2705. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  2706. # Transform the output of nm in a proper C declaration.
  2707. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  2708. # Transform the output of nm in a C name address pair.
  2709. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  2710. # Transform the output of nm in a C name address pair when lib prefix is needed.
  2711. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
  2712. # The name of the directory that contains temporary libtool files.
  2713. objdir=$objdir
  2714. # Shell to use when invoking shell scripts.
  2715. SHELL=$lt_SHELL
  2716. # An echo program that does not interpret backslashes.
  2717. ECHO=$lt_ECHO
  2718. # Used to examine libraries when file_magic_cmd begins with "file".
  2719. MAGIC_CMD=$MAGIC_CMD
  2720. # Must we lock files when doing compilation?
  2721. need_locks=$lt_need_locks
  2722. # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
  2723. DSYMUTIL=$lt_DSYMUTIL
  2724. # Tool to change global to local symbols on Mac OS X.
  2725. NMEDIT=$lt_NMEDIT
  2726. # Tool to manipulate fat objects and archives on Mac OS X.
  2727. LIPO=$lt_LIPO
  2728. # ldd/readelf like tool for Mach-O binaries on Mac OS X.
  2729. OTOOL=$lt_OTOOL
  2730. # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
  2731. OTOOL64=$lt_OTOOL64
  2732. # Old archive suffix (normally "a").
  2733. libext=$libext
  2734. # Shared library suffix (normally ".so").
  2735. shrext_cmds=$lt_shrext_cmds
  2736. # The commands to extract the exported symbol list from a shared archive.
  2737. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  2738. # Variables whose values should be saved in libtool wrapper scripts and
  2739. # restored at link time.
  2740. variables_saved_for_relink=$lt_variables_saved_for_relink
  2741. # Do we need the "lib" prefix for modules?
  2742. need_lib_prefix=$need_lib_prefix
  2743. # Do we need a version for libraries?
  2744. need_version=$need_version
  2745. # Library versioning type.
  2746. version_type=$version_type
  2747. # Shared library runtime path variable.
  2748. runpath_var=$runpath_var
  2749. # Shared library path variable.
  2750. shlibpath_var=$shlibpath_var
  2751. # Is shlibpath searched before the hard-coded library search path?
  2752. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  2753. # Format of library name prefix.
  2754. libname_spec=$lt_libname_spec
  2755. # List of archive names.  First name is the real one, the rest are links.
  2756. # The last name is the one that the linker finds with -lNAME
  2757. library_names_spec=$lt_library_names_spec
  2758. # The coded name of the library, if different from the real name.
  2759. soname_spec=$lt_soname_spec
  2760. # Command to use after installation of a shared archive.
  2761. postinstall_cmds=$lt_postinstall_cmds
  2762. # Command to use after uninstallation of a shared archive.
  2763. postuninstall_cmds=$lt_postuninstall_cmds
  2764. # Commands used to finish a libtool library installation in a directory.
  2765. finish_cmds=$lt_finish_cmds
  2766. # As "finish_cmds", except a single script fragment to be evaled but
  2767. # not shown.
  2768. finish_eval=$lt_finish_eval
  2769. # Whether we should hardcode library paths into libraries.
  2770. hardcode_into_libs=$hardcode_into_libs
  2771. # Compile-time system search path for libraries.
  2772. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  2773. # Run-time system search path for libraries.
  2774. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  2775. # Whether dlopen is supported.
  2776. dlopen_support=$enable_dlopen
  2777. # Whether dlopen of programs is supported.
  2778. dlopen_self=$enable_dlopen_self
  2779. # Whether dlopen of statically linked programs is supported.
  2780. dlopen_self_static=$enable_dlopen_self_static
  2781. # Commands to strip libraries.
  2782. old_striplib=$lt_old_striplib
  2783. striplib=$lt_striplib
  2784. # The linker used to build libraries.
  2785. LD=$lt_LD
  2786. # Commands used to build an old-style archive.
  2787. old_archive_cmds=$lt_old_archive_cmds
  2788. # A language specific compiler.
  2789. CC=$lt_compiler
  2790. # Is the compiler the GNU compiler?
  2791. with_gcc=$GCC
  2792. # Compiler flag to turn off builtin functions.
  2793. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  2794. # How to pass a linker flag through the compiler.
  2795. wl=$lt_lt_prog_compiler_wl
  2796. # Additional compiler flags for building library objects.
  2797. pic_flag=$lt_lt_prog_compiler_pic
  2798. # Compiler flag to prevent dynamic linking.
  2799. link_static_flag=$lt_lt_prog_compiler_static
  2800. # Does compiler simultaneously support -c and -o options?
  2801. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  2802. # Whether or not to add -lc for building shared libraries.
  2803. build_libtool_need_lc=$archive_cmds_need_lc
  2804. # Whether or not to disallow shared libs when runtime libs are static.
  2805. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  2806. # Compiler flag to allow reflexive dlopens.
  2807. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  2808. # Compiler flag to generate shared objects directly from archives.
  2809. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  2810. # Whether the compiler copes with passing no objects directly.
  2811. compiler_needs_object=$lt_compiler_needs_object
  2812. # Create an old-style archive from a shared archive.
  2813. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  2814. # Create a temporary old-style archive to link instead of a shared archive.
  2815. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  2816. # Commands used to build a shared archive.
  2817. archive_cmds=$lt_archive_cmds
  2818. archive_expsym_cmds=$lt_archive_expsym_cmds
  2819. # Commands used to build a loadable module if different from building
  2820. # a shared archive.
  2821. module_cmds=$lt_module_cmds
  2822. module_expsym_cmds=$lt_module_expsym_cmds
  2823. # Whether we are building with GNU ld or not.
  2824. with_gnu_ld=$lt_with_gnu_ld
  2825. # Flag that allows shared libraries with undefined symbols to be built.
  2826. allow_undefined_flag=$lt_allow_undefined_flag
  2827. # Flag that enforces no undefined symbols.
  2828. no_undefined_flag=$lt_no_undefined_flag
  2829. # Flag to hardcode $libdir into a binary during linking.
  2830. # This must work even if $libdir does not exist
  2831. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  2832. # If ld is used when linking, flag to hardcode $libdir into a binary
  2833. # during linking.  This must work even if $libdir does not exist.
  2834. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
  2835. # Whether we need a single "-rpath" flag with a separated argument.
  2836. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  2837. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  2838. # DIR into the resulting binary.
  2839. hardcode_direct=$hardcode_direct
  2840. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  2841. # DIR into the resulting binary and the resulting library dependency is
  2842. # "absolute",i.e impossible to change by setting ${shlibpath_var} if the
  2843. # library is relocated.
  2844. hardcode_direct_absolute=$hardcode_direct_absolute
  2845. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  2846. # into the resulting binary.
  2847. hardcode_minus_L=$hardcode_minus_L
  2848. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  2849. # into the resulting binary.
  2850. hardcode_shlibpath_var=$hardcode_shlibpath_var
  2851. # Set to "yes" if building a shared library automatically hardcodes DIR
  2852. # into the library and all subsequent libraries and executables linked
  2853. # against it.
  2854. hardcode_automatic=$hardcode_automatic
  2855. # Set to yes if linker adds runtime paths of dependent libraries
  2856. # to runtime path list.
  2857. inherit_rpath=$inherit_rpath
  2858. # Whether libtool must link a program against all its dependency libraries.
  2859. link_all_deplibs=$link_all_deplibs
  2860. # Fix the shell variable $srcfile for the compiler.
  2861. fix_srcfile_path=$lt_fix_srcfile_path
  2862. # Set to "yes" if exported symbols are required.
  2863. always_export_symbols=$always_export_symbols
  2864. # The commands to list exported symbols.
  2865. export_symbols_cmds=$lt_export_symbols_cmds
  2866. # Symbols that should not be listed in the preloaded symbols.
  2867. exclude_expsyms=$lt_exclude_expsyms
  2868. # Symbols that must always be exported.
  2869. include_expsyms=$lt_include_expsyms
  2870. # Commands necessary for linking programs (against libraries) with templates.
  2871. prelink_cmds=$lt_prelink_cmds
  2872. # Specify filename containing input files.
  2873. file_list_spec=$lt_file_list_spec
  2874. # How to hardcode a shared library path into an executable.
  2875. hardcode_action=$hardcode_action
  2876. # The directories searched by this compiler when creating a shared library.
  2877. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
  2878. # Dependencies to place before and after the objects being linked to
  2879. # create a shared library.
  2880. predep_objects=$lt_predep_objects
  2881. postdep_objects=$lt_postdep_objects
  2882. predeps=$lt_predeps
  2883. postdeps=$lt_postdeps
  2884. # The library search path used internally by the compiler when linking
  2885. # a shared library.
  2886. compiler_lib_search_path=$lt_compiler_lib_search_path
  2887. # ### END LIBTOOL CONFIG
  2888. _LT_EOF
  2889.   case $host_os in
  2890.   aix3*)
  2891.     cat <<_LT_EOF >> "$cfgfile"
  2892. # AIX sometimes has problems with the GCC collect2 program.  For some
  2893. # reason, if we set the COLLECT_NAMES environment variable, the problems
  2894. # vanish in a puff of smoke.
  2895. if test "X${COLLECT_NAMES+set}" != Xset; then
  2896.   COLLECT_NAMES=
  2897.   export COLLECT_NAMES
  2898. fi
  2899. _LT_EOF
  2900.     ;;
  2901.   esac
  2902. ltmain="$ac_aux_dir/ltmain.sh"
  2903.   # We use sed instead of cat because bash on DJGPP gets confused if
  2904.   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
  2905.   # text mode, it properly converts lines to CR/LF.  This bash problem
  2906.   # is reportedly fixed, but why not run on old versions too?
  2907.   sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" 
  2908.     || (rm -f "$cfgfile"; exit 1)
  2909.   case $xsi_shell in
  2910.   yes)
  2911.     cat << _LT_EOF >> "$cfgfile"
  2912. # func_dirname file append nondir_replacement
  2913. # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
  2914. # otherwise set result to NONDIR_REPLACEMENT.
  2915. func_dirname ()
  2916. {
  2917.   case ${1} in
  2918.     */*) func_dirname_result="${1%/*}${2}" ;;
  2919.     *  ) func_dirname_result="${3}" ;;
  2920.   esac
  2921. }
  2922. # func_basename file
  2923. func_basename ()
  2924. {
  2925.   func_basename_result="${1##*/}"
  2926. }
  2927. # func_dirname_and_basename file append nondir_replacement
  2928. # perform func_basename and func_dirname in a single function
  2929. # call:
  2930. #   dirname:  Compute the dirname of FILE.  If nonempty,
  2931. #             add APPEND to the result, otherwise set result
  2932. #             to NONDIR_REPLACEMENT.
  2933. #             value returned in "$func_dirname_result"
  2934. #   basename: Compute filename of FILE.
  2935. #             value retuned in "$func_basename_result"
  2936. # Implementation must be kept synchronized with func_dirname
  2937. # and func_basename. For efficiency, we do not delegate to
  2938. # those functions but instead duplicate the functionality here.
  2939. func_dirname_and_basename ()
  2940. {
  2941.   case ${1} in
  2942.     */*) func_dirname_result="${1%/*}${2}" ;;
  2943.     *  ) func_dirname_result="${3}" ;;
  2944.   esac
  2945.   func_basename_result="${1##*/}"
  2946. }
  2947. # func_stripname prefix suffix name
  2948. # strip PREFIX and SUFFIX off of NAME.
  2949. # PREFIX and SUFFIX must not contain globbing or regex special
  2950. # characters, hashes, percent signs, but SUFFIX may contain a leading
  2951. # dot (in which case that matches only a dot).
  2952. func_stripname ()
  2953. {
  2954.   # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  2955.   # positional parameters, so assign one to ordinary parameter first.
  2956.   func_stripname_result=${3}
  2957.   func_stripname_result=${func_stripname_result#"${1}"}
  2958.   func_stripname_result=${func_stripname_result%"${2}"}
  2959. }
  2960. # func_opt_split
  2961. func_opt_split ()
  2962. {
  2963.   func_opt_split_opt=${1%%=*}
  2964.   func_opt_split_arg=${1#*=}
  2965. }
  2966. # func_lo2o object
  2967. func_lo2o ()
  2968. {
  2969.   case ${1} in
  2970.     *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  2971.     *)    func_lo2o_result=${1} ;;
  2972.   esac
  2973. }
  2974. # func_xform libobj-or-source
  2975. func_xform ()
  2976. {
  2977.   func_xform_result=${1%.*}.lo
  2978. }
  2979. # func_arith arithmetic-term...
  2980. func_arith ()
  2981. {
  2982.   func_arith_result=$(( $* ))
  2983. }
  2984. # func_len string
  2985. # STRING may not start with a hyphen.
  2986. func_len ()
  2987. {
  2988.   func_len_result=${#1}
  2989. }
  2990. _LT_EOF
  2991.     ;;
  2992.   *) # Bourne compatible functions.
  2993.     cat << _LT_EOF >> "$cfgfile"
  2994. # func_dirname file append nondir_replacement
  2995. # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
  2996. # otherwise set result to NONDIR_REPLACEMENT.
  2997. func_dirname ()
  2998. {
  2999.   # Extract subdirectory from the argument.
  3000.   func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
  3001.   if test "X$func_dirname_result" = "X${1}"; then
  3002.     func_dirname_result="${3}"
  3003.   else
  3004.     func_dirname_result="$func_dirname_result${2}"
  3005.   fi
  3006. }
  3007. # func_basename file
  3008. func_basename ()
  3009. {
  3010.   func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
  3011. }
  3012. # func_stripname prefix suffix name
  3013. # strip PREFIX and SUFFIX off of NAME.
  3014. # PREFIX and SUFFIX must not contain globbing or regex special
  3015. # characters, hashes, percent signs, but SUFFIX may contain a leading
  3016. # dot (in which case that matches only a dot).
  3017. # func_strip_suffix prefix name
  3018. func_stripname ()
  3019. {
  3020.   case ${2} in
  3021.     .*) func_stripname_result=`$ECHO "X${3}" 
  3022.            | $Xsed -e "s%^${1}%%" -e "s%\\${2}$%%"`;;
  3023.     *)  func_stripname_result=`$ECHO "X${3}" 
  3024.            | $Xsed -e "s%^${1}%%" -e "s%${2}$%%"`;;
  3025.   esac
  3026. }
  3027. # sed scripts:
  3028. my_sed_long_opt='1s/^(-[^=]*)=.*/1/;q'
  3029. my_sed_long_arg='1s/^-[^=]*=//'
  3030. # func_opt_split
  3031. func_opt_split ()
  3032. {
  3033.   func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
  3034.   func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
  3035. }
  3036. # func_lo2o object
  3037. func_lo2o ()
  3038. {
  3039.   func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
  3040. }
  3041. # func_xform libobj-or-source
  3042. func_xform ()
  3043. {
  3044.   func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/.[^.]*$/.lo/'`
  3045. }
  3046. # func_arith arithmetic-term...
  3047. func_arith ()
  3048. {
  3049.   func_arith_result=`expr "$@"`
  3050. }
  3051. # func_len string
  3052. # STRING may not start with a hyphen.
  3053. func_len ()
  3054. {
  3055.   func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
  3056. }
  3057. _LT_EOF
  3058. esac
  3059. case $lt_shell_append in
  3060.   yes)
  3061.     cat << _LT_EOF >> "$cfgfile"
  3062. # func_append var value
  3063. # Append VALUE to the end of shell variable VAR.
  3064. func_append ()
  3065. {
  3066.   eval "$1+=$2"
  3067. }
  3068. _LT_EOF
  3069.     ;;
  3070.   *)
  3071.     cat << _LT_EOF >> "$cfgfile"
  3072. # func_append var value
  3073. # Append VALUE to the end of shell variable VAR.
  3074. func_append ()
  3075. {
  3076.   eval "$1=$$1$2"
  3077. }
  3078. _LT_EOF
  3079.     ;;
  3080.   esac
  3081.   sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" 
  3082.     || (rm -f "$cfgfile"; exit 1)
  3083.   mv -f "$cfgfile" "$ofile" ||
  3084.     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  3085.   chmod +x "$ofile"
  3086.     cat <<_LT_EOF >> "$ofile"
  3087. # ### BEGIN LIBTOOL TAG CONFIG: CXX
  3088. # The linker used to build libraries.
  3089. LD=$lt_LD_CXX
  3090. # Commands used to build an old-style archive.
  3091. old_archive_cmds=$lt_old_archive_cmds_CXX
  3092. # A language specific compiler.
  3093. CC=$lt_compiler_CXX
  3094. # Is the compiler the GNU compiler?
  3095. with_gcc=$GCC_CXX
  3096. # Compiler flag to turn off builtin functions.
  3097. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
  3098. # How to pass a linker flag through the compiler.
  3099. wl=$lt_lt_prog_compiler_wl_CXX
  3100. # Additional compiler flags for building library objects.
  3101. pic_flag=$lt_lt_prog_compiler_pic_CXX
  3102. # Compiler flag to prevent dynamic linking.
  3103. link_static_flag=$lt_lt_prog_compiler_static_CXX
  3104. # Does compiler simultaneously support -c and -o options?
  3105. compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
  3106. # Whether or not to add -lc for building shared libraries.
  3107. build_libtool_need_lc=$archive_cmds_need_lc_CXX
  3108. # Whether or not to disallow shared libs when runtime libs are static.
  3109. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
  3110. # Compiler flag to allow reflexive dlopens.
  3111. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
  3112. # Compiler flag to generate shared objects directly from archives.
  3113. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
  3114. # Whether the compiler copes with passing no objects directly.
  3115. compiler_needs_object=$lt_compiler_needs_object_CXX
  3116. # Create an old-style archive from a shared archive.
  3117. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
  3118. # Create a temporary old-style archive to link instead of a shared archive.
  3119. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
  3120. # Commands used to build a shared archive.
  3121. archive_cmds=$lt_archive_cmds_CXX
  3122. archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
  3123. # Commands used to build a loadable module if different from building
  3124. # a shared archive.
  3125. module_cmds=$lt_module_cmds_CXX
  3126. module_expsym_cmds=$lt_module_expsym_cmds_CXX
  3127. # Whether we are building with GNU ld or not.
  3128. with_gnu_ld=$lt_with_gnu_ld_CXX
  3129. # Flag that allows shared libraries with undefined symbols to be built.
  3130. allow_undefined_flag=$lt_allow_undefined_flag_CXX
  3131. # Flag that enforces no undefined symbols.
  3132. no_undefined_flag=$lt_no_undefined_flag_CXX
  3133. # Flag to hardcode $libdir into a binary during linking.
  3134. # This must work even if $libdir does not exist
  3135. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
  3136. # If ld is used when linking, flag to hardcode $libdir into a binary
  3137. # during linking.  This must work even if $libdir does not exist.
  3138. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
  3139. # Whether we need a single "-rpath" flag with a separated argument.
  3140. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
  3141. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3142. # DIR into the resulting binary.
  3143. hardcode_direct=$hardcode_direct_CXX
  3144. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3145. # DIR into the resulting binary and the resulting library dependency is
  3146. # "absolute",i.e impossible to change by setting ${shlibpath_var} if the
  3147. # library is relocated.
  3148. hardcode_direct_absolute=$hardcode_direct_absolute_CXX
  3149. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  3150. # into the resulting binary.
  3151. hardcode_minus_L=$hardcode_minus_L_CXX
  3152. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  3153. # into the resulting binary.
  3154. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
  3155. # Set to "yes" if building a shared library automatically hardcodes DIR
  3156. # into the library and all subsequent libraries and executables linked
  3157. # against it.
  3158. hardcode_automatic=$hardcode_automatic_CXX
  3159. # Set to yes if linker adds runtime paths of dependent libraries
  3160. # to runtime path list.
  3161. inherit_rpath=$inherit_rpath_CXX
  3162. # Whether libtool must link a program against all its dependency libraries.
  3163. link_all_deplibs=$link_all_deplibs_CXX
  3164. # Fix the shell variable $srcfile for the compiler.
  3165. fix_srcfile_path=$lt_fix_srcfile_path_CXX
  3166. # Set to "yes" if exported symbols are required.
  3167. always_export_symbols=$always_export_symbols_CXX
  3168. # The commands to list exported symbols.
  3169. export_symbols_cmds=$lt_export_symbols_cmds_CXX
  3170. # Symbols that should not be listed in the preloaded symbols.
  3171. exclude_expsyms=$lt_exclude_expsyms_CXX
  3172. # Symbols that must always be exported.
  3173. include_expsyms=$lt_include_expsyms_CXX
  3174. # Commands necessary for linking programs (against libraries) with templates.
  3175. prelink_cmds=$lt_prelink_cmds_CXX
  3176. # Specify filename containing input files.
  3177. file_list_spec=$lt_file_list_spec_CXX
  3178. # How to hardcode a shared library path into an executable.
  3179. hardcode_action=$hardcode_action_CXX
  3180. # The directories searched by this compiler when creating a shared library.
  3181. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
  3182. # Dependencies to place before and after the objects being linked to
  3183. # create a shared library.
  3184. predep_objects=$lt_predep_objects_CXX
  3185. postdep_objects=$lt_postdep_objects_CXX
  3186. predeps=$lt_predeps_CXX
  3187. postdeps=$lt_postdeps_CXX
  3188. # The library search path used internally by the compiler when linking
  3189. # a shared library.
  3190. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
  3191. # ### END LIBTOOL TAG CONFIG: CXX
  3192. _LT_EOF
  3193.     cat <<_LT_EOF >> "$ofile"
  3194. # ### BEGIN LIBTOOL TAG CONFIG: F77
  3195. # The linker used to build libraries.
  3196. LD=$lt_LD_F77
  3197. # Commands used to build an old-style archive.
  3198. old_archive_cmds=$lt_old_archive_cmds_F77
  3199. # A language specific compiler.
  3200. CC=$lt_compiler_F77
  3201. # Is the compiler the GNU compiler?
  3202. with_gcc=$GCC_F77
  3203. # Compiler flag to turn off builtin functions.
  3204. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77
  3205. # How to pass a linker flag through the compiler.
  3206. wl=$lt_lt_prog_compiler_wl_F77
  3207. # Additional compiler flags for building library objects.
  3208. pic_flag=$lt_lt_prog_compiler_pic_F77
  3209. # Compiler flag to prevent dynamic linking.
  3210. link_static_flag=$lt_lt_prog_compiler_static_F77
  3211. # Does compiler simultaneously support -c and -o options?
  3212. compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77
  3213. # Whether or not to add -lc for building shared libraries.
  3214. build_libtool_need_lc=$archive_cmds_need_lc_F77
  3215. # Whether or not to disallow shared libs when runtime libs are static.
  3216. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77
  3217. # Compiler flag to allow reflexive dlopens.
  3218. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77
  3219. # Compiler flag to generate shared objects directly from archives.
  3220. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77
  3221. # Whether the compiler copes with passing no objects directly.
  3222. compiler_needs_object=$lt_compiler_needs_object_F77
  3223. # Create an old-style archive from a shared archive.
  3224. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77
  3225. # Create a temporary old-style archive to link instead of a shared archive.
  3226. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77
  3227. # Commands used to build a shared archive.
  3228. archive_cmds=$lt_archive_cmds_F77
  3229. archive_expsym_cmds=$lt_archive_expsym_cmds_F77
  3230. # Commands used to build a loadable module if different from building
  3231. # a shared archive.
  3232. module_cmds=$lt_module_cmds_F77
  3233. module_expsym_cmds=$lt_module_expsym_cmds_F77
  3234. # Whether we are building with GNU ld or not.
  3235. with_gnu_ld=$lt_with_gnu_ld_F77
  3236. # Flag that allows shared libraries with undefined symbols to be built.
  3237. allow_undefined_flag=$lt_allow_undefined_flag_F77
  3238. # Flag that enforces no undefined symbols.
  3239. no_undefined_flag=$lt_no_undefined_flag_F77
  3240. # Flag to hardcode $libdir into a binary during linking.
  3241. # This must work even if $libdir does not exist
  3242. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77
  3243. # If ld is used when linking, flag to hardcode $libdir into a binary
  3244. # during linking.  This must work even if $libdir does not exist.
  3245. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77
  3246. # Whether we need a single "-rpath" flag with a separated argument.
  3247. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77
  3248. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3249. # DIR into the resulting binary.
  3250. hardcode_direct=$hardcode_direct_F77
  3251. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3252. # DIR into the resulting binary and the resulting library dependency is
  3253. # "absolute",i.e impossible to change by setting ${shlibpath_var} if the
  3254. # library is relocated.
  3255. hardcode_direct_absolute=$hardcode_direct_absolute_F77
  3256. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  3257. # into the resulting binary.
  3258. hardcode_minus_L=$hardcode_minus_L_F77
  3259. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  3260. # into the resulting binary.
  3261. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77
  3262. # Set to "yes" if building a shared library automatically hardcodes DIR
  3263. # into the library and all subsequent libraries and executables linked
  3264. # against it.
  3265. hardcode_automatic=$hardcode_automatic_F77
  3266. # Set to yes if linker adds runtime paths of dependent libraries
  3267. # to runtime path list.
  3268. inherit_rpath=$inherit_rpath_F77
  3269. # Whether libtool must link a program against all its dependency libraries.
  3270. link_all_deplibs=$link_all_deplibs_F77
  3271. # Fix the shell variable $srcfile for the compiler.
  3272. fix_srcfile_path=$lt_fix_srcfile_path_F77
  3273. # Set to "yes" if exported symbols are required.
  3274. always_export_symbols=$always_export_symbols_F77
  3275. # The commands to list exported symbols.
  3276. export_symbols_cmds=$lt_export_symbols_cmds_F77
  3277. # Symbols that should not be listed in the preloaded symbols.
  3278. exclude_expsyms=$lt_exclude_expsyms_F77
  3279. # Symbols that must always be exported.
  3280. include_expsyms=$lt_include_expsyms_F77
  3281. # Commands necessary for linking programs (against libraries) with templates.
  3282. prelink_cmds=$lt_prelink_cmds_F77
  3283. # Specify filename containing input files.
  3284. file_list_spec=$lt_file_list_spec_F77
  3285. # How to hardcode a shared library path into an executable.
  3286. hardcode_action=$hardcode_action_F77
  3287. # The directories searched by this compiler when creating a shared library.
  3288. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77
  3289. # Dependencies to place before and after the objects being linked to
  3290. # create a shared library.
  3291. predep_objects=$lt_predep_objects_F77
  3292. postdep_objects=$lt_postdep_objects_F77
  3293. predeps=$lt_predeps_F77
  3294. postdeps=$lt_postdeps_F77
  3295. # The library search path used internally by the compiler when linking
  3296. # a shared library.
  3297. compiler_lib_search_path=$lt_compiler_lib_search_path_F77
  3298. # ### END LIBTOOL TAG CONFIG: F77
  3299. _LT_EOF
  3300.  ;;
  3301.   esac
  3302. done # for ac_tag
  3303. as_fn_exit 0
  3304. _ACEOF
  3305. ac_clean_files=$ac_clean_files_save
  3306. test $ac_write_fail = 0 ||
  3307.   as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
  3308. # configure is writing to config.log, and then calls config.status.
  3309. # config.status does its own redirection, appending to config.log.
  3310. # Unfortunately, on DOS this fails, as config.log is still kept open
  3311. # by configure, so config.status won't be able to write to it; its
  3312. # output is simply discarded.  So we exec the FD to /dev/null,
  3313. # effectively closing config.log, so it can be properly (re)opened and
  3314. # appended to by config.status.  When coming back to configure, we
  3315. # need to make the FD available again.
  3316. if test "$no_create" != yes; then
  3317.   ac_cs_success=:
  3318.   ac_config_status_args=
  3319.   test "$silent" = yes &&
  3320.     ac_config_status_args="$ac_config_status_args --quiet"
  3321.   exec 5>/dev/null
  3322.   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  3323.   exec 5>>config.log
  3324.   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  3325.   # would make configure fail if this is the last instruction.
  3326.   $ac_cs_success || as_fn_exit $?
  3327. fi
  3328. if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  3329.   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
  3330. $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
  3331. fi