configure
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:678k
源码类别:

网格计算

开发平台:

Java

  1. #if HAVE_DLFCN_H
  2. #include <dlfcn.h>
  3. #endif
  4. #include <stdio.h>
  5. #ifdef RTLD_GLOBAL
  6. #  define LT_DLGLOBAL RTLD_GLOBAL
  7. #else
  8. #  ifdef DL_GLOBAL
  9. #    define LT_DLGLOBAL DL_GLOBAL
  10. #  else
  11. #    define LT_DLGLOBAL 0
  12. #  endif
  13. #endif
  14. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  15.    find out it does not work in some platform. */
  16. #ifndef LT_DLLAZY_OR_NOW
  17. #  ifdef RTLD_LAZY
  18. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  19. #  else
  20. #    ifdef DL_LAZY
  21. #      define LT_DLLAZY_OR_NOW DL_LAZY
  22. #    else
  23. #      ifdef RTLD_NOW
  24. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  25. #      else
  26. #        ifdef DL_NOW
  27. #          define LT_DLLAZY_OR_NOW DL_NOW
  28. #        else
  29. #          define LT_DLLAZY_OR_NOW 0
  30. #        endif
  31. #      endif
  32. #    endif
  33. #  endif
  34. #endif
  35. #ifdef __cplusplus
  36. extern "C" void exit (int);
  37. #endif
  38. void fnord() { int i=42;}
  39. int main ()
  40. {
  41.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  42.   int status = $lt_dlunknown;
  43.   if (self)
  44.     {
  45.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  46.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  47.       /* dlclose (self); */
  48.     }
  49.     exit (status);
  50. }
  51. EOF
  52.   if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  53.   (eval $ac_link) 2>&5
  54.   ac_status=$?
  55.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  56.   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
  57.     (./conftest; exit; ) 2>/dev/null
  58.     lt_status=$?
  59.     case x$lt_status in
  60.       x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
  61.       x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
  62.       x$lt_unknown|x*) lt_cv_dlopen_self=no ;;
  63.     esac
  64.   else :
  65.     # compilation failed
  66.     lt_cv_dlopen_self=no
  67.   fi
  68. fi
  69. rm -fr conftest*
  70. fi
  71. echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
  72. echo "${ECHO_T}$lt_cv_dlopen_self" >&6
  73.     if test "x$lt_cv_dlopen_self" = xyes; then
  74.       LDFLAGS="$LDFLAGS $link_static_flag"
  75.       echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
  76. echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6
  77. if test "${lt_cv_dlopen_self_static+set}" = set; then
  78.   echo $ECHO_N "(cached) $ECHO_C" >&6
  79. else
  80.      if test "$cross_compiling" = yes; then :
  81.   lt_cv_dlopen_self_static=cross
  82. else
  83.   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  84.   lt_status=$lt_dlunknown
  85.   cat > conftest.$ac_ext <<EOF
  86. #line 18112 "configure"
  87. #include "confdefs.h"
  88. #if HAVE_DLFCN_H
  89. #include <dlfcn.h>
  90. #endif
  91. #include <stdio.h>
  92. #ifdef RTLD_GLOBAL
  93. #  define LT_DLGLOBAL RTLD_GLOBAL
  94. #else
  95. #  ifdef DL_GLOBAL
  96. #    define LT_DLGLOBAL DL_GLOBAL
  97. #  else
  98. #    define LT_DLGLOBAL 0
  99. #  endif
  100. #endif
  101. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  102.    find out it does not work in some platform. */
  103. #ifndef LT_DLLAZY_OR_NOW
  104. #  ifdef RTLD_LAZY
  105. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  106. #  else
  107. #    ifdef DL_LAZY
  108. #      define LT_DLLAZY_OR_NOW DL_LAZY
  109. #    else
  110. #      ifdef RTLD_NOW
  111. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  112. #      else
  113. #        ifdef DL_NOW
  114. #          define LT_DLLAZY_OR_NOW DL_NOW
  115. #        else
  116. #          define LT_DLLAZY_OR_NOW 0
  117. #        endif
  118. #      endif
  119. #    endif
  120. #  endif
  121. #endif
  122. #ifdef __cplusplus
  123. extern "C" void exit (int);
  124. #endif
  125. void fnord() { int i=42;}
  126. int main ()
  127. {
  128.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  129.   int status = $lt_dlunknown;
  130.   if (self)
  131.     {
  132.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  133.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  134.       /* dlclose (self); */
  135.     }
  136.     exit (status);
  137. }
  138. EOF
  139.   if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  140.   (eval $ac_link) 2>&5
  141.   ac_status=$?
  142.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  143.   (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
  144.     (./conftest; exit; ) 2>/dev/null
  145.     lt_status=$?
  146.     case x$lt_status in
  147.       x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
  148.       x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
  149.       x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;;
  150.     esac
  151.   else :
  152.     # compilation failed
  153.     lt_cv_dlopen_self_static=no
  154.   fi
  155. fi
  156. rm -fr conftest*
  157. fi
  158. echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
  159. echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
  160.     fi
  161.     CPPFLAGS="$save_CPPFLAGS"
  162.     LDFLAGS="$save_LDFLAGS"
  163.     LIBS="$save_LIBS"
  164.     ;;
  165.   esac
  166.   case $lt_cv_dlopen_self in
  167.   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  168.   *) enable_dlopen_self=unknown ;;
  169.   esac
  170.   case $lt_cv_dlopen_self_static in
  171.   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  172.   *) enable_dlopen_self_static=unknown ;;
  173.   esac
  174. fi
  175. # The else clause should only fire when bootstrapping the
  176. # libtool distribution, otherwise you forgot to ship ltmain.sh
  177. # with your package, and you will get complaints that there are
  178. # no rules to generate ltmain.sh.
  179. if test -f "$ltmain"; then
  180.   # See if we are running on zsh, and set the options which allow our commands through
  181.   # without removal of  escapes.
  182.   if test -n "${ZSH_VERSION+set}" ; then
  183.     setopt NO_GLOB_SUBST
  184.   fi
  185.   # Now quote all the things that may contain metacharacters while being
  186.   # careful not to overquote the AC_SUBSTed values.  We take copies of the
  187.   # variables and quote the copies for generation of the libtool script.
  188.   for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM 
  189.     SED SHELL STRIP 
  190.     libname_spec library_names_spec soname_spec extract_expsyms_cmds 
  191.     old_striplib striplib file_magic_cmd finish_cmds finish_eval 
  192.     deplibs_check_method reload_flag reload_cmds need_locks 
  193.     lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl 
  194.     lt_cv_sys_global_symbol_to_c_name_address 
  195.     sys_lib_search_path_spec sys_lib_dlsearch_path_spec 
  196.     old_postinstall_cmds old_postuninstall_cmds 
  197.     compiler_GCJ 
  198.     CC_GCJ 
  199.     LD_GCJ 
  200.     lt_prog_compiler_wl_GCJ 
  201.     lt_prog_compiler_pic_GCJ 
  202.     lt_prog_compiler_static_GCJ 
  203.     lt_prog_compiler_no_builtin_flag_GCJ 
  204.     export_dynamic_flag_spec_GCJ 
  205.     thread_safe_flag_spec_GCJ 
  206.     whole_archive_flag_spec_GCJ 
  207.     enable_shared_with_static_runtimes_GCJ 
  208.     old_archive_cmds_GCJ 
  209.     old_archive_from_new_cmds_GCJ 
  210.     predep_objects_GCJ 
  211.     postdep_objects_GCJ 
  212.     predeps_GCJ 
  213.     postdeps_GCJ 
  214.     compiler_lib_search_path_GCJ 
  215.     archive_cmds_GCJ 
  216.     archive_expsym_cmds_GCJ 
  217.     postinstall_cmds_GCJ 
  218.     postuninstall_cmds_GCJ 
  219.     old_archive_from_expsyms_cmds_GCJ 
  220.     allow_undefined_flag_GCJ 
  221.     no_undefined_flag_GCJ 
  222.     export_symbols_cmds_GCJ 
  223.     hardcode_libdir_flag_spec_GCJ 
  224.     hardcode_libdir_flag_spec_ld_GCJ 
  225.     hardcode_libdir_separator_GCJ 
  226.     hardcode_automatic_GCJ 
  227.     module_cmds_GCJ 
  228.     module_expsym_cmds_GCJ 
  229.     lt_cv_prog_compiler_c_o_GCJ 
  230.     exclude_expsyms_GCJ 
  231.     include_expsyms_GCJ; do
  232.     case $var in
  233.     old_archive_cmds_GCJ | 
  234.     old_archive_from_new_cmds_GCJ | 
  235.     archive_cmds_GCJ | 
  236.     archive_expsym_cmds_GCJ | 
  237.     module_cmds_GCJ | 
  238.     module_expsym_cmds_GCJ | 
  239.     old_archive_from_expsyms_cmds_GCJ | 
  240.     export_symbols_cmds_GCJ | 
  241.     extract_expsyms_cmds | reload_cmds | finish_cmds | 
  242.     postinstall_cmds | postuninstall_cmds | 
  243.     old_postinstall_cmds | old_postuninstall_cmds | 
  244.     sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
  245.       # Double-quote double-evaled strings.
  246.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$double_quote_subst" -e "$sed_quote_subst" -e "$delay_variable_subst"`\""
  247.       ;;
  248.     *)
  249.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$sed_quote_subst"`\""
  250.       ;;
  251.     esac
  252.   done
  253.   case $lt_echo in
  254.   *'$0 --fallback-echo"')
  255.     lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  256.     ;;
  257.   esac
  258. cfgfile="$ofile"
  259.   cat <<__EOF__ >> "$cfgfile"
  260. # ### BEGIN LIBTOOL TAG CONFIG: $tagname
  261. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  262. # Shell to use when invoking shell scripts.
  263. SHELL=$lt_SHELL
  264. # Whether or not to build shared libraries.
  265. build_libtool_libs=$enable_shared
  266. # Whether or not to build static libraries.
  267. build_old_libs=$enable_static
  268. # Whether or not to add -lc for building shared libraries.
  269. build_libtool_need_lc=$archive_cmds_need_lc_GCJ
  270. # Whether or not to disallow shared libs when runtime libs are static
  271. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ
  272. # Whether or not to optimize for fast installation.
  273. fast_install=$enable_fast_install
  274. # The host system.
  275. host_alias=$host_alias
  276. host=$host
  277. # An echo program that does not interpret backslashes.
  278. echo=$lt_echo
  279. # The archiver.
  280. AR=$lt_AR
  281. AR_FLAGS=$lt_AR_FLAGS
  282. # A C compiler.
  283. LTCC=$lt_LTCC
  284. # A language-specific compiler.
  285. CC=$lt_compiler_GCJ
  286. # Is the compiler the GNU C compiler?
  287. with_gcc=$GCC_GCJ
  288. # An ERE matcher.
  289. EGREP=$lt_EGREP
  290. # The linker used to build libraries.
  291. LD=$lt_LD_GCJ
  292. # Whether we need hard or soft links.
  293. LN_S=$lt_LN_S
  294. # A BSD-compatible nm program.
  295. NM=$lt_NM
  296. # A symbol stripping program
  297. STRIP=$lt_STRIP
  298. # Used to examine libraries when file_magic_cmd begins "file"
  299. MAGIC_CMD=$MAGIC_CMD
  300. # Used on cygwin: DLL creation program.
  301. DLLTOOL="$DLLTOOL"
  302. # Used on cygwin: object dumper.
  303. OBJDUMP="$OBJDUMP"
  304. # Used on cygwin: assembler.
  305. AS="$AS"
  306. # The name of the directory that contains temporary libtool files.
  307. objdir=$objdir
  308. # How to create reloadable object files.
  309. reload_flag=$lt_reload_flag
  310. reload_cmds=$lt_reload_cmds
  311. # How to pass a linker flag through the compiler.
  312. wl=$lt_lt_prog_compiler_wl_GCJ
  313. # Object file suffix (normally "o").
  314. objext="$ac_objext"
  315. # Old archive suffix (normally "a").
  316. libext="$libext"
  317. # Shared library suffix (normally ".so").
  318. shrext_cmds='$shrext_cmds'
  319. # Executable file suffix (normally "").
  320. exeext="$exeext"
  321. # Additional compiler flags for building library objects.
  322. pic_flag=$lt_lt_prog_compiler_pic_GCJ
  323. pic_mode=$pic_mode
  324. # What is the maximum length of a command?
  325. max_cmd_len=$lt_cv_sys_max_cmd_len
  326. # Does compiler simultaneously support -c and -o options?
  327. compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ
  328. # Must we lock files when doing compilation ?
  329. need_locks=$lt_need_locks
  330. # Do we need the lib prefix for modules?
  331. need_lib_prefix=$need_lib_prefix
  332. # Do we need a version for libraries?
  333. need_version=$need_version
  334. # Whether dlopen is supported.
  335. dlopen_support=$enable_dlopen
  336. # Whether dlopen of programs is supported.
  337. dlopen_self=$enable_dlopen_self
  338. # Whether dlopen of statically linked programs is supported.
  339. dlopen_self_static=$enable_dlopen_self_static
  340. # Compiler flag to prevent dynamic linking.
  341. link_static_flag=$lt_lt_prog_compiler_static_GCJ
  342. # Compiler flag to turn off builtin functions.
  343. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ
  344. # Compiler flag to allow reflexive dlopens.
  345. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ
  346. # Compiler flag to generate shared objects directly from archives.
  347. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ
  348. # Compiler flag to generate thread-safe objects.
  349. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ
  350. # Library versioning type.
  351. version_type=$version_type
  352. # Format of library name prefix.
  353. libname_spec=$lt_libname_spec
  354. # List of archive names.  First name is the real one, the rest are links.
  355. # The last name is the one that the linker finds with -lNAME.
  356. library_names_spec=$lt_library_names_spec
  357. # The coded name of the library, if different from the real name.
  358. soname_spec=$lt_soname_spec
  359. # Commands used to build and install an old-style archive.
  360. RANLIB=$lt_RANLIB
  361. old_archive_cmds=$lt_old_archive_cmds_GCJ
  362. old_postinstall_cmds=$lt_old_postinstall_cmds
  363. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  364. # Create an old-style archive from a shared archive.
  365. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ
  366. # Create a temporary old-style archive to link instead of a shared archive.
  367. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ
  368. # Commands used to build and install a shared archive.
  369. archive_cmds=$lt_archive_cmds_GCJ
  370. archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ
  371. postinstall_cmds=$lt_postinstall_cmds
  372. postuninstall_cmds=$lt_postuninstall_cmds
  373. # Commands used to build a loadable module (assumed same as above if empty)
  374. module_cmds=$lt_module_cmds_GCJ
  375. module_expsym_cmds=$lt_module_expsym_cmds_GCJ
  376. # Commands to strip libraries.
  377. old_striplib=$lt_old_striplib
  378. striplib=$lt_striplib
  379. # Dependencies to place before the objects being linked to create a
  380. # shared library.
  381. predep_objects=$lt_predep_objects_GCJ
  382. # Dependencies to place after the objects being linked to create a
  383. # shared library.
  384. postdep_objects=$lt_postdep_objects_GCJ
  385. # Dependencies to place before the objects being linked to create a
  386. # shared library.
  387. predeps=$lt_predeps_GCJ
  388. # Dependencies to place after the objects being linked to create a
  389. # shared library.
  390. postdeps=$lt_postdeps_GCJ
  391. # The library search path used internally by the compiler when linking
  392. # a shared library.
  393. compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ
  394. # Method to check whether dependent libraries are shared objects.
  395. deplibs_check_method=$lt_deplibs_check_method
  396. # Command to use when deplibs_check_method == file_magic.
  397. file_magic_cmd=$lt_file_magic_cmd
  398. # Flag that allows shared libraries with undefined symbols to be built.
  399. allow_undefined_flag=$lt_allow_undefined_flag_GCJ
  400. # Flag that forces no undefined symbols.
  401. no_undefined_flag=$lt_no_undefined_flag_GCJ
  402. # Commands used to finish a libtool library installation in a directory.
  403. finish_cmds=$lt_finish_cmds
  404. # Same as above, but a single script fragment to be evaled but not shown.
  405. finish_eval=$lt_finish_eval
  406. # Take the output of nm and produce a listing of raw symbols and C names.
  407. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  408. # Transform the output of nm in a proper C declaration
  409. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  410. # Transform the output of nm in a C name address pair
  411. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  412. # This is the shared library runtime path variable.
  413. runpath_var=$runpath_var
  414. # This is the shared library path variable.
  415. shlibpath_var=$shlibpath_var
  416. # Is shlibpath searched before the hard-coded library search path?
  417. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  418. # How to hardcode a shared library path into an executable.
  419. hardcode_action=$hardcode_action_GCJ
  420. # Whether we should hardcode library paths into libraries.
  421. hardcode_into_libs=$hardcode_into_libs
  422. # Flag to hardcode $libdir into a binary during linking.
  423. # This must work even if $libdir does not exist.
  424. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ
  425. # If ld is used when linking, flag to hardcode $libdir into
  426. # a binary during linking. This must work even if $libdir does
  427. # not exist.
  428. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ
  429. # Whether we need a single -rpath flag with a separated argument.
  430. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ
  431. # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
  432. # resulting binary.
  433. hardcode_direct=$hardcode_direct_GCJ
  434. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  435. # resulting binary.
  436. hardcode_minus_L=$hardcode_minus_L_GCJ
  437. # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
  438. # the resulting binary.
  439. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ
  440. # Set to yes if building a shared library automatically hardcodes DIR into the library
  441. # and all subsequent libraries and executables linked against it.
  442. hardcode_automatic=$hardcode_automatic_GCJ
  443. # Variables whose values should be saved in libtool wrapper scripts and
  444. # restored at relink time.
  445. variables_saved_for_relink="$variables_saved_for_relink"
  446. # Whether libtool must link a program against all its dependency libraries.
  447. link_all_deplibs=$link_all_deplibs_GCJ
  448. # Compile-time system search path for libraries
  449. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  450. # Run-time system search path for libraries
  451. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  452. # Fix the shell variable $srcfile for the compiler.
  453. fix_srcfile_path="$fix_srcfile_path_GCJ"
  454. # Set to yes if exported symbols are required.
  455. always_export_symbols=$always_export_symbols_GCJ
  456. # The commands to list exported symbols.
  457. export_symbols_cmds=$lt_export_symbols_cmds_GCJ
  458. # The commands to extract the exported symbol list from a shared archive.
  459. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  460. # Symbols that should not be listed in the preloaded symbols.
  461. exclude_expsyms=$lt_exclude_expsyms_GCJ
  462. # Symbols that must always be exported.
  463. include_expsyms=$lt_include_expsyms_GCJ
  464. # ### END LIBTOOL TAG CONFIG: $tagname
  465. __EOF__
  466. else
  467.   # If there is no Makefile yet, we rely on a make rule to execute
  468.   # `config.status --recheck' to rerun these tests and create the
  469.   # libtool script then.
  470.   ltmain_in=`echo $ltmain | sed -e 's/.sh$/.in/'`
  471.   if test -f "$ltmain_in"; then
  472.     test -f Makefile && make "$ltmain"
  473.   fi
  474. fi
  475. ac_ext=c
  476. ac_cpp='$CPP $CPPFLAGS'
  477. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  478. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  479. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  480. CC="$lt_save_CC"
  481. else
  482.   tagname=""
  483. fi
  484. ;;
  485.       RC)
  486. # Source file extension for RC test sources.
  487. ac_ext=rc
  488. # Object file extension for compiled RC test sources.
  489. objext=o
  490. objext_RC=$objext
  491. # Code to be used in simple compile tests
  492. lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }n'
  493. # Code to be used in simple link tests
  494. lt_simple_link_test_code="$lt_simple_compile_test_code"
  495. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  496. # If no C compiler was specified, use CC.
  497. LTCC=${LTCC-"$CC"}
  498. # Allow CC to be a program name with arguments.
  499. compiler=$CC
  500. # Allow CC to be a program name with arguments.
  501. lt_save_CC="$CC"
  502. CC=${RC-"windres"}
  503. compiler=$CC
  504. compiler_RC=$CC
  505. lt_cv_prog_compiler_c_o_RC=yes
  506. # The else clause should only fire when bootstrapping the
  507. # libtool distribution, otherwise you forgot to ship ltmain.sh
  508. # with your package, and you will get complaints that there are
  509. # no rules to generate ltmain.sh.
  510. if test -f "$ltmain"; then
  511.   # See if we are running on zsh, and set the options which allow our commands through
  512.   # without removal of  escapes.
  513.   if test -n "${ZSH_VERSION+set}" ; then
  514.     setopt NO_GLOB_SUBST
  515.   fi
  516.   # Now quote all the things that may contain metacharacters while being
  517.   # careful not to overquote the AC_SUBSTed values.  We take copies of the
  518.   # variables and quote the copies for generation of the libtool script.
  519.   for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM 
  520.     SED SHELL STRIP 
  521.     libname_spec library_names_spec soname_spec extract_expsyms_cmds 
  522.     old_striplib striplib file_magic_cmd finish_cmds finish_eval 
  523.     deplibs_check_method reload_flag reload_cmds need_locks 
  524.     lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl 
  525.     lt_cv_sys_global_symbol_to_c_name_address 
  526.     sys_lib_search_path_spec sys_lib_dlsearch_path_spec 
  527.     old_postinstall_cmds old_postuninstall_cmds 
  528.     compiler_RC 
  529.     CC_RC 
  530.     LD_RC 
  531.     lt_prog_compiler_wl_RC 
  532.     lt_prog_compiler_pic_RC 
  533.     lt_prog_compiler_static_RC 
  534.     lt_prog_compiler_no_builtin_flag_RC 
  535.     export_dynamic_flag_spec_RC 
  536.     thread_safe_flag_spec_RC 
  537.     whole_archive_flag_spec_RC 
  538.     enable_shared_with_static_runtimes_RC 
  539.     old_archive_cmds_RC 
  540.     old_archive_from_new_cmds_RC 
  541.     predep_objects_RC 
  542.     postdep_objects_RC 
  543.     predeps_RC 
  544.     postdeps_RC 
  545.     compiler_lib_search_path_RC 
  546.     archive_cmds_RC 
  547.     archive_expsym_cmds_RC 
  548.     postinstall_cmds_RC 
  549.     postuninstall_cmds_RC 
  550.     old_archive_from_expsyms_cmds_RC 
  551.     allow_undefined_flag_RC 
  552.     no_undefined_flag_RC 
  553.     export_symbols_cmds_RC 
  554.     hardcode_libdir_flag_spec_RC 
  555.     hardcode_libdir_flag_spec_ld_RC 
  556.     hardcode_libdir_separator_RC 
  557.     hardcode_automatic_RC 
  558.     module_cmds_RC 
  559.     module_expsym_cmds_RC 
  560.     lt_cv_prog_compiler_c_o_RC 
  561.     exclude_expsyms_RC 
  562.     include_expsyms_RC; do
  563.     case $var in
  564.     old_archive_cmds_RC | 
  565.     old_archive_from_new_cmds_RC | 
  566.     archive_cmds_RC | 
  567.     archive_expsym_cmds_RC | 
  568.     module_cmds_RC | 
  569.     module_expsym_cmds_RC | 
  570.     old_archive_from_expsyms_cmds_RC | 
  571.     export_symbols_cmds_RC | 
  572.     extract_expsyms_cmds | reload_cmds | finish_cmds | 
  573.     postinstall_cmds | postuninstall_cmds | 
  574.     old_postinstall_cmds | old_postuninstall_cmds | 
  575.     sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
  576.       # Double-quote double-evaled strings.
  577.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$double_quote_subst" -e "$sed_quote_subst" -e "$delay_variable_subst"`\""
  578.       ;;
  579.     *)
  580.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$sed_quote_subst"`\""
  581.       ;;
  582.     esac
  583.   done
  584.   case $lt_echo in
  585.   *'$0 --fallback-echo"')
  586.     lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  587.     ;;
  588.   esac
  589. cfgfile="$ofile"
  590.   cat <<__EOF__ >> "$cfgfile"
  591. # ### BEGIN LIBTOOL TAG CONFIG: $tagname
  592. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  593. # Shell to use when invoking shell scripts.
  594. SHELL=$lt_SHELL
  595. # Whether or not to build shared libraries.
  596. build_libtool_libs=$enable_shared
  597. # Whether or not to build static libraries.
  598. build_old_libs=$enable_static
  599. # Whether or not to add -lc for building shared libraries.
  600. build_libtool_need_lc=$archive_cmds_need_lc_RC
  601. # Whether or not to disallow shared libs when runtime libs are static
  602. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC
  603. # Whether or not to optimize for fast installation.
  604. fast_install=$enable_fast_install
  605. # The host system.
  606. host_alias=$host_alias
  607. host=$host
  608. # An echo program that does not interpret backslashes.
  609. echo=$lt_echo
  610. # The archiver.
  611. AR=$lt_AR
  612. AR_FLAGS=$lt_AR_FLAGS
  613. # A C compiler.
  614. LTCC=$lt_LTCC
  615. # A language-specific compiler.
  616. CC=$lt_compiler_RC
  617. # Is the compiler the GNU C compiler?
  618. with_gcc=$GCC_RC
  619. # An ERE matcher.
  620. EGREP=$lt_EGREP
  621. # The linker used to build libraries.
  622. LD=$lt_LD_RC
  623. # Whether we need hard or soft links.
  624. LN_S=$lt_LN_S
  625. # A BSD-compatible nm program.
  626. NM=$lt_NM
  627. # A symbol stripping program
  628. STRIP=$lt_STRIP
  629. # Used to examine libraries when file_magic_cmd begins "file"
  630. MAGIC_CMD=$MAGIC_CMD
  631. # Used on cygwin: DLL creation program.
  632. DLLTOOL="$DLLTOOL"
  633. # Used on cygwin: object dumper.
  634. OBJDUMP="$OBJDUMP"
  635. # Used on cygwin: assembler.
  636. AS="$AS"
  637. # The name of the directory that contains temporary libtool files.
  638. objdir=$objdir
  639. # How to create reloadable object files.
  640. reload_flag=$lt_reload_flag
  641. reload_cmds=$lt_reload_cmds
  642. # How to pass a linker flag through the compiler.
  643. wl=$lt_lt_prog_compiler_wl_RC
  644. # Object file suffix (normally "o").
  645. objext="$ac_objext"
  646. # Old archive suffix (normally "a").
  647. libext="$libext"
  648. # Shared library suffix (normally ".so").
  649. shrext_cmds='$shrext_cmds'
  650. # Executable file suffix (normally "").
  651. exeext="$exeext"
  652. # Additional compiler flags for building library objects.
  653. pic_flag=$lt_lt_prog_compiler_pic_RC
  654. pic_mode=$pic_mode
  655. # What is the maximum length of a command?
  656. max_cmd_len=$lt_cv_sys_max_cmd_len
  657. # Does compiler simultaneously support -c and -o options?
  658. compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC
  659. # Must we lock files when doing compilation ?
  660. need_locks=$lt_need_locks
  661. # Do we need the lib prefix for modules?
  662. need_lib_prefix=$need_lib_prefix
  663. # Do we need a version for libraries?
  664. need_version=$need_version
  665. # Whether dlopen is supported.
  666. dlopen_support=$enable_dlopen
  667. # Whether dlopen of programs is supported.
  668. dlopen_self=$enable_dlopen_self
  669. # Whether dlopen of statically linked programs is supported.
  670. dlopen_self_static=$enable_dlopen_self_static
  671. # Compiler flag to prevent dynamic linking.
  672. link_static_flag=$lt_lt_prog_compiler_static_RC
  673. # Compiler flag to turn off builtin functions.
  674. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC
  675. # Compiler flag to allow reflexive dlopens.
  676. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC
  677. # Compiler flag to generate shared objects directly from archives.
  678. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC
  679. # Compiler flag to generate thread-safe objects.
  680. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC
  681. # Library versioning type.
  682. version_type=$version_type
  683. # Format of library name prefix.
  684. libname_spec=$lt_libname_spec
  685. # List of archive names.  First name is the real one, the rest are links.
  686. # The last name is the one that the linker finds with -lNAME.
  687. library_names_spec=$lt_library_names_spec
  688. # The coded name of the library, if different from the real name.
  689. soname_spec=$lt_soname_spec
  690. # Commands used to build and install an old-style archive.
  691. RANLIB=$lt_RANLIB
  692. old_archive_cmds=$lt_old_archive_cmds_RC
  693. old_postinstall_cmds=$lt_old_postinstall_cmds
  694. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  695. # Create an old-style archive from a shared archive.
  696. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC
  697. # Create a temporary old-style archive to link instead of a shared archive.
  698. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC
  699. # Commands used to build and install a shared archive.
  700. archive_cmds=$lt_archive_cmds_RC
  701. archive_expsym_cmds=$lt_archive_expsym_cmds_RC
  702. postinstall_cmds=$lt_postinstall_cmds
  703. postuninstall_cmds=$lt_postuninstall_cmds
  704. # Commands used to build a loadable module (assumed same as above if empty)
  705. module_cmds=$lt_module_cmds_RC
  706. module_expsym_cmds=$lt_module_expsym_cmds_RC
  707. # Commands to strip libraries.
  708. old_striplib=$lt_old_striplib
  709. striplib=$lt_striplib
  710. # Dependencies to place before the objects being linked to create a
  711. # shared library.
  712. predep_objects=$lt_predep_objects_RC
  713. # Dependencies to place after the objects being linked to create a
  714. # shared library.
  715. postdep_objects=$lt_postdep_objects_RC
  716. # Dependencies to place before the objects being linked to create a
  717. # shared library.
  718. predeps=$lt_predeps_RC
  719. # Dependencies to place after the objects being linked to create a
  720. # shared library.
  721. postdeps=$lt_postdeps_RC
  722. # The library search path used internally by the compiler when linking
  723. # a shared library.
  724. compiler_lib_search_path=$lt_compiler_lib_search_path_RC
  725. # Method to check whether dependent libraries are shared objects.
  726. deplibs_check_method=$lt_deplibs_check_method
  727. # Command to use when deplibs_check_method == file_magic.
  728. file_magic_cmd=$lt_file_magic_cmd
  729. # Flag that allows shared libraries with undefined symbols to be built.
  730. allow_undefined_flag=$lt_allow_undefined_flag_RC
  731. # Flag that forces no undefined symbols.
  732. no_undefined_flag=$lt_no_undefined_flag_RC
  733. # Commands used to finish a libtool library installation in a directory.
  734. finish_cmds=$lt_finish_cmds
  735. # Same as above, but a single script fragment to be evaled but not shown.
  736. finish_eval=$lt_finish_eval
  737. # Take the output of nm and produce a listing of raw symbols and C names.
  738. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  739. # Transform the output of nm in a proper C declaration
  740. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  741. # Transform the output of nm in a C name address pair
  742. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  743. # This is the shared library runtime path variable.
  744. runpath_var=$runpath_var
  745. # This is the shared library path variable.
  746. shlibpath_var=$shlibpath_var
  747. # Is shlibpath searched before the hard-coded library search path?
  748. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  749. # How to hardcode a shared library path into an executable.
  750. hardcode_action=$hardcode_action_RC
  751. # Whether we should hardcode library paths into libraries.
  752. hardcode_into_libs=$hardcode_into_libs
  753. # Flag to hardcode $libdir into a binary during linking.
  754. # This must work even if $libdir does not exist.
  755. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC
  756. # If ld is used when linking, flag to hardcode $libdir into
  757. # a binary during linking. This must work even if $libdir does
  758. # not exist.
  759. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC
  760. # Whether we need a single -rpath flag with a separated argument.
  761. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC
  762. # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
  763. # resulting binary.
  764. hardcode_direct=$hardcode_direct_RC
  765. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  766. # resulting binary.
  767. hardcode_minus_L=$hardcode_minus_L_RC
  768. # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
  769. # the resulting binary.
  770. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC
  771. # Set to yes if building a shared library automatically hardcodes DIR into the library
  772. # and all subsequent libraries and executables linked against it.
  773. hardcode_automatic=$hardcode_automatic_RC
  774. # Variables whose values should be saved in libtool wrapper scripts and
  775. # restored at relink time.
  776. variables_saved_for_relink="$variables_saved_for_relink"
  777. # Whether libtool must link a program against all its dependency libraries.
  778. link_all_deplibs=$link_all_deplibs_RC
  779. # Compile-time system search path for libraries
  780. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  781. # Run-time system search path for libraries
  782. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  783. # Fix the shell variable $srcfile for the compiler.
  784. fix_srcfile_path="$fix_srcfile_path_RC"
  785. # Set to yes if exported symbols are required.
  786. always_export_symbols=$always_export_symbols_RC
  787. # The commands to list exported symbols.
  788. export_symbols_cmds=$lt_export_symbols_cmds_RC
  789. # The commands to extract the exported symbol list from a shared archive.
  790. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  791. # Symbols that should not be listed in the preloaded symbols.
  792. exclude_expsyms=$lt_exclude_expsyms_RC
  793. # Symbols that must always be exported.
  794. include_expsyms=$lt_include_expsyms_RC
  795. # ### END LIBTOOL TAG CONFIG: $tagname
  796. __EOF__
  797. else
  798.   # If there is no Makefile yet, we rely on a make rule to execute
  799.   # `config.status --recheck' to rerun these tests and create the
  800.   # libtool script then.
  801.   ltmain_in=`echo $ltmain | sed -e 's/.sh$/.in/'`
  802.   if test -f "$ltmain_in"; then
  803.     test -f Makefile && make "$ltmain"
  804.   fi
  805. fi
  806. ac_ext=c
  807. ac_cpp='$CPP $CPPFLAGS'
  808. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  809. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  810. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  811. CC="$lt_save_CC"
  812. ;;
  813.       *)
  814. { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5
  815. echo "$as_me: error: Unsupported tag name: $tagname" >&2;}
  816.    { (exit 1); exit 1; }; }
  817. ;;
  818.       esac
  819.       # Append the new tag name to the list of available tags.
  820.       if test -n "$tagname" ; then
  821.       available_tags="$available_tags $tagname"
  822.     fi
  823.     fi
  824.   done
  825.   IFS="$lt_save_ifs"
  826.   # Now substitute the updated list of available tags.
  827.   if eval "sed -e 's/^available_tags=.*$/available_tags="$available_tags"/' "$ofile" > "${ofile}T""; then
  828.     mv "${ofile}T" "$ofile"
  829.     chmod +x "$ofile"
  830.   else
  831.     rm -f "${ofile}T"
  832.     { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5
  833. echo "$as_me: error: unable to update list of available tagged configurations." >&2;}
  834.    { (exit 1); exit 1; }; }
  835.   fi
  836. fi
  837. # This can be used to rebuild libtool when needed
  838. LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
  839. # Always use our own libtool.
  840. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  841. # Prevent multiple expansion
  842. # Checks for libraries.
  843. echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
  844. echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
  845. if test "${ac_cv_lib_dl_dlopen+set}" = set; then
  846.   echo $ECHO_N "(cached) $ECHO_C" >&6
  847. else
  848.   ac_check_lib_save_LIBS=$LIBS
  849. LIBS="-ldl  $LIBS"
  850. cat >conftest.$ac_ext <<_ACEOF
  851. /* confdefs.h.  */
  852. _ACEOF
  853. cat confdefs.h >>conftest.$ac_ext
  854. cat >>conftest.$ac_ext <<_ACEOF
  855. /* end confdefs.h.  */
  856. /* Override any gcc2 internal prototype to avoid an error.  */
  857. #ifdef __cplusplus
  858. extern "C"
  859. #endif
  860. /* We use char because int might match the return type of a gcc2
  861.    builtin and then its argument prototype would still apply.  */
  862. char dlopen ();
  863. int
  864. main ()
  865. {
  866. dlopen ();
  867.   ;
  868.   return 0;
  869. }
  870. _ACEOF
  871. rm -f conftest.$ac_objext conftest$ac_exeext
  872. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  873.   (eval $ac_link) 2>conftest.er1
  874.   ac_status=$?
  875.   grep -v '^ *+' conftest.er1 >conftest.err
  876.   rm -f conftest.er1
  877.   cat conftest.err >&5
  878.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  879.   (exit $ac_status); } &&
  880.  { ac_try='test -z "$ac_c_werror_flag"
  881.  || test ! -s conftest.err'
  882.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  883.   (eval $ac_try) 2>&5
  884.   ac_status=$?
  885.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  886.   (exit $ac_status); }; } &&
  887.  { ac_try='test -s conftest$ac_exeext'
  888.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  889.   (eval $ac_try) 2>&5
  890.   ac_status=$?
  891.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  892.   (exit $ac_status); }; }; then
  893.   ac_cv_lib_dl_dlopen=yes
  894. else
  895.   echo "$as_me: failed program was:" >&5
  896. sed 's/^/| /' conftest.$ac_ext >&5
  897. ac_cv_lib_dl_dlopen=no
  898. fi
  899. rm -f conftest.err conftest.$ac_objext 
  900.       conftest$ac_exeext conftest.$ac_ext
  901. LIBS=$ac_check_lib_save_LIBS
  902. fi
  903. echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
  904. echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
  905. if test $ac_cv_lib_dl_dlopen = yes; then
  906.   cat >>confdefs.h <<_ACEOF
  907. #define HAVE_LIBDL 1
  908. _ACEOF
  909.   LIBS="-ldl $LIBS"
  910. fi
  911. JNI_LDFLAGS=""
  912. if test $JAVA_HOME != ""
  913. then
  914.   JNI_LDFLAGS="-L$JAVA_HOME/jre/lib/$OS_ARCH/server"
  915. fi
  916. ldflags_bak=$LDFLAGS
  917. LDFLAGS="$LDFLAGS $JNI_LDFLAGS"
  918. echo "$as_me:$LINENO: checking for JNI_GetCreatedJavaVMs in -ljvm" >&5
  919. echo $ECHO_N "checking for JNI_GetCreatedJavaVMs in -ljvm... $ECHO_C" >&6
  920. if test "${ac_cv_lib_jvm_JNI_GetCreatedJavaVMs+set}" = set; then
  921.   echo $ECHO_N "(cached) $ECHO_C" >&6
  922. else
  923.   ac_check_lib_save_LIBS=$LIBS
  924. LIBS="-ljvm  $LIBS"
  925. cat >conftest.$ac_ext <<_ACEOF
  926. /* confdefs.h.  */
  927. _ACEOF
  928. cat confdefs.h >>conftest.$ac_ext
  929. cat >>conftest.$ac_ext <<_ACEOF
  930. /* end confdefs.h.  */
  931. /* Override any gcc2 internal prototype to avoid an error.  */
  932. #ifdef __cplusplus
  933. extern "C"
  934. #endif
  935. /* We use char because int might match the return type of a gcc2
  936.    builtin and then its argument prototype would still apply.  */
  937. char JNI_GetCreatedJavaVMs ();
  938. int
  939. main ()
  940. {
  941. JNI_GetCreatedJavaVMs ();
  942.   ;
  943.   return 0;
  944. }
  945. _ACEOF
  946. rm -f conftest.$ac_objext conftest$ac_exeext
  947. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  948.   (eval $ac_link) 2>conftest.er1
  949.   ac_status=$?
  950.   grep -v '^ *+' conftest.er1 >conftest.err
  951.   rm -f conftest.er1
  952.   cat conftest.err >&5
  953.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  954.   (exit $ac_status); } &&
  955.  { ac_try='test -z "$ac_c_werror_flag"
  956.  || test ! -s conftest.err'
  957.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  958.   (eval $ac_try) 2>&5
  959.   ac_status=$?
  960.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  961.   (exit $ac_status); }; } &&
  962.  { ac_try='test -s conftest$ac_exeext'
  963.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  964.   (eval $ac_try) 2>&5
  965.   ac_status=$?
  966.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  967.   (exit $ac_status); }; }; then
  968.   ac_cv_lib_jvm_JNI_GetCreatedJavaVMs=yes
  969. else
  970.   echo "$as_me: failed program was:" >&5
  971. sed 's/^/| /' conftest.$ac_ext >&5
  972. ac_cv_lib_jvm_JNI_GetCreatedJavaVMs=no
  973. fi
  974. rm -f conftest.err conftest.$ac_objext 
  975.       conftest$ac_exeext conftest.$ac_ext
  976. LIBS=$ac_check_lib_save_LIBS
  977. fi
  978. echo "$as_me:$LINENO: result: $ac_cv_lib_jvm_JNI_GetCreatedJavaVMs" >&5
  979. echo "${ECHO_T}$ac_cv_lib_jvm_JNI_GetCreatedJavaVMs" >&6
  980. if test $ac_cv_lib_jvm_JNI_GetCreatedJavaVMs = yes; then
  981.   cat >>confdefs.h <<_ACEOF
  982. #define HAVE_LIBJVM 1
  983. _ACEOF
  984.   LIBS="-ljvm $LIBS"
  985. fi
  986. LDFLAGS=$ldflags_bak
  987. # Checks for header files.
  988. echo "$as_me:$LINENO: checking for ANSI C header files" >&5
  989. echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
  990. if test "${ac_cv_header_stdc+set}" = set; then
  991.   echo $ECHO_N "(cached) $ECHO_C" >&6
  992. else
  993.   cat >conftest.$ac_ext <<_ACEOF
  994. /* confdefs.h.  */
  995. _ACEOF
  996. cat confdefs.h >>conftest.$ac_ext
  997. cat >>conftest.$ac_ext <<_ACEOF
  998. /* end confdefs.h.  */
  999. #include <stdlib.h>
  1000. #include <stdarg.h>
  1001. #include <string.h>
  1002. #include <float.h>
  1003. int
  1004. main ()
  1005. {
  1006.   ;
  1007.   return 0;
  1008. }
  1009. _ACEOF
  1010. rm -f conftest.$ac_objext
  1011. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1012.   (eval $ac_compile) 2>conftest.er1
  1013.   ac_status=$?
  1014.   grep -v '^ *+' conftest.er1 >conftest.err
  1015.   rm -f conftest.er1
  1016.   cat conftest.err >&5
  1017.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1018.   (exit $ac_status); } &&
  1019.  { ac_try='test -z "$ac_c_werror_flag"
  1020.  || test ! -s conftest.err'
  1021.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1022.   (eval $ac_try) 2>&5
  1023.   ac_status=$?
  1024.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1025.   (exit $ac_status); }; } &&
  1026.  { ac_try='test -s conftest.$ac_objext'
  1027.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1028.   (eval $ac_try) 2>&5
  1029.   ac_status=$?
  1030.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1031.   (exit $ac_status); }; }; then
  1032.   ac_cv_header_stdc=yes
  1033. else
  1034.   echo "$as_me: failed program was:" >&5
  1035. sed 's/^/| /' conftest.$ac_ext >&5
  1036. ac_cv_header_stdc=no
  1037. fi
  1038. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1039. if test $ac_cv_header_stdc = yes; then
  1040.   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1041.   cat >conftest.$ac_ext <<_ACEOF
  1042. /* confdefs.h.  */
  1043. _ACEOF
  1044. cat confdefs.h >>conftest.$ac_ext
  1045. cat >>conftest.$ac_ext <<_ACEOF
  1046. /* end confdefs.h.  */
  1047. #include <string.h>
  1048. _ACEOF
  1049. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1050.   $EGREP "memchr" >/dev/null 2>&1; then
  1051.   :
  1052. else
  1053.   ac_cv_header_stdc=no
  1054. fi
  1055. rm -f conftest*
  1056. fi
  1057. if test $ac_cv_header_stdc = yes; then
  1058.   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1059.   cat >conftest.$ac_ext <<_ACEOF
  1060. /* confdefs.h.  */
  1061. _ACEOF
  1062. cat confdefs.h >>conftest.$ac_ext
  1063. cat >>conftest.$ac_ext <<_ACEOF
  1064. /* end confdefs.h.  */
  1065. #include <stdlib.h>
  1066. _ACEOF
  1067. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1068.   $EGREP "free" >/dev/null 2>&1; then
  1069.   :
  1070. else
  1071.   ac_cv_header_stdc=no
  1072. fi
  1073. rm -f conftest*
  1074. fi
  1075. if test $ac_cv_header_stdc = yes; then
  1076.   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1077.   if test "$cross_compiling" = yes; then
  1078.   :
  1079. else
  1080.   cat >conftest.$ac_ext <<_ACEOF
  1081. /* confdefs.h.  */
  1082. _ACEOF
  1083. cat confdefs.h >>conftest.$ac_ext
  1084. cat >>conftest.$ac_ext <<_ACEOF
  1085. /* end confdefs.h.  */
  1086. #include <ctype.h>
  1087. #if ((' ' & 0x0FF) == 0x020)
  1088. # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1089. # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  1090. #else
  1091. # define ISLOWER(c) 
  1092.    (('a' <= (c) && (c) <= 'i') 
  1093.      || ('j' <= (c) && (c) <= 'r') 
  1094.      || ('s' <= (c) && (c) <= 'z'))
  1095. # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
  1096. #endif
  1097. #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  1098. int
  1099. main ()
  1100. {
  1101.   int i;
  1102.   for (i = 0; i < 256; i++)
  1103.     if (XOR (islower (i), ISLOWER (i))
  1104. || toupper (i) != TOUPPER (i))
  1105.       exit(2);
  1106.   exit (0);
  1107. }
  1108. _ACEOF
  1109. rm -f conftest$ac_exeext
  1110. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1111.   (eval $ac_link) 2>&5
  1112.   ac_status=$?
  1113.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1114.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  1115.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1116.   (eval $ac_try) 2>&5
  1117.   ac_status=$?
  1118.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1119.   (exit $ac_status); }; }; then
  1120.   :
  1121. else
  1122.   echo "$as_me: program exited with status $ac_status" >&5
  1123. echo "$as_me: failed program was:" >&5
  1124. sed 's/^/| /' conftest.$ac_ext >&5
  1125. ( exit $ac_status )
  1126. ac_cv_header_stdc=no
  1127. fi
  1128. rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  1129. fi
  1130. fi
  1131. fi
  1132. echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
  1133. echo "${ECHO_T}$ac_cv_header_stdc" >&6
  1134. if test $ac_cv_header_stdc = yes; then
  1135. cat >>confdefs.h <<_ACEOF
  1136. #define STDC_HEADERS 1
  1137. _ACEOF
  1138. fi
  1139. for ac_header in stdio.h stddef.h
  1140. do
  1141. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1142. if eval "test "${$as_ac_Header+set}" = set"; then
  1143.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1144. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1145. if eval "test "${$as_ac_Header+set}" = set"; then
  1146.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1147. fi
  1148. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1149. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1150. else
  1151.   # Is the header compilable?
  1152. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1153. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1154. cat >conftest.$ac_ext <<_ACEOF
  1155. /* confdefs.h.  */
  1156. _ACEOF
  1157. cat confdefs.h >>conftest.$ac_ext
  1158. cat >>conftest.$ac_ext <<_ACEOF
  1159. /* end confdefs.h.  */
  1160. $ac_includes_default
  1161. #include <$ac_header>
  1162. _ACEOF
  1163. rm -f conftest.$ac_objext
  1164. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1165.   (eval $ac_compile) 2>conftest.er1
  1166.   ac_status=$?
  1167.   grep -v '^ *+' conftest.er1 >conftest.err
  1168.   rm -f conftest.er1
  1169.   cat conftest.err >&5
  1170.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1171.   (exit $ac_status); } &&
  1172.  { ac_try='test -z "$ac_c_werror_flag"
  1173.  || test ! -s conftest.err'
  1174.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1175.   (eval $ac_try) 2>&5
  1176.   ac_status=$?
  1177.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1178.   (exit $ac_status); }; } &&
  1179.  { ac_try='test -s conftest.$ac_objext'
  1180.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1181.   (eval $ac_try) 2>&5
  1182.   ac_status=$?
  1183.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1184.   (exit $ac_status); }; }; then
  1185.   ac_header_compiler=yes
  1186. else
  1187.   echo "$as_me: failed program was:" >&5
  1188. sed 's/^/| /' conftest.$ac_ext >&5
  1189. ac_header_compiler=no
  1190. fi
  1191. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1192. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1193. echo "${ECHO_T}$ac_header_compiler" >&6
  1194. # Is the header present?
  1195. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1196. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1197. cat >conftest.$ac_ext <<_ACEOF
  1198. /* confdefs.h.  */
  1199. _ACEOF
  1200. cat confdefs.h >>conftest.$ac_ext
  1201. cat >>conftest.$ac_ext <<_ACEOF
  1202. /* end confdefs.h.  */
  1203. #include <$ac_header>
  1204. _ACEOF
  1205. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1206.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1207.   ac_status=$?
  1208.   grep -v '^ *+' conftest.er1 >conftest.err
  1209.   rm -f conftest.er1
  1210.   cat conftest.err >&5
  1211.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1212.   (exit $ac_status); } >/dev/null; then
  1213.   if test -s conftest.err; then
  1214.     ac_cpp_err=$ac_c_preproc_warn_flag
  1215.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1216.   else
  1217.     ac_cpp_err=
  1218.   fi
  1219. else
  1220.   ac_cpp_err=yes
  1221. fi
  1222. if test -z "$ac_cpp_err"; then
  1223.   ac_header_preproc=yes
  1224. else
  1225.   echo "$as_me: failed program was:" >&5
  1226. sed 's/^/| /' conftest.$ac_ext >&5
  1227.   ac_header_preproc=no
  1228. fi
  1229. rm -f conftest.err conftest.$ac_ext
  1230. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1231. echo "${ECHO_T}$ac_header_preproc" >&6
  1232. # So?  What about this header?
  1233. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1234.   yes:no: )
  1235.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1236. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1237.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1238. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1239.     ac_header_preproc=yes
  1240.     ;;
  1241.   no:yes:* )
  1242.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1243. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1244.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1245. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1246.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1247. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1248.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1249. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1250.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1251. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1252.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1253. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1254.     (
  1255.       cat <<_ASBOX
  1256. ## ------------------------------------------ ##
  1257. ## Report this to the AC_PACKAGE_NAME lists.  ##
  1258. ## ------------------------------------------ ##
  1259. _ASBOX
  1260.     ) |
  1261.       sed "s/^/$as_me: WARNING:     /" >&2
  1262.     ;;
  1263. esac
  1264. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1265. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1266. if eval "test "${$as_ac_Header+set}" = set"; then
  1267.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1268. else
  1269.   eval "$as_ac_Header=$ac_header_preproc"
  1270. fi
  1271. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1272. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1273. fi
  1274. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1275.   cat >>confdefs.h <<_ACEOF
  1276. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1277. _ACEOF
  1278. else
  1279.   { { echo "$as_me:$LINENO: error: Some system headers not found... please ensure their presence on your platform." >&5
  1280. echo "$as_me: error: Some system headers not found... please ensure their presence on your platform." >&2;}
  1281.    { (exit 1); exit 1; }; }
  1282. fi
  1283. done
  1284. JNI_CPPFLAGS=""
  1285. if test $JAVA_HOME != ""
  1286. then
  1287.   for dir in `find $JAVA_HOME/include -follow -type d`
  1288.   do
  1289.     JNI_CPPFLAGS="$JNI_CPPFLAGS -I$dir"
  1290.   done
  1291. fi
  1292. cppflags_bak=$CPPFLAGS
  1293. CPPFLAGS="$CPPFLAGS $JNI_CPPFLAGS"
  1294. for ac_header in jni.h
  1295. do
  1296. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1297. if eval "test "${$as_ac_Header+set}" = set"; then
  1298.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1299. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1300. if eval "test "${$as_ac_Header+set}" = set"; then
  1301.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1302. fi
  1303. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1304. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1305. else
  1306.   # Is the header compilable?
  1307. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1308. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1309. cat >conftest.$ac_ext <<_ACEOF
  1310. /* confdefs.h.  */
  1311. _ACEOF
  1312. cat confdefs.h >>conftest.$ac_ext
  1313. cat >>conftest.$ac_ext <<_ACEOF
  1314. /* end confdefs.h.  */
  1315. $ac_includes_default
  1316. #include <$ac_header>
  1317. _ACEOF
  1318. rm -f conftest.$ac_objext
  1319. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1320.   (eval $ac_compile) 2>conftest.er1
  1321.   ac_status=$?
  1322.   grep -v '^ *+' conftest.er1 >conftest.err
  1323.   rm -f conftest.er1
  1324.   cat conftest.err >&5
  1325.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1326.   (exit $ac_status); } &&
  1327.  { ac_try='test -z "$ac_c_werror_flag"
  1328.  || test ! -s conftest.err'
  1329.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1330.   (eval $ac_try) 2>&5
  1331.   ac_status=$?
  1332.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1333.   (exit $ac_status); }; } &&
  1334.  { ac_try='test -s conftest.$ac_objext'
  1335.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1336.   (eval $ac_try) 2>&5
  1337.   ac_status=$?
  1338.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1339.   (exit $ac_status); }; }; then
  1340.   ac_header_compiler=yes
  1341. else
  1342.   echo "$as_me: failed program was:" >&5
  1343. sed 's/^/| /' conftest.$ac_ext >&5
  1344. ac_header_compiler=no
  1345. fi
  1346. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1347. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1348. echo "${ECHO_T}$ac_header_compiler" >&6
  1349. # Is the header present?
  1350. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1351. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1352. cat >conftest.$ac_ext <<_ACEOF
  1353. /* confdefs.h.  */
  1354. _ACEOF
  1355. cat confdefs.h >>conftest.$ac_ext
  1356. cat >>conftest.$ac_ext <<_ACEOF
  1357. /* end confdefs.h.  */
  1358. #include <$ac_header>
  1359. _ACEOF
  1360. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1361.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1362.   ac_status=$?
  1363.   grep -v '^ *+' conftest.er1 >conftest.err
  1364.   rm -f conftest.er1
  1365.   cat conftest.err >&5
  1366.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1367.   (exit $ac_status); } >/dev/null; then
  1368.   if test -s conftest.err; then
  1369.     ac_cpp_err=$ac_c_preproc_warn_flag
  1370.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1371.   else
  1372.     ac_cpp_err=
  1373.   fi
  1374. else
  1375.   ac_cpp_err=yes
  1376. fi
  1377. if test -z "$ac_cpp_err"; then
  1378.   ac_header_preproc=yes
  1379. else
  1380.   echo "$as_me: failed program was:" >&5
  1381. sed 's/^/| /' conftest.$ac_ext >&5
  1382.   ac_header_preproc=no
  1383. fi
  1384. rm -f conftest.err conftest.$ac_ext
  1385. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1386. echo "${ECHO_T}$ac_header_preproc" >&6
  1387. # So?  What about this header?
  1388. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1389.   yes:no: )
  1390.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1391. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1392.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1393. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1394.     ac_header_preproc=yes
  1395.     ;;
  1396.   no:yes:* )
  1397.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1398. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1399.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1400. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1401.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1402. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1403.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1404. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1405.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1406. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1407.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1408. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1409.     (
  1410.       cat <<_ASBOX
  1411. ## ------------------------------------------ ##
  1412. ## Report this to the AC_PACKAGE_NAME lists.  ##
  1413. ## ------------------------------------------ ##
  1414. _ASBOX
  1415.     ) |
  1416.       sed "s/^/$as_me: WARNING:     /" >&2
  1417.     ;;
  1418. esac
  1419. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1420. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1421. if eval "test "${$as_ac_Header+set}" = set"; then
  1422.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1423. else
  1424.   eval "$as_ac_Header=$ac_header_preproc"
  1425. fi
  1426. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1427. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1428. fi
  1429. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1430.   cat >>confdefs.h <<_ACEOF
  1431. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1432. _ACEOF
  1433. else
  1434.   { { echo "$as_me:$LINENO: error: Native java headers not found. Is $JAVA_HOME set correctly?" >&5
  1435. echo "$as_me: error: Native java headers not found. Is $JAVA_HOME set correctly?" >&2;}
  1436.    { (exit 1); exit 1; }; }
  1437. fi
  1438. done
  1439. CPPFLAGS=$cppflags_bak
  1440. for ac_header in zlib.h zconf.h
  1441. do
  1442. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1443. if eval "test "${$as_ac_Header+set}" = set"; then
  1444.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1445. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1446. if eval "test "${$as_ac_Header+set}" = set"; then
  1447.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1448. fi
  1449. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1450. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1451. else
  1452.   # Is the header compilable?
  1453. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1454. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1455. cat >conftest.$ac_ext <<_ACEOF
  1456. /* confdefs.h.  */
  1457. _ACEOF
  1458. cat confdefs.h >>conftest.$ac_ext
  1459. cat >>conftest.$ac_ext <<_ACEOF
  1460. /* end confdefs.h.  */
  1461. $ac_includes_default
  1462. #include <$ac_header>
  1463. _ACEOF
  1464. rm -f conftest.$ac_objext
  1465. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1466.   (eval $ac_compile) 2>conftest.er1
  1467.   ac_status=$?
  1468.   grep -v '^ *+' conftest.er1 >conftest.err
  1469.   rm -f conftest.er1
  1470.   cat conftest.err >&5
  1471.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1472.   (exit $ac_status); } &&
  1473.  { ac_try='test -z "$ac_c_werror_flag"
  1474.  || test ! -s conftest.err'
  1475.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1476.   (eval $ac_try) 2>&5
  1477.   ac_status=$?
  1478.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1479.   (exit $ac_status); }; } &&
  1480.  { ac_try='test -s conftest.$ac_objext'
  1481.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1482.   (eval $ac_try) 2>&5
  1483.   ac_status=$?
  1484.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1485.   (exit $ac_status); }; }; then
  1486.   ac_header_compiler=yes
  1487. else
  1488.   echo "$as_me: failed program was:" >&5
  1489. sed 's/^/| /' conftest.$ac_ext >&5
  1490. ac_header_compiler=no
  1491. fi
  1492. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1493. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1494. echo "${ECHO_T}$ac_header_compiler" >&6
  1495. # Is the header present?
  1496. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1497. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1498. cat >conftest.$ac_ext <<_ACEOF
  1499. /* confdefs.h.  */
  1500. _ACEOF
  1501. cat confdefs.h >>conftest.$ac_ext
  1502. cat >>conftest.$ac_ext <<_ACEOF
  1503. /* end confdefs.h.  */
  1504. #include <$ac_header>
  1505. _ACEOF
  1506. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1507.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1508.   ac_status=$?
  1509.   grep -v '^ *+' conftest.er1 >conftest.err
  1510.   rm -f conftest.er1
  1511.   cat conftest.err >&5
  1512.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1513.   (exit $ac_status); } >/dev/null; then
  1514.   if test -s conftest.err; then
  1515.     ac_cpp_err=$ac_c_preproc_warn_flag
  1516.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1517.   else
  1518.     ac_cpp_err=
  1519.   fi
  1520. else
  1521.   ac_cpp_err=yes
  1522. fi
  1523. if test -z "$ac_cpp_err"; then
  1524.   ac_header_preproc=yes
  1525. else
  1526.   echo "$as_me: failed program was:" >&5
  1527. sed 's/^/| /' conftest.$ac_ext >&5
  1528.   ac_header_preproc=no
  1529. fi
  1530. rm -f conftest.err conftest.$ac_ext
  1531. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1532. echo "${ECHO_T}$ac_header_preproc" >&6
  1533. # So?  What about this header?
  1534. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1535.   yes:no: )
  1536.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1537. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1538.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1539. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1540.     ac_header_preproc=yes
  1541.     ;;
  1542.   no:yes:* )
  1543.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1544. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1545.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1546. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1547.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1548. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1549.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1550. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1551.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1552. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1553.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1554. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1555.     (
  1556.       cat <<_ASBOX
  1557. ## ------------------------------------------ ##
  1558. ## Report this to the AC_PACKAGE_NAME lists.  ##
  1559. ## ------------------------------------------ ##
  1560. _ASBOX
  1561.     ) |
  1562.       sed "s/^/$as_me: WARNING:     /" >&2
  1563.     ;;
  1564. esac
  1565. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1566. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1567. if eval "test "${$as_ac_Header+set}" = set"; then
  1568.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1569. else
  1570.   eval "$as_ac_Header=$ac_header_preproc"
  1571. fi
  1572. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1573. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1574. fi
  1575. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1576.   cat >>confdefs.h <<_ACEOF
  1577. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1578. _ACEOF
  1579. echo "$as_me:$LINENO: checking Checking for the 'actual' dynamic-library for '-lz'" >&5
  1580. echo $ECHO_N "checking Checking for the 'actual' dynamic-library for '-lz'... $ECHO_C" >&6
  1581. if test "${ac_cv_libname_z+set}" = set; then
  1582.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1583. else
  1584.   echo 'int main(int argc, char **argv){return 0;}' > conftest.c
  1585.   if test -z "`${CC} ${LDFLAGS} -o conftest conftest.c -lz 2>&1`"; then
  1586.         if test ! -z "`which objdump | grep -v 'no objdump'`"; then
  1587.       ac_cv_libname_z="`objdump -p conftest | grep NEEDED | grep z | sed 's/W*NEEDEDW*(.*)W*$/"1"/'`"
  1588.     elif test ! -z "`which ldd | grep -v 'no ldd'`"; then
  1589.       ac_cv_libname_z="`ldd conftest | grep z | sed 's/^[^A-Za-z0-9]*([A-Za-z0-9.]*)[^A-Za-z0-9]*=>.*$/"1"/'`"
  1590.     else
  1591.       { { echo "$as_me:$LINENO: error: Can't find either 'objdump' or 'ldd' to compute the dynamic library for '-lz'" >&5
  1592. echo "$as_me: error: Can't find either 'objdump' or 'ldd' to compute the dynamic library for '-lz'" >&2;}
  1593.    { (exit 1); exit 1; }; }
  1594.     fi
  1595.   else
  1596.     ac_cv_libname_z=libnotfound.so
  1597.   fi
  1598.   rm -f conftest*
  1599. fi
  1600. echo "$as_me:$LINENO: result: $ac_cv_libname_z" >&5
  1601. echo "${ECHO_T}$ac_cv_libname_z" >&6
  1602. cat >>confdefs.h <<_ACEOF
  1603. #define HADOOP_ZLIB_LIBRARY ${ac_cv_libname_z}
  1604. _ACEOF
  1605. else
  1606.   { { echo "$as_me:$LINENO: error: Zlib headers were not found... native-hadoop library needs zlib to build. Please install the requisite zlib development package." >&5
  1607. echo "$as_me: error: Zlib headers were not found... native-hadoop library needs zlib to build. Please install the requisite zlib development package." >&2;}
  1608.    { (exit 1); exit 1; }; }
  1609. fi
  1610. done
  1611. # Checks for typedefs, structures, and compiler characteristics.
  1612. echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
  1613. echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
  1614. if test "${ac_cv_c_const+set}" = set; then
  1615.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1616. else
  1617.   cat >conftest.$ac_ext <<_ACEOF
  1618. /* confdefs.h.  */
  1619. _ACEOF
  1620. cat confdefs.h >>conftest.$ac_ext
  1621. cat >>conftest.$ac_ext <<_ACEOF
  1622. /* end confdefs.h.  */
  1623. int
  1624. main ()
  1625. {
  1626. /* FIXME: Include the comments suggested by Paul. */
  1627. #ifndef __cplusplus
  1628.   /* Ultrix mips cc rejects this.  */
  1629.   typedef int charset[2];
  1630.   const charset x;
  1631.   /* SunOS 4.1.1 cc rejects this.  */
  1632.   char const *const *ccp;
  1633.   char **p;
  1634.   /* NEC SVR4.0.2 mips cc rejects this.  */
  1635.   struct point {int x, y;};
  1636.   static struct point const zero = {0,0};
  1637.   /* AIX XL C 1.02.0.0 rejects this.
  1638.      It does not let you subtract one const X* pointer from another in
  1639.      an arm of an if-expression whose if-part is not a constant
  1640.      expression */
  1641.   const char *g = "string";
  1642.   ccp = &g + (g ? g-g : 0);
  1643.   /* HPUX 7.0 cc rejects these. */
  1644.   ++ccp;
  1645.   p = (char**) ccp;
  1646.   ccp = (char const *const *) p;
  1647.   { /* SCO 3.2v4 cc rejects this.  */
  1648.     char *t;
  1649.     char const *s = 0 ? (char *) 0 : (char const *) 0;
  1650.     *t++ = 0;
  1651.   }
  1652.   { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
  1653.     int x[] = {25, 17};
  1654.     const int *foo = &x[0];
  1655.     ++foo;
  1656.   }
  1657.   { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
  1658.     typedef const int *iptr;
  1659.     iptr p = 0;
  1660.     ++p;
  1661.   }
  1662.   { /* AIX XL C 1.02.0.0 rejects this saying
  1663.        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  1664.     struct s { int j; const int *ap[3]; };
  1665.     struct s *b; b->j = 5;
  1666.   }
  1667.   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  1668.     const int foo = 10;
  1669.   }
  1670. #endif
  1671.   ;
  1672.   return 0;
  1673. }
  1674. _ACEOF
  1675. rm -f conftest.$ac_objext
  1676. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1677.   (eval $ac_compile) 2>conftest.er1
  1678.   ac_status=$?
  1679.   grep -v '^ *+' conftest.er1 >conftest.err
  1680.   rm -f conftest.er1
  1681.   cat conftest.err >&5
  1682.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1683.   (exit $ac_status); } &&
  1684.  { ac_try='test -z "$ac_c_werror_flag"
  1685.  || test ! -s conftest.err'
  1686.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1687.   (eval $ac_try) 2>&5
  1688.   ac_status=$?
  1689.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1690.   (exit $ac_status); }; } &&
  1691.  { ac_try='test -s conftest.$ac_objext'
  1692.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1693.   (eval $ac_try) 2>&5
  1694.   ac_status=$?
  1695.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1696.   (exit $ac_status); }; }; then
  1697.   ac_cv_c_const=yes
  1698. else
  1699.   echo "$as_me: failed program was:" >&5
  1700. sed 's/^/| /' conftest.$ac_ext >&5
  1701. ac_cv_c_const=no
  1702. fi
  1703. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1704. fi
  1705. echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
  1706. echo "${ECHO_T}$ac_cv_c_const" >&6
  1707. if test $ac_cv_c_const = no; then
  1708. cat >>confdefs.h <<_ACEOF
  1709. #define const
  1710. _ACEOF
  1711. fi
  1712. # Checks for library functions.
  1713. for ac_func in memset
  1714. do
  1715. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  1716. echo "$as_me:$LINENO: checking for $ac_func" >&5
  1717. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  1718. if eval "test "${$as_ac_var+set}" = set"; then
  1719.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1720. else
  1721.   cat >conftest.$ac_ext <<_ACEOF
  1722. /* confdefs.h.  */
  1723. _ACEOF
  1724. cat confdefs.h >>conftest.$ac_ext
  1725. cat >>conftest.$ac_ext <<_ACEOF
  1726. /* end confdefs.h.  */
  1727. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  1728.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1729. #define $ac_func innocuous_$ac_func
  1730. /* System header to define __stub macros and hopefully few prototypes,
  1731.     which can conflict with char $ac_func (); below.
  1732.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1733.     <limits.h> exists even on freestanding compilers.  */
  1734. #ifdef __STDC__
  1735. # include <limits.h>
  1736. #else
  1737. # include <assert.h>
  1738. #endif
  1739. #undef $ac_func
  1740. /* Override any gcc2 internal prototype to avoid an error.  */
  1741. #ifdef __cplusplus
  1742. extern "C"
  1743. {
  1744. #endif
  1745. /* We use char because int might match the return type of a gcc2
  1746.    builtin and then its argument prototype would still apply.  */
  1747. char $ac_func ();
  1748. /* The GNU C library defines this for functions which it implements
  1749.     to always fail with ENOSYS.  Some functions are actually named
  1750.     something starting with __ and the normal name is an alias.  */
  1751. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1752. choke me
  1753. #else
  1754. char (*f) () = $ac_func;
  1755. #endif
  1756. #ifdef __cplusplus
  1757. }
  1758. #endif
  1759. int
  1760. main ()
  1761. {
  1762. return f != $ac_func;
  1763.   ;
  1764.   return 0;
  1765. }
  1766. _ACEOF
  1767. rm -f conftest.$ac_objext conftest$ac_exeext
  1768. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1769.   (eval $ac_link) 2>conftest.er1
  1770.   ac_status=$?
  1771.   grep -v '^ *+' conftest.er1 >conftest.err
  1772.   rm -f conftest.er1
  1773.   cat conftest.err >&5
  1774.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1775.   (exit $ac_status); } &&
  1776.  { ac_try='test -z "$ac_c_werror_flag"
  1777.  || test ! -s conftest.err'
  1778.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1779.   (eval $ac_try) 2>&5
  1780.   ac_status=$?
  1781.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1782.   (exit $ac_status); }; } &&
  1783.  { ac_try='test -s conftest$ac_exeext'
  1784.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1785.   (eval $ac_try) 2>&5
  1786.   ac_status=$?
  1787.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1788.   (exit $ac_status); }; }; then
  1789.   eval "$as_ac_var=yes"
  1790. else
  1791.   echo "$as_me: failed program was:" >&5
  1792. sed 's/^/| /' conftest.$ac_ext >&5
  1793. eval "$as_ac_var=no"
  1794. fi
  1795. rm -f conftest.err conftest.$ac_objext 
  1796.       conftest$ac_exeext conftest.$ac_ext
  1797. fi
  1798. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  1799. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  1800. if test `eval echo '${'$as_ac_var'}'` = yes; then
  1801.   cat >>confdefs.h <<_ACEOF
  1802. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  1803. _ACEOF
  1804. fi
  1805. done
  1806.                               ac_config_files="$ac_config_files Makefile src/org/apache/hadoop/io/compress/zlib/Makefile lib/Makefile"
  1807. cat >confcache <<_ACEOF
  1808. # This file is a shell script that caches the results of configure
  1809. # tests run on this system so they can be shared between configure
  1810. # scripts and configure runs, see configure's option --config-cache.
  1811. # It is not useful on other systems.  If it contains results you don't
  1812. # want to keep, you may remove or edit it.
  1813. #
  1814. # config.status only pays attention to the cache file if you give it
  1815. # the --recheck option to rerun configure.
  1816. #
  1817. # `ac_cv_env_foo' variables (set or unset) will be overridden when
  1818. # loading this file, other *unset* `ac_cv_foo' will be assigned the
  1819. # following values.
  1820. _ACEOF
  1821. # The following way of writing the cache mishandles newlines in values,
  1822. # but we know of no workaround that is simple, portable, and efficient.
  1823. # So, don't put newlines in cache variables' values.
  1824. # Ultrix sh set writes to stderr and can't be redirected directly,
  1825. # and sets the high bit in the cache file unless we assign to the vars.
  1826. {
  1827.   (set) 2>&1 |
  1828.     case `(ac_space=' '; set | grep ac_space) 2>&1` in
  1829.     *ac_space= *)
  1830.       # `set' does not quote correctly, so add quotes (double-quote
  1831.       # substitution turns \\ into \, and sed turns \ into ).
  1832.       sed -n 
  1833. "s/'/'\\''/g;
  1834.   s/^\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\)=\(.*\)/\1='\2'/p"
  1835.       ;;
  1836.     *)
  1837.       # `set' quotes correctly as required by POSIX, so do not add quotes.
  1838.       sed -n 
  1839. "s/^\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\)=\(.*\)/\1=\2/p"
  1840.       ;;
  1841.     esac;
  1842. } |
  1843.   sed '
  1844.      t clear
  1845.      : clear
  1846.      s/^([^=]*)=(.*[{}].*)$/test "${1+set}" = set || &/
  1847.      t end
  1848.      /^ac_cv_env/!s/^([^=]*)=(.*)$/1=${1=2}/
  1849.      : end' >>confcache
  1850. if diff $cache_file confcache >/dev/null 2>&1; then :; else
  1851.   if test -w $cache_file; then
  1852.     test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
  1853.     cat confcache >$cache_file
  1854.   else
  1855.     echo "not updating unwritable cache $cache_file"
  1856.   fi
  1857. fi
  1858. rm -f confcache
  1859. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  1860. # Let make expand exec_prefix.
  1861. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  1862. # VPATH may cause trouble with some makes, so we remove $(srcdir),
  1863. # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  1864. # trailing colons and then remove the whole line if VPATH becomes empty
  1865. # (actually we leave an empty line to preserve line numbers).
  1866. if test "x$srcdir" = x.; then
  1867.   ac_vpsub='/^[  ]*VPATH[  ]*=/{
  1868. s/:*$(srcdir):*/:/;
  1869. s/:*${srcdir}:*/:/;
  1870. s/:*@srcdir@:*/:/;
  1871. s/^([^=]*=[  ]*):*/1/;
  1872. s/:*$//;
  1873. s/^[^=]*=[  ]*$//;
  1874. }'
  1875. fi
  1876. DEFS=-DHAVE_CONFIG_H
  1877. ac_libobjs=
  1878. ac_ltlibobjs=
  1879. for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  1880.   # 1. Remove the extension, and $U if already installed.
  1881.   ac_i=`echo "$ac_i" |
  1882.  sed 's/$U././;s/.o$//;s/.obj$//'`
  1883.   # 2. Add them.
  1884.   ac_libobjs="$ac_libobjs $ac_i$U.$ac_objext"
  1885.   ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
  1886. done
  1887. LIBOBJS=$ac_libobjs
  1888. LTLIBOBJS=$ac_ltlibobjs
  1889. if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
  1890.   { { echo "$as_me:$LINENO: error: conditional "AMDEP" was never defined.
  1891. Usually this means the macro was only invoked conditionally." >&5
  1892. echo "$as_me: error: conditional "AMDEP" was never defined.
  1893. Usually this means the macro was only invoked conditionally." >&2;}
  1894.    { (exit 1); exit 1; }; }
  1895. fi
  1896. if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
  1897.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCC" was never defined.
  1898. Usually this means the macro was only invoked conditionally." >&5
  1899. echo "$as_me: error: conditional "am__fastdepCC" was never defined.
  1900. Usually this means the macro was only invoked conditionally." >&2;}
  1901.    { (exit 1); exit 1; }; }
  1902. fi
  1903. if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
  1904.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCXX" was never defined.
  1905. Usually this means the macro was only invoked conditionally." >&5
  1906. echo "$as_me: error: conditional "am__fastdepCXX" was never defined.
  1907. Usually this means the macro was only invoked conditionally." >&2;}
  1908.    { (exit 1); exit 1; }; }
  1909. fi
  1910. : ${CONFIG_STATUS=./config.status}
  1911. ac_clean_files_save=$ac_clean_files
  1912. ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  1913. { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
  1914. echo "$as_me: creating $CONFIG_STATUS" >&6;}
  1915. cat >$CONFIG_STATUS <<_ACEOF
  1916. #! $SHELL
  1917. # Generated by $as_me.
  1918. # Run this file to recreate the current configuration.
  1919. # Compiler output produced by configure, useful for debugging
  1920. # configure, is in config.log if it exists.
  1921. debug=false
  1922. ac_cs_recheck=false
  1923. ac_cs_silent=false
  1924. SHELL=${CONFIG_SHELL-$SHELL}
  1925. _ACEOF
  1926. cat >>$CONFIG_STATUS <<_ACEOF
  1927. ## --------------------- ##
  1928. ## M4sh Initialization.  ##
  1929. ## --------------------- ##
  1930. # Be Bourne compatible
  1931. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  1932.   emulate sh
  1933.   NULLCMD=:
  1934.   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  1935.   # is contrary to our usage.  Disable this feature.
  1936.   alias -g '${1+"$@"}'='"$@"'
  1937. elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
  1938.   set -o posix
  1939. fi
  1940. DUALCASE=1; export DUALCASE # for MKS sh
  1941. # Support unset when possible.
  1942. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  1943.   as_unset=unset
  1944. else
  1945.   as_unset=false
  1946. fi
  1947. # Work around bugs in pre-3.0 UWIN ksh.
  1948. $as_unset ENV MAIL MAILPATH
  1949. PS1='$ '
  1950. PS2='> '
  1951. PS4='+ '
  1952. # NLS nuisances.
  1953. for as_var in 
  1954.   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION 
  1955.   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER 
  1956.   LC_TELEPHONE LC_TIME
  1957. do
  1958.   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
  1959.     eval $as_var=C; export $as_var
  1960.   else
  1961.     $as_unset $as_var
  1962.   fi
  1963. done
  1964. # Required to use basename.
  1965. if expr a : '(a)' >/dev/null 2>&1; then
  1966.   as_expr=expr
  1967. else
  1968.   as_expr=false
  1969. fi
  1970. if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
  1971.   as_basename=basename
  1972. else
  1973.   as_basename=false
  1974. fi
  1975. # Name of the executable.
  1976. as_me=`$as_basename "$0" ||
  1977. $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | 
  1978.  X"$0" : 'X(//)$' | 
  1979.  X"$0" : 'X(/)$' | 
  1980.  .     : '(.)' 2>/dev/null ||
  1981. echo X/"$0" |
  1982.     sed '/^.*/([^/][^/]*)/*$/{ s//1/; q; }
  1983.      /^X/(//)$/{ s//1/; q; }
  1984.      /^X/(/).*/{ s//1/; q; }
  1985.      s/.*/./; q'`
  1986. # PATH needs CR, and LINENO needs CR and PATH.
  1987. # Avoid depending upon Character Ranges.
  1988. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  1989. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  1990. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  1991. as_cr_digits='0123456789'
  1992. as_cr_alnum=$as_cr_Letters$as_cr_digits
  1993. # The user is always right.
  1994. if test "${PATH_SEPARATOR+set}" != set; then
  1995.   echo "#! /bin/sh" >conf$$.sh
  1996.   echo  "exit 0"   >>conf$$.sh
  1997.   chmod +x conf$$.sh
  1998.   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
  1999.     PATH_SEPARATOR=';'
  2000.   else
  2001.     PATH_SEPARATOR=:
  2002.   fi
  2003.   rm -f conf$$.sh
  2004. fi
  2005.   as_lineno_1=$LINENO
  2006.   as_lineno_2=$LINENO
  2007.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  2008.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  2009.   test "x$as_lineno_3"  = "x$as_lineno_2"  || {
  2010.   # Find who we are.  Look in the path if we contain no path at all
  2011.   # relative or not.
  2012.   case $0 in
  2013.     *[\/]* ) as_myself=$0 ;;
  2014.     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2015. for as_dir in $PATH
  2016. do
  2017.   IFS=$as_save_IFS
  2018.   test -z "$as_dir" && as_dir=.
  2019.   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  2020. done
  2021.        ;;
  2022.   esac
  2023.   # We did not find ourselves, most probably we were run as `sh COMMAND'
  2024.   # in which case we are not to be found in the path.
  2025.   if test "x$as_myself" = x; then
  2026.     as_myself=$0
  2027.   fi
  2028.   if test ! -f "$as_myself"; then
  2029.     { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
  2030. echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
  2031.    { (exit 1); exit 1; }; }
  2032.   fi
  2033.   case $CONFIG_SHELL in
  2034.   '')
  2035.     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2036. for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  2037. do
  2038.   IFS=$as_save_IFS
  2039.   test -z "$as_dir" && as_dir=.
  2040.   for as_base in sh bash ksh sh5; do
  2041.  case $as_dir in
  2042.  /*)
  2043.    if ("$as_dir/$as_base" -c '
  2044.   as_lineno_1=$LINENO
  2045.   as_lineno_2=$LINENO
  2046.   as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
  2047.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  2048.   test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
  2049.      $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
  2050.      $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
  2051.      CONFIG_SHELL=$as_dir/$as_base
  2052.      export CONFIG_SHELL
  2053.      exec "$CONFIG_SHELL" "$0" ${1+"$@"}
  2054.    fi;;
  2055.  esac
  2056.        done
  2057. done
  2058. ;;
  2059.   esac
  2060.   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  2061.   # uniformly replaced by the line number.  The first 'sed' inserts a
  2062.   # line-number line before each line; the second 'sed' does the real
  2063.   # work.  The second script uses 'N' to pair each line-number line
  2064.   # with the numbered line, and appends trailing '-' during
  2065.   # substitution so that $LINENO is not a special case at line end.
  2066.   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  2067.   # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
  2068.   sed '=' <$as_myself |
  2069.     sed '
  2070.       N
  2071.       s,$,-,
  2072.       : loop
  2073.       s,^(['$as_cr_digits']*)(.*)[$]LINENO([^'$as_cr_alnum'_]),1213,
  2074.       t loop
  2075.       s,-$,,
  2076.       s,^['$as_cr_digits']*n,,
  2077.     ' >$as_me.lineno &&
  2078.   chmod +x $as_me.lineno ||
  2079.     { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
  2080. echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
  2081.    { (exit 1); exit 1; }; }
  2082.   # Don't try to exec as it changes $[0], causing all sort of problems
  2083.   # (the dirname of $[0] is not the place where we might find the
  2084.   # original and so on.  Autoconf is especially sensible to this).
  2085.   . ./$as_me.lineno
  2086.   # Exit status is that of the last command.
  2087.   exit
  2088. }
  2089. case `echo "testingc"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
  2090.   *c*,-n*) ECHO_N= ECHO_C='
  2091. ' ECHO_T=' ' ;;
  2092.   *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
  2093.   *)       ECHO_N= ECHO_C='c' ECHO_T= ;;
  2094. esac
  2095. if expr a : '(a)' >/dev/null 2>&1; then
  2096.   as_expr=expr
  2097. else
  2098.   as_expr=false
  2099. fi
  2100. rm -f conf$$ conf$$.exe conf$$.file
  2101. echo >conf$$.file
  2102. if ln -s conf$$.file conf$$ 2>/dev/null; then
  2103.   # We could just check for DJGPP; but this test a) works b) is more generic
  2104.   # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
  2105.   if test -f conf$$.exe; then
  2106.     # Don't use ln at all; we don't have any links
  2107.     as_ln_s='cp -p'
  2108.   else
  2109.     as_ln_s='ln -s'
  2110.   fi
  2111. elif ln conf$$.file conf$$ 2>/dev/null; then
  2112.   as_ln_s=ln
  2113. else
  2114.   as_ln_s='cp -p'
  2115. fi
  2116. rm -f conf$$ conf$$.exe conf$$.file
  2117. if mkdir -p . 2>/dev/null; then
  2118.   as_mkdir_p=:
  2119. else
  2120.   test -d ./-p && rmdir ./-p
  2121.   as_mkdir_p=false
  2122. fi
  2123. as_executable_p="test -f"
  2124. # Sed expression to map a string onto a valid CPP name.
  2125. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  2126. # Sed expression to map a string onto a valid variable name.
  2127. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  2128. # IFS
  2129. # We need space, tab and new line, in precisely that order.
  2130. as_nl='
  2131. '
  2132. IFS="  $as_nl"
  2133. # CDPATH.
  2134. $as_unset CDPATH
  2135. exec 6>&1
  2136. # Open the log real soon, to keep $[0] and so on meaningful, and to
  2137. # report actual input values of CONFIG_FILES etc. instead of their
  2138. # values after options handling.  Logging --version etc. is OK.
  2139. exec 5>>config.log
  2140. {
  2141.   echo
  2142.   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  2143. ## Running $as_me. ##
  2144. _ASBOX
  2145. } >&5
  2146. cat >&5 <<_CSEOF
  2147. This file was extended by $as_me, which was
  2148. generated by GNU Autoconf 2.59.  Invocation command line was
  2149.   CONFIG_FILES    = $CONFIG_FILES
  2150.   CONFIG_HEADERS  = $CONFIG_HEADERS
  2151.   CONFIG_LINKS    = $CONFIG_LINKS
  2152.   CONFIG_COMMANDS = $CONFIG_COMMANDS
  2153.   $ $0 $@
  2154. _CSEOF
  2155. echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
  2156. echo >&5
  2157. _ACEOF
  2158. # Files that config.status was made for.
  2159. if test -n "$ac_config_files"; then
  2160.   echo "config_files="$ac_config_files"" >>$CONFIG_STATUS
  2161. fi
  2162. if test -n "$ac_config_headers"; then
  2163.   echo "config_headers="$ac_config_headers"" >>$CONFIG_STATUS
  2164. fi
  2165. if test -n "$ac_config_links"; then
  2166.   echo "config_links="$ac_config_links"" >>$CONFIG_STATUS
  2167. fi
  2168. if test -n "$ac_config_commands"; then
  2169.   echo "config_commands="$ac_config_commands"" >>$CONFIG_STATUS
  2170. fi
  2171. cat >>$CONFIG_STATUS <<_ACEOF
  2172. ac_cs_usage="
  2173. `$as_me' instantiates files from templates according to the
  2174. current configuration.
  2175. Usage: $0 [OPTIONS] [FILE]...
  2176.   -h, --help       print this help, then exit
  2177.   -V, --version    print version number, then exit
  2178.   -q, --quiet      do not print progress messages
  2179.   -d, --debug      don't remove temporary files
  2180.       --recheck    update $as_me by reconfiguring in the same conditions
  2181.   --file=FILE[:TEMPLATE]
  2182.    instantiate the configuration file FILE
  2183.   --header=FILE[:TEMPLATE]
  2184.    instantiate the configuration header FILE
  2185. Configuration files:
  2186. $config_files
  2187. Configuration headers:
  2188. $config_headers
  2189. Configuration commands:
  2190. $config_commands
  2191. Report bugs to <bug-autoconf@gnu.org>."
  2192. _ACEOF
  2193. cat >>$CONFIG_STATUS <<_ACEOF
  2194. ac_cs_version="\
  2195. config.status
  2196. configured by $0, generated by GNU Autoconf 2.59,
  2197.   with options \"`echo "$ac_configure_args" | sed 's/[\""`$]/\\&/g'`\"
  2198. Copyright (C) 2003 Free Software Foundation, Inc.
  2199. This config.status script is free software; the Free Software Foundation
  2200. gives unlimited permission to copy, distribute and modify it."
  2201. srcdir=$srcdir
  2202. INSTALL="$INSTALL"
  2203. _ACEOF
  2204. cat >>$CONFIG_STATUS <<_ACEOF
  2205. # If no file are specified by the user, then we need to provide default
  2206. # value.  By we need to know if files were specified by the user.
  2207. ac_need_defaults=:
  2208. while test $# != 0
  2209. do
  2210.   case $1 in
  2211.   --*=*)
  2212.     ac_option=`expr "x$1" : 'x([^=]*)='`
  2213.     ac_optarg=`expr "x$1" : 'x[^=]*=(.*)'`
  2214.     ac_shift=:
  2215.     ;;
  2216.   -*)
  2217.     ac_option=$1
  2218.     ac_optarg=$2
  2219.     ac_shift=shift
  2220.     ;;
  2221.   *) # This is not an option, so the user has probably given explicit
  2222.      # arguments.
  2223.      ac_option=$1
  2224.      ac_need_defaults=false;;
  2225.   esac
  2226.   case $ac_option in
  2227.   # Handling of the options.
  2228. _ACEOF
  2229. cat >>$CONFIG_STATUS <<_ACEOF
  2230.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2231.     ac_cs_recheck=: ;;
  2232.   --version | --vers* | -V )
  2233.     echo "$ac_cs_version"; exit 0 ;;
  2234.   --he | --h)
  2235.     # Conflict between --help and --header
  2236.     { { echo "$as_me:$LINENO: error: ambiguous option: $1
  2237. Try `$0 --help' for more information." >&5
  2238. echo "$as_me: error: ambiguous option: $1
  2239. Try `$0 --help' for more information." >&2;}
  2240.    { (exit 1); exit 1; }; };;
  2241.   --help | --hel | -h )
  2242.     echo "$ac_cs_usage"; exit 0 ;;
  2243.   --debug | --d* | -d )
  2244.     debug=: ;;
  2245.   --file | --fil | --fi | --f )
  2246.     $ac_shift
  2247.     CONFIG_FILES="$CONFIG_FILES $ac_optarg"
  2248.     ac_need_defaults=false;;
  2249.   --header | --heade | --head | --hea )
  2250.     $ac_shift
  2251.     CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
  2252.     ac_need_defaults=false;;
  2253.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  2254.   | -silent | --silent | --silen | --sile | --sil | --si | --s)
  2255.     ac_cs_silent=: ;;
  2256.   # This is an error.
  2257.   -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
  2258. Try `$0 --help' for more information." >&5
  2259. echo "$as_me: error: unrecognized option: $1
  2260. Try `$0 --help' for more information." >&2;}
  2261.    { (exit 1); exit 1; }; } ;;
  2262.   *) ac_config_targets="$ac_config_targets $1" ;;
  2263.   esac
  2264.   shift
  2265. done
  2266. ac_configure_extra_args=
  2267. if $ac_cs_silent; then
  2268.   exec 6>/dev/null
  2269.   ac_configure_extra_args="$ac_configure_extra_args --silent"
  2270. fi
  2271. _ACEOF
  2272. cat >>$CONFIG_STATUS <<_ACEOF
  2273. if $ac_cs_recheck; then
  2274.   echo "running $SHELL $0 " $ac_configure_args $ac_configure_extra_args " --no-create --no-recursion" >&6
  2275.   exec $SHELL $0 $ac_configure_args $ac_configure_extra_args --no-create --no-recursion
  2276. fi
  2277. _ACEOF
  2278. cat >>$CONFIG_STATUS <<_ACEOF
  2279. #
  2280. # INIT-COMMANDS section.
  2281. #
  2282. AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
  2283. _ACEOF
  2284. cat >>$CONFIG_STATUS <<_ACEOF
  2285. for ac_config_target in $ac_config_targets
  2286. do
  2287.   case "$ac_config_target" in
  2288.   # Handling of arguments.
  2289.   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  2290.   "src/org/apache/hadoop/io/compress/zlib/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/org/apache/hadoop/io/compress/zlib/Makefile" ;;
  2291.   "lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
  2292.   "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  2293.   "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  2294.   *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  2295. echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
  2296.    { (exit 1); exit 1; }; };;
  2297.   esac
  2298. done
  2299. # If the user did not use the arguments to specify the items to instantiate,
  2300. # then the envvar interface is used.  Set only those that are not.
  2301. # We use the long form for the default assignment because of an extremely
  2302. # bizarre bug on SunOS 4.1.3.
  2303. if $ac_need_defaults; then
  2304.   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  2305.   test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  2306.   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  2307. fi
  2308. # Have a temporary directory for convenience.  Make it in the build tree
  2309. # simply because there is no reason to put it here, and in addition,
  2310. # creating and moving files from /tmp can sometimes cause problems.
  2311. # Create a temporary directory, and hook for its removal unless debugging.
  2312. $debug ||
  2313. {
  2314.   trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
  2315.   trap '{ (exit 1); exit 1; }' 1 2 13 15
  2316. }
  2317. # Create a (secure) tmp directory for tmp files.
  2318. {
  2319.   tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
  2320.   test -n "$tmp" && test -d "$tmp"
  2321. }  ||
  2322. {
  2323.   tmp=./confstat$$-$RANDOM
  2324.   (umask 077 && mkdir $tmp)
  2325. } ||
  2326. {
  2327.    echo "$me: cannot create a temporary directory in ." >&2
  2328.    { (exit 1); exit 1; }
  2329. }
  2330. _ACEOF
  2331. cat >>$CONFIG_STATUS <<_ACEOF
  2332. #
  2333. # CONFIG_FILES section.
  2334. #
  2335. # No need to generate the scripts if there are no CONFIG_FILES.
  2336. # This happens for instance when ./config.status config.h
  2337. if test -n "$CONFIG_FILES"; then
  2338.   # Protect against being on the right side of a sed subst in config.status.
  2339.   sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g;
  2340.    s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
  2341. s,@SHELL@,$SHELL,;t t
  2342. s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
  2343. s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
  2344. s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
  2345. s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
  2346. s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
  2347. s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
  2348. s,@exec_prefix@,$exec_prefix,;t t
  2349. s,@prefix@,$prefix,;t t
  2350. s,@program_transform_name@,$program_transform_name,;t t
  2351. s,@bindir@,$bindir,;t t
  2352. s,@sbindir@,$sbindir,;t t
  2353. s,@libexecdir@,$libexecdir,;t t
  2354. s,@datadir@,$datadir,;t t
  2355. s,@sysconfdir@,$sysconfdir,;t t
  2356. s,@sharedstatedir@,$sharedstatedir,;t t
  2357. s,@localstatedir@,$localstatedir,;t t
  2358. s,@libdir@,$libdir,;t t
  2359. s,@includedir@,$includedir,;t t
  2360. s,@oldincludedir@,$oldincludedir,;t t
  2361. s,@infodir@,$infodir,;t t
  2362. s,@mandir@,$mandir,;t t
  2363. s,@build_alias@,$build_alias,;t t
  2364. s,@host_alias@,$host_alias,;t t
  2365. s,@target_alias@,$target_alias,;t t
  2366. s,@DEFS@,$DEFS,;t t
  2367. s,@ECHO_C@,$ECHO_C,;t t
  2368. s,@ECHO_N@,$ECHO_N,;t t
  2369. s,@ECHO_T@,$ECHO_T,;t t
  2370. s,@LIBS@,$LIBS,;t t
  2371. s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
  2372. s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
  2373. s,@INSTALL_DATA@,$INSTALL_DATA,;t t
  2374. s,@CYGPATH_W@,$CYGPATH_W,;t t
  2375. s,@PACKAGE@,$PACKAGE,;t t
  2376. s,@VERSION@,$VERSION,;t t
  2377. s,@ACLOCAL@,$ACLOCAL,;t t
  2378. s,@AUTOCONF@,$AUTOCONF,;t t
  2379. s,@AUTOMAKE@,$AUTOMAKE,;t t
  2380. s,@AUTOHEADER@,$AUTOHEADER,;t t
  2381. s,@MAKEINFO@,$MAKEINFO,;t t
  2382. s,@install_sh@,$install_sh,;t t
  2383. s,@STRIP@,$STRIP,;t t
  2384. s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
  2385. s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
  2386. s,@mkdir_p@,$mkdir_p,;t t
  2387. s,@AWK@,$AWK,;t t
  2388. s,@SET_MAKE@,$SET_MAKE,;t t
  2389. s,@am__leading_dot@,$am__leading_dot,;t t
  2390. s,@AMTAR@,$AMTAR,;t t
  2391. s,@am__tar@,$am__tar,;t t
  2392. s,@am__untar@,$am__untar,;t t
  2393. s,@CC@,$CC,;t t
  2394. s,@CFLAGS@,$CFLAGS,;t t
  2395. s,@LDFLAGS@,$LDFLAGS,;t t
  2396. s,@CPPFLAGS@,$CPPFLAGS,;t t
  2397. s,@ac_ct_CC@,$ac_ct_CC,;t t
  2398. s,@EXEEXT@,$EXEEXT,;t t
  2399. s,@OBJEXT@,$OBJEXT,;t t
  2400. s,@DEPDIR@,$DEPDIR,;t t
  2401. s,@am__include@,$am__include,;t t
  2402. s,@am__quote@,$am__quote,;t t
  2403. s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
  2404. s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
  2405. s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
  2406. s,@CCDEPMODE@,$CCDEPMODE,;t t
  2407. s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
  2408. s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
  2409. s,@build@,$build,;t t
  2410. s,@build_cpu@,$build_cpu,;t t
  2411. s,@build_vendor@,$build_vendor,;t t
  2412. s,@build_os@,$build_os,;t t
  2413. s,@host@,$host,;t t
  2414. s,@host_cpu@,$host_cpu,;t t
  2415. s,@host_vendor@,$host_vendor,;t t
  2416. s,@host_os@,$host_os,;t t
  2417. s,@EGREP@,$EGREP,;t t
  2418. s,@LN_S@,$LN_S,;t t
  2419. s,@ECHO@,$ECHO,;t t
  2420. s,@AR@,$AR,;t t
  2421. s,@ac_ct_AR@,$ac_ct_AR,;t t
  2422. s,@RANLIB@,$RANLIB,;t t
  2423. s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
  2424. s,@CPP@,$CPP,;t t
  2425. s,@CXX@,$CXX,;t t
  2426. s,@CXXFLAGS@,$CXXFLAGS,;t t
  2427. s,@ac_ct_CXX@,$ac_ct_CXX,;t t
  2428. s,@CXXDEPMODE@,$CXXDEPMODE,;t t
  2429. s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t
  2430. s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t
  2431. s,@CXXCPP@,$CXXCPP,;t t
  2432. s,@F77@,$F77,;t t
  2433. s,@FFLAGS@,$FFLAGS,;t t
  2434. s,@ac_ct_F77@,$ac_ct_F77,;t t
  2435. s,@LIBTOOL@,$LIBTOOL,;t t
  2436. s,@JNI_LDFLAGS@,$JNI_LDFLAGS,;t t
  2437. s,@JNI_CPPFLAGS@,$JNI_CPPFLAGS,;t t
  2438. s,@LIBOBJS@,$LIBOBJS,;t t
  2439. s,@LTLIBOBJS@,$LTLIBOBJS,;t t
  2440. CEOF
  2441. _ACEOF
  2442.   cat >>$CONFIG_STATUS <<_ACEOF
  2443.   # Split the substitutions into bite-sized pieces for seds with
  2444.   # small command number limits, like on Digital OSF/1 and HP-UX.
  2445.   ac_max_sed_lines=48
  2446.   ac_sed_frag=1 # Number of current file.
  2447.   ac_beg=1 # First line for current file.
  2448.   ac_end=$ac_max_sed_lines # Line after last line for current file.
  2449.   ac_more_lines=:
  2450.   ac_sed_cmds=
  2451.   while $ac_more_lines; do
  2452.     if test $ac_beg -gt 1; then
  2453.       sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
  2454.     else
  2455.       sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
  2456.     fi
  2457.     if test ! -s $tmp/subs.frag; then
  2458.       ac_more_lines=false
  2459.     else
  2460.       # The purpose of the label and of the branching condition is to
  2461.       # speed up the sed processing (if there are no `@' at all, there
  2462.       # is no need to browse any of the substitutions).
  2463.       # These are the two extra sed commands mentioned above.
  2464.       (echo ':t
  2465.   /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
  2466.       if test -z "$ac_sed_cmds"; then
  2467. ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
  2468.       else
  2469. ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
  2470.       fi
  2471.       ac_sed_frag=`expr $ac_sed_frag + 1`
  2472.       ac_beg=$ac_end
  2473.       ac_end=`expr $ac_end + $ac_max_sed_lines`
  2474.     fi
  2475.   done
  2476.   if test -z "$ac_sed_cmds"; then
  2477.     ac_sed_cmds=cat
  2478.   fi
  2479. fi # test -n "$CONFIG_FILES"
  2480. _ACEOF
  2481. cat >>$CONFIG_STATUS <<_ACEOF
  2482. for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
  2483.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  2484.   case $ac_file in
  2485.   - | *:- | *:-:* ) # input from stdin
  2486. cat >$tmp/stdin
  2487. ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  2488. ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  2489.   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  2490. ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  2491.   * )   ac_file_in=$ac_file.in ;;
  2492.   esac
  2493.   # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
  2494.   ac_dir=`(dirname "$ac_file") 2>/dev/null ||
  2495. $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2496.  X"$ac_file" : 'X(//)[^/]' | 
  2497.  X"$ac_file" : 'X(//)$' | 
  2498.  X"$ac_file" : 'X(/)' | 
  2499.  .     : '(.)' 2>/dev/null ||
  2500. echo X"$ac_file" |
  2501.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2502.      /^X(//)[^/].*/{ s//1/; q; }
  2503.      /^X(//)$/{ s//1/; q; }
  2504.      /^X(/).*/{ s//1/; q; }
  2505.      s/.*/./; q'`
  2506.   { if $as_mkdir_p; then
  2507.     mkdir -p "$ac_dir"
  2508.   else
  2509.     as_dir="$ac_dir"
  2510.     as_dirs=
  2511.     while test ! -d "$as_dir"; do
  2512.       as_dirs="$as_dir $as_dirs"
  2513.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  2514. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2515.  X"$as_dir" : 'X(//)[^/]' | 
  2516.  X"$as_dir" : 'X(//)$' | 
  2517.  X"$as_dir" : 'X(/)' | 
  2518.  .     : '(.)' 2>/dev/null ||
  2519. echo X"$as_dir" |
  2520.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2521.      /^X(//)[^/].*/{ s//1/; q; }
  2522.      /^X(//)$/{ s//1/; q; }
  2523.      /^X(/).*/{ s//1/; q; }
  2524.      s/.*/./; q'`
  2525.     done
  2526.     test ! -n "$as_dirs" || mkdir $as_dirs
  2527.   fi || { { echo "$as_me:$LINENO: error: cannot create directory "$ac_dir"" >&5
  2528. echo "$as_me: error: cannot create directory "$ac_dir"" >&2;}
  2529.    { (exit 1); exit 1; }; }; }
  2530.   ac_builddir=.
  2531. if test "$ac_dir" != .; then
  2532.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^.[\/],,'`
  2533.   # A "../" for each directory in $ac_dir_suffix.
  2534.   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\/]*,../,g'`
  2535. else
  2536.   ac_dir_suffix= ac_top_builddir=
  2537. fi
  2538. case $srcdir in
  2539.   .)  # No --srcdir option.  We are building in place.
  2540.     ac_srcdir=.
  2541.     if test -z "$ac_top_builddir"; then
  2542.        ac_top_srcdir=.
  2543.     else
  2544.        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
  2545.     fi ;;
  2546.   [\/]* | ?:[\/]* )  # Absolute path.
  2547.     ac_srcdir=$srcdir$ac_dir_suffix;
  2548.     ac_top_srcdir=$srcdir ;;
  2549.   *) # Relative path.
  2550.     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
  2551.     ac_top_srcdir=$ac_top_builddir$srcdir ;;
  2552. esac
  2553. # Do not use `cd foo && pwd` to compute absolute paths, because
  2554. # the directories may not exist.
  2555. case `pwd` in
  2556. .) ac_abs_builddir="$ac_dir";;
  2557. *)
  2558.   case "$ac_dir" in
  2559.   .) ac_abs_builddir=`pwd`;;
  2560.   [\/]* | ?:[\/]* ) ac_abs_builddir="$ac_dir";;
  2561.   *) ac_abs_builddir=`pwd`/"$ac_dir";;
  2562.   esac;;
  2563. esac
  2564. case $ac_abs_builddir in
  2565. .) ac_abs_top_builddir=${ac_top_builddir}.;;
  2566. *)
  2567.   case ${ac_top_builddir}. in
  2568.   .) ac_abs_top_builddir=$ac_abs_builddir;;
  2569.   [\/]* | ?:[\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
  2570.   *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
  2571.   esac;;
  2572. esac
  2573. case $ac_abs_builddir in
  2574. .) ac_abs_srcdir=$ac_srcdir;;
  2575. *)
  2576.   case $ac_srcdir in
  2577.   .) ac_abs_srcdir=$ac_abs_builddir;;
  2578.   [\/]* | ?:[\/]* ) ac_abs_srcdir=$ac_srcdir;;
  2579.   *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
  2580.   esac;;
  2581. esac
  2582. case $ac_abs_builddir in
  2583. .) ac_abs_top_srcdir=$ac_top_srcdir;;
  2584. *)
  2585.   case $ac_top_srcdir in
  2586.   .) ac_abs_top_srcdir=$ac_abs_builddir;;
  2587.   [\/]* | ?:[\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
  2588.   *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
  2589.   esac;;
  2590. esac
  2591.   case $INSTALL in
  2592.   [\/$]* | ?:[\/]* ) ac_INSTALL=$INSTALL ;;
  2593.   *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
  2594.   esac
  2595.   if test x"$ac_file" != x-; then
  2596.     { echo "$as_me:$LINENO: creating $ac_file" >&5
  2597. echo "$as_me: creating $ac_file" >&6;}
  2598.     rm -f "$ac_file"
  2599.   fi
  2600.   # Let's still pretend it is `configure' which instantiates (i.e., don't
  2601.   # use $as_me), people would be surprised to read:
  2602.   #    /* config.h.  Generated by config.status.  */
  2603.   if test x"$ac_file" = x-; then
  2604.     configure_input=
  2605.   else
  2606.     configure_input="$ac_file.  "
  2607.   fi
  2608.   configure_input=$configure_input"Generated from `echo $ac_file_in |
  2609.      sed 's,.*/,,'` by configure."
  2610.   # First look for the input files in the build tree, otherwise in the
  2611.   # src tree.
  2612.   ac_file_inputs=`IFS=:
  2613.     for f in $ac_file_in; do
  2614.       case $f in
  2615.       -) echo $tmp/stdin ;;
  2616.       [\/$]*)
  2617.  # Absolute (can't be DOS-style, as IFS=:)
  2618.  test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  2619. echo "$as_me: error: cannot find input file: $f" >&2;}
  2620.    { (exit 1); exit 1; }; }
  2621.  echo "$f";;
  2622.       *) # Relative
  2623.  if test -f "$f"; then
  2624.    # Build tree
  2625.    echo "$f"
  2626.  elif test -f "$srcdir/$f"; then
  2627.    # Source tree
  2628.    echo "$srcdir/$f"
  2629.  else
  2630.    # /dev/null tree
  2631.    { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  2632. echo "$as_me: error: cannot find input file: $f" >&2;}
  2633.    { (exit 1); exit 1; }; }
  2634.  fi;;
  2635.       esac
  2636.     done` || { (exit 1); exit 1; }
  2637. _ACEOF
  2638. cat >>$CONFIG_STATUS <<_ACEOF
  2639.   sed "$ac_vpsub
  2640. $extrasub
  2641. _ACEOF
  2642. cat >>$CONFIG_STATUS <<_ACEOF
  2643. :t
  2644. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  2645. s,@configure_input@,$configure_input,;t t
  2646. s,@srcdir@,$ac_srcdir,;t t
  2647. s,@abs_srcdir@,$ac_abs_srcdir,;t t
  2648. s,@top_srcdir@,$ac_top_srcdir,;t t
  2649. s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
  2650. s,@builddir@,$ac_builddir,;t t
  2651. s,@abs_builddir@,$ac_abs_builddir,;t t
  2652. s,@top_builddir@,$ac_top_builddir,;t t
  2653. s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
  2654. s,@INSTALL@,$ac_INSTALL,;t t
  2655. " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
  2656.   rm -f $tmp/stdin
  2657.   if test x"$ac_file" != x-; then
  2658.     mv $tmp/out $ac_file
  2659.   else
  2660.     cat $tmp/out
  2661.     rm -f $tmp/out
  2662.   fi
  2663. done
  2664. _ACEOF
  2665. cat >>$CONFIG_STATUS <<_ACEOF
  2666. #
  2667. # CONFIG_HEADER section.
  2668. #
  2669. # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
  2670. # NAME is the cpp macro being defined and VALUE is the value it is being given.
  2671. #
  2672. # ac_d sets the value in "#define NAME VALUE" lines.
  2673. ac_dA='s,^([  ]*)#([  ]*define[  ][  ]*)'
  2674. ac_dB='[  ].*$,1#2'
  2675. ac_dC=' '
  2676. ac_dD=',;t'
  2677. # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
  2678. ac_uA='s,^([  ]*)#([  ]*)undef([  ][  ]*)'
  2679. ac_uB='$,1#2define3'
  2680. ac_uC=' '
  2681. ac_uD=',;t'
  2682. for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
  2683.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  2684.   case $ac_file in
  2685.   - | *:- | *:-:* ) # input from stdin
  2686. cat >$tmp/stdin
  2687. ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  2688. ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  2689.   *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
  2690. ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
  2691.   * )   ac_file_in=$ac_file.in ;;
  2692.   esac
  2693.   test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
  2694. echo "$as_me: creating $ac_file" >&6;}
  2695.   # First look for the input files in the build tree, otherwise in the
  2696.   # src tree.
  2697.   ac_file_inputs=`IFS=:
  2698.     for f in $ac_file_in; do
  2699.       case $f in
  2700.       -) echo $tmp/stdin ;;
  2701.       [\/$]*)
  2702.  # Absolute (can't be DOS-style, as IFS=:)
  2703.  test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  2704. echo "$as_me: error: cannot find input file: $f" >&2;}
  2705.    { (exit 1); exit 1; }; }
  2706.  # Do quote $f, to prevent DOS paths from being IFS'd.
  2707.  echo "$f";;
  2708.       *) # Relative
  2709.  if test -f "$f"; then
  2710.    # Build tree
  2711.    echo "$f"
  2712.  elif test -f "$srcdir/$f"; then
  2713.    # Source tree
  2714.    echo "$srcdir/$f"
  2715.  else
  2716.    # /dev/null tree
  2717.    { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
  2718. echo "$as_me: error: cannot find input file: $f" >&2;}
  2719.    { (exit 1); exit 1; }; }
  2720.  fi;;
  2721.       esac
  2722.     done` || { (exit 1); exit 1; }
  2723.   # Remove the trailing spaces.
  2724.   sed 's/[  ]*$//' $ac_file_inputs >$tmp/in
  2725. _ACEOF
  2726. # Transform confdefs.h into two sed scripts, `conftest.defines' and
  2727. # `conftest.undefs', that substitutes the proper values into
  2728. # config.h.in to produce config.h.  The first handles `#define'
  2729. # templates, and the second `#undef' templates.
  2730. # And first: Protect against being on the right side of a sed subst in
  2731. # config.status.  Protect against being in an unquoted here document
  2732. # in config.status.
  2733. rm -f conftest.defines conftest.undefs
  2734. # Using a here document instead of a string reduces the quoting nightmare.
  2735. # Putting comments in sed scripts is not portable.
  2736. #
  2737. # `end' is used to avoid that the second main sed command (meant for
  2738. # 0-ary CPP macros) applies to n-ary macro definitions.
  2739. # See the Autoconf documentation for `clear'.
  2740. cat >confdef2sed.sed <<_ACEOF
  2741. s/[\&,]/\&/g
  2742. s,[\$`],\&,g
  2743. t clear
  2744. : clear
  2745. s,^[  ]*#[  ]*define[  ][  ]*([^  (][^  (]*)(([^)]*))[  ]*(.*)$,${ac_dA}1${ac_dB}12${ac_dC}3${ac_dD},gp
  2746. t end
  2747. s,^[  ]*#[  ]*define[  ][  ]*([^  ][^  ]*)[  ]*(.*)$,${ac_dA}1${ac_dB}1${ac_dC}2${ac_dD},gp
  2748. : end
  2749. _ACEOF
  2750. # If some macros were called several times there might be several times
  2751. # the same #defines, which is useless.  Nevertheless, we may not want to
  2752. # sort them, since we want the *last* AC-DEFINE to be honored.
  2753. uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
  2754. sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
  2755. rm -f confdef2sed.sed
  2756. # This sed command replaces #undef with comments.  This is necessary, for
  2757. # example, in the case of _POSIX_SOURCE, which is predefined and required
  2758. # on some systems where configure will not decide to define it.
  2759. cat >>conftest.undefs <<_ACEOF
  2760. s,^[  ]*#[  ]*undef[  ][  ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
  2761. _ACEOF
  2762. # Break up conftest.defines because some shells have a limit on the size
  2763. # of here documents, and old seds have small limits too (100 cmds).
  2764. echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
  2765. echo '  if grep "^[  ]*#[  ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
  2766. echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
  2767. echo '  :' >>$CONFIG_STATUS
  2768. rm -f conftest.tail
  2769. while grep . conftest.defines >/dev/null
  2770. do
  2771.   # Write a limited-size here document to $tmp/defines.sed.
  2772.   echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
  2773.   # Speed up: don't consider the non `#define' lines.
  2774.   echo '/^[  ]*#[  ]*define/!b' >>$CONFIG_STATUS
  2775.   # Work around the forget-to-reset-the-flag bug.
  2776.   echo 't clr' >>$CONFIG_STATUS
  2777.   echo ': clr' >>$CONFIG_STATUS
  2778.   sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
  2779.   echo 'CEOF
  2780.   sed -f $tmp/defines.sed $tmp/in >$tmp/out
  2781.   rm -f $tmp/in
  2782.   mv $tmp/out $tmp/in
  2783. ' >>$CONFIG_STATUS
  2784.   sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
  2785.   rm -f conftest.defines
  2786.   mv conftest.tail conftest.defines
  2787. done
  2788. rm -f conftest.defines
  2789. echo '  fi # grep' >>$CONFIG_STATUS
  2790. echo >>$CONFIG_STATUS
  2791. # Break up conftest.undefs because some shells have a limit on the size
  2792. # of here documents, and old seds have small limits too (100 cmds).
  2793. echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
  2794. rm -f conftest.tail
  2795. while grep . conftest.undefs >/dev/null
  2796. do
  2797.   # Write a limited-size here document to $tmp/undefs.sed.
  2798.   echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
  2799.   # Speed up: don't consider the non `#undef'
  2800.   echo '/^[  ]*#[  ]*undef/!b' >>$CONFIG_STATUS
  2801.   # Work around the forget-to-reset-the-flag bug.
  2802.   echo 't clr' >>$CONFIG_STATUS
  2803.   echo ': clr' >>$CONFIG_STATUS
  2804.   sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
  2805.   echo 'CEOF
  2806.   sed -f $tmp/undefs.sed $tmp/in >$tmp/out
  2807.   rm -f $tmp/in
  2808.   mv $tmp/out $tmp/in
  2809. ' >>$CONFIG_STATUS
  2810.   sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
  2811.   rm -f conftest.undefs
  2812.   mv conftest.tail conftest.undefs
  2813. done
  2814. rm -f conftest.undefs
  2815. cat >>$CONFIG_STATUS <<_ACEOF
  2816.   # Let's still pretend it is `configure' which instantiates (i.e., don't
  2817.   # use $as_me), people would be surprised to read:
  2818.   #    /* config.h.  Generated by config.status.  */
  2819.   if test x"$ac_file" = x-; then
  2820.     echo "/* Generated by configure.  */" >$tmp/config.h
  2821.   else
  2822.     echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
  2823.   fi
  2824.   cat $tmp/in >>$tmp/config.h
  2825.   rm -f $tmp/in
  2826.   if test x"$ac_file" != x-; then
  2827.     if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
  2828.       { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
  2829. echo "$as_me: $ac_file is unchanged" >&6;}
  2830.     else
  2831.       ac_dir=`(dirname "$ac_file") 2>/dev/null ||
  2832. $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2833.  X"$ac_file" : 'X(//)[^/]' | 
  2834.  X"$ac_file" : 'X(//)$' | 
  2835.  X"$ac_file" : 'X(/)' | 
  2836.  .     : '(.)' 2>/dev/null ||
  2837. echo X"$ac_file" |
  2838.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2839.      /^X(//)[^/].*/{ s//1/; q; }
  2840.      /^X(//)$/{ s//1/; q; }
  2841.      /^X(/).*/{ s//1/; q; }
  2842.      s/.*/./; q'`
  2843.       { if $as_mkdir_p; then
  2844.     mkdir -p "$ac_dir"
  2845.   else
  2846.     as_dir="$ac_dir"
  2847.     as_dirs=
  2848.     while test ! -d "$as_dir"; do
  2849.       as_dirs="$as_dir $as_dirs"
  2850.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  2851. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2852.  X"$as_dir" : 'X(//)[^/]' | 
  2853.  X"$as_dir" : 'X(//)$' | 
  2854.  X"$as_dir" : 'X(/)' | 
  2855.  .     : '(.)' 2>/dev/null ||
  2856. echo X"$as_dir" |
  2857.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2858.      /^X(//)[^/].*/{ s//1/; q; }
  2859.      /^X(//)$/{ s//1/; q; }
  2860.      /^X(/).*/{ s//1/; q; }
  2861.      s/.*/./; q'`
  2862.     done
  2863.     test ! -n "$as_dirs" || mkdir $as_dirs
  2864.   fi || { { echo "$as_me:$LINENO: error: cannot create directory "$ac_dir"" >&5
  2865. echo "$as_me: error: cannot create directory "$ac_dir"" >&2;}
  2866.    { (exit 1); exit 1; }; }; }
  2867.       rm -f $ac_file
  2868.       mv $tmp/config.h $ac_file
  2869.     fi
  2870.   else
  2871.     cat $tmp/config.h
  2872.     rm -f $tmp/config.h
  2873.   fi
  2874. # Compute $ac_file's index in $config_headers.
  2875. _am_stamp_count=1
  2876. for _am_header in $config_headers :; do
  2877.   case $_am_header in
  2878.     $ac_file | $ac_file:* )
  2879.       break ;;
  2880.     * )
  2881.       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  2882.   esac
  2883. done
  2884. echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
  2885. $as_expr X$ac_file : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2886.  X$ac_file : 'X(//)[^/]' | 
  2887.  X$ac_file : 'X(//)$' | 
  2888.  X$ac_file : 'X(/)' | 
  2889.  .     : '(.)' 2>/dev/null ||
  2890. echo X$ac_file |
  2891.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2892.      /^X(//)[^/].*/{ s//1/; q; }
  2893.      /^X(//)$/{ s//1/; q; }
  2894.      /^X(/).*/{ s//1/; q; }
  2895.      s/.*/./; q'`/stamp-h$_am_stamp_count
  2896. done
  2897. _ACEOF
  2898. cat >>$CONFIG_STATUS <<_ACEOF
  2899. #
  2900. # CONFIG_COMMANDS section.
  2901. #
  2902. for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
  2903.   ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
  2904.   ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
  2905.   ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
  2906. $as_expr X"$ac_dest" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2907.  X"$ac_dest" : 'X(//)[^/]' | 
  2908.  X"$ac_dest" : 'X(//)$' | 
  2909.  X"$ac_dest" : 'X(/)' | 
  2910.  .     : '(.)' 2>/dev/null ||
  2911. echo X"$ac_dest" |
  2912.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2913.      /^X(//)[^/].*/{ s//1/; q; }
  2914.      /^X(//)$/{ s//1/; q; }
  2915.      /^X(/).*/{ s//1/; q; }
  2916.      s/.*/./; q'`
  2917.   { if $as_mkdir_p; then
  2918.     mkdir -p "$ac_dir"
  2919.   else
  2920.     as_dir="$ac_dir"
  2921.     as_dirs=
  2922.     while test ! -d "$as_dir"; do
  2923.       as_dirs="$as_dir $as_dirs"
  2924.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  2925. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2926.  X"$as_dir" : 'X(//)[^/]' | 
  2927.  X"$as_dir" : 'X(//)$' | 
  2928.  X"$as_dir" : 'X(/)' | 
  2929.  .     : '(.)' 2>/dev/null ||
  2930. echo X"$as_dir" |
  2931.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  2932.      /^X(//)[^/].*/{ s//1/; q; }
  2933.      /^X(//)$/{ s//1/; q; }
  2934.      /^X(/).*/{ s//1/; q; }
  2935.      s/.*/./; q'`
  2936.     done
  2937.     test ! -n "$as_dirs" || mkdir $as_dirs
  2938.   fi || { { echo "$as_me:$LINENO: error: cannot create directory "$ac_dir"" >&5
  2939. echo "$as_me: error: cannot create directory "$ac_dir"" >&2;}
  2940.    { (exit 1); exit 1; }; }; }
  2941.   ac_builddir=.
  2942. if test "$ac_dir" != .; then
  2943.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^.[\/],,'`
  2944.   # A "../" for each directory in $ac_dir_suffix.
  2945.   ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\/]*,../,g'`
  2946. else
  2947.   ac_dir_suffix= ac_top_builddir=
  2948. fi
  2949. case $srcdir in
  2950.   .)  # No --srcdir option.  We are building in place.
  2951.     ac_srcdir=.
  2952.     if test -z "$ac_top_builddir"; then
  2953.        ac_top_srcdir=.
  2954.     else
  2955.        ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
  2956.     fi ;;
  2957.   [\/]* | ?:[\/]* )  # Absolute path.
  2958.     ac_srcdir=$srcdir$ac_dir_suffix;
  2959.     ac_top_srcdir=$srcdir ;;
  2960.   *) # Relative path.
  2961.     ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
  2962.     ac_top_srcdir=$ac_top_builddir$srcdir ;;
  2963. esac
  2964. # Do not use `cd foo && pwd` to compute absolute paths, because
  2965. # the directories may not exist.
  2966. case `pwd` in
  2967. .) ac_abs_builddir="$ac_dir";;
  2968. *)
  2969.   case "$ac_dir" in
  2970.   .) ac_abs_builddir=`pwd`;;
  2971.   [\/]* | ?:[\/]* ) ac_abs_builddir="$ac_dir";;
  2972.   *) ac_abs_builddir=`pwd`/"$ac_dir";;
  2973.   esac;;
  2974. esac
  2975. case $ac_abs_builddir in
  2976. .) ac_abs_top_builddir=${ac_top_builddir}.;;
  2977. *)
  2978.   case ${ac_top_builddir}. in
  2979.   .) ac_abs_top_builddir=$ac_abs_builddir;;
  2980.   [\/]* | ?:[\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
  2981.   *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
  2982.   esac;;
  2983. esac
  2984. case $ac_abs_builddir in
  2985. .) ac_abs_srcdir=$ac_srcdir;;
  2986. *)
  2987.   case $ac_srcdir in
  2988.   .) ac_abs_srcdir=$ac_abs_builddir;;
  2989.   [\/]* | ?:[\/]* ) ac_abs_srcdir=$ac_srcdir;;
  2990.   *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
  2991.   esac;;
  2992. esac
  2993. case $ac_abs_builddir in
  2994. .) ac_abs_top_srcdir=$ac_top_srcdir;;
  2995. *)
  2996.   case $ac_top_srcdir in
  2997.   .) ac_abs_top_srcdir=$ac_abs_builddir;;
  2998.   [\/]* | ?:[\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
  2999.   *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
  3000.   esac;;
  3001. esac
  3002.   { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
  3003. echo "$as_me: executing $ac_dest commands" >&6;}
  3004.   case $ac_dest in
  3005.     depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
  3006.   # Strip MF so we end up with the name of the file.
  3007.   mf=`echo "$mf" | sed -e 's/:.*$//'`
  3008.   # Check whether this is an Automake generated Makefile or not.
  3009.   # We used to match only the files named `Makefile.in', but
  3010.   # some people rename them; so instead we look at the file content.
  3011.   # Grep'ing the first line is not enough: some people post-process
  3012.   # each Makefile.in and add a new line on top of each file to say so.
  3013.   # So let's grep whole file.
  3014.   if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
  3015.     dirpart=`(dirname "$mf") 2>/dev/null ||
  3016. $as_expr X"$mf" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3017.  X"$mf" : 'X(//)[^/]' | 
  3018.  X"$mf" : 'X(//)$' | 
  3019.  X"$mf" : 'X(/)' | 
  3020.  .     : '(.)' 2>/dev/null ||
  3021. echo X"$mf" |
  3022.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  3023.      /^X(//)[^/].*/{ s//1/; q; }
  3024.      /^X(//)$/{ s//1/; q; }
  3025.      /^X(/).*/{ s//1/; q; }
  3026.      s/.*/./; q'`
  3027.   else
  3028.     continue
  3029.   fi
  3030.   # Extract the definition of DEPDIR, am__include, and am__quote
  3031.   # from the Makefile without running `make'.
  3032.   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  3033.   test -z "$DEPDIR" && continue
  3034.   am__include=`sed -n 's/^am__include = //p' < "$mf"`
  3035.   test -z "am__include" && continue
  3036.   am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  3037.   # When using ansi2knr, U may be empty or an underscore; expand it
  3038.   U=`sed -n 's/^U = //p' < "$mf"`
  3039.   # Find all dependency output files, they are included files with
  3040.   # $(DEPDIR) in their names.  We invoke sed twice because it is the
  3041.   # simplest approach to changing $(DEPDIR) to its actual value in the
  3042.   # expansion.
  3043.   for file in `sed -n "
  3044.     s/^$am__include $am__quote(.*(DEPDIR).*)$am__quote"'$/1/p' <"$mf" | 
  3045.        sed -e 's/$(DEPDIR)/'"$DEPDIR"'/g' -e 's/$U/'"$U"'/g'`; do
  3046.     # Make sure the directory exists.
  3047.     test -f "$dirpart/$file" && continue
  3048.     fdir=`(dirname "$file") 2>/dev/null ||
  3049. $as_expr X"$file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3050.  X"$file" : 'X(//)[^/]' | 
  3051.  X"$file" : 'X(//)$' | 
  3052.  X"$file" : 'X(/)' | 
  3053.  .     : '(.)' 2>/dev/null ||
  3054. echo X"$file" |
  3055.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  3056.      /^X(//)[^/].*/{ s//1/; q; }
  3057.      /^X(//)$/{ s//1/; q; }
  3058.      /^X(/).*/{ s//1/; q; }
  3059.      s/.*/./; q'`
  3060.     { if $as_mkdir_p; then
  3061.     mkdir -p $dirpart/$fdir
  3062.   else
  3063.     as_dir=$dirpart/$fdir
  3064.     as_dirs=
  3065.     while test ! -d "$as_dir"; do
  3066.       as_dirs="$as_dir $as_dirs"
  3067.       as_dir=`(dirname "$as_dir") 2>/dev/null ||
  3068. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3069.  X"$as_dir" : 'X(//)[^/]' | 
  3070.  X"$as_dir" : 'X(//)$' | 
  3071.  X"$as_dir" : 'X(/)' | 
  3072.  .     : '(.)' 2>/dev/null ||
  3073. echo X"$as_dir" |
  3074.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//1/; q; }
  3075.      /^X(//)[^/].*/{ s//1/; q; }
  3076.      /^X(//)$/{ s//1/; q; }
  3077.      /^X(/).*/{ s//1/; q; }
  3078.      s/.*/./; q'`
  3079.     done
  3080.     test ! -n "$as_dirs" || mkdir $as_dirs
  3081.   fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
  3082. echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
  3083.    { (exit 1); exit 1; }; }; }
  3084.     # echo "creating $dirpart/$file"
  3085.     echo '# dummy' > "$dirpart/$file"
  3086.   done
  3087. done
  3088.  ;;
  3089.   esac
  3090. done
  3091. _ACEOF
  3092. cat >>$CONFIG_STATUS <<_ACEOF
  3093. { (exit 0); exit 0; }
  3094. _ACEOF
  3095. chmod +x $CONFIG_STATUS
  3096. ac_clean_files=$ac_clean_files_save
  3097. # configure is writing to config.log, and then calls config.status.
  3098. # config.status does its own redirection, appending to config.log.
  3099. # Unfortunately, on DOS this fails, as config.log is still kept open
  3100. # by configure, so config.status won't be able to write to it; its
  3101. # output is simply discarded.  So we exec the FD to /dev/null,
  3102. # effectively closing config.log, so it can be properly (re)opened and
  3103. # appended to by config.status.  When coming back to configure, we
  3104. # need to make the FD available again.
  3105. if test "$no_create" != yes; then
  3106.   ac_cs_success=:
  3107.   ac_config_status_args=
  3108.   test "$silent" = yes &&
  3109.     ac_config_status_args="$ac_config_status_args --quiet"
  3110.   exec 5>/dev/null
  3111.   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  3112.   exec 5>>config.log
  3113.   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  3114.   # would make configure fail if this is the last instruction.
  3115.   $ac_cs_success || { (exit 1); exit 1; }
  3116. fi
  3117. #
  3118. #vim: sw=2: ts=2: noet
  3119. #