configure
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:466k
源码类别:

多媒体编程

开发平台:

DOS

  1.   return new_str;
  2. }
  3. int main (int argc, char *argv[])
  4. {
  5.   int major, minor, micro;
  6.   char *tmp_version;
  7.   /* This hangs on some systems (?)
  8.   system ("touch conf.sdltest");
  9.   */
  10.   { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
  11.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  12.   tmp_version = my_strdup("$min_sdl_version");
  13.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  14.      printf("%s, bad version stringn", "$min_sdl_version");
  15.      exit(1);
  16.    }
  17.    if (($sdl_major_version > major) ||
  18.       (($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
  19.       (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
  20.     {
  21.       return 0;
  22.     }
  23.   else
  24.     {
  25.       printf("n*** 'sdl-config --version' returned %d.%d.%d, but the minimum versionn", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
  26.       printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it isn", major, minor, micro);
  27.       printf("*** best to upgrade to the required version.n");
  28.       printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIGn");
  29.       printf("*** to point to the correct copy of sdl-config, and remove the filen");
  30.       printf("*** config.cache before re-running configuren");
  31.       return 1;
  32.     }
  33. }
  34. _ACEOF
  35. rm -f conftest$ac_exeext
  36. if { (ac_try="$ac_link"
  37. case "(($ac_try" in
  38.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  39.   *) ac_try_echo=$ac_try;;
  40. esac
  41. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  42. $as_echo "$ac_try_echo") >&5
  43.   (eval "$ac_link") 2>&5
  44.   ac_status=$?
  45.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  46.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  47.   { (case "(($ac_try" in
  48.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  49.   *) ac_try_echo=$ac_try;;
  50. esac
  51. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  52. $as_echo "$ac_try_echo") >&5
  53.   (eval "$ac_try") 2>&5
  54.   ac_status=$?
  55.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  56.   (exit $ac_status); }; }; then
  57.   :
  58. else
  59.   $as_echo "$as_me: program exited with status $ac_status" >&5
  60. $as_echo "$as_me: failed program was:" >&5
  61. sed 's/^/| /' conftest.$ac_ext >&5
  62. ( exit $ac_status )
  63. no_sdl=yes
  64. fi
  65. rm -rf conftest.dSYM
  66. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  67. fi
  68.         CFLAGS="$ac_save_CFLAGS"
  69.         CXXFLAGS="$ac_save_CXXFLAGS"
  70.         LIBS="$ac_save_LIBS"
  71.       fi
  72.     fi
  73.     if test "x$no_sdl" = x ; then
  74.       { $as_echo "$as_me:$LINENO: result: yes" >&5
  75. $as_echo "yes" >&6; }
  76.     else
  77.       { $as_echo "$as_me:$LINENO: result: no" >&5
  78. $as_echo "no" >&6; }
  79.     fi
  80.   fi
  81.   if test "x$no_sdl" = x ; then
  82.      :
  83.   else
  84.      if test "$SDL_CONFIG" = "no" ; then
  85.        echo "*** The sdl-config script installed by SDL could not be found"
  86.        echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
  87.        echo "*** your path, or set the SDL_CONFIG environment variable to the"
  88.        echo "*** full path to sdl-config."
  89.      else
  90.        if test -f conf.sdltest ; then
  91.         :
  92.        else
  93.           echo "*** Could not run SDL test program, checking why..."
  94.           CFLAGS="$CFLAGS $SDL_CFLAGS"
  95.           CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
  96.           LIBS="$LIBS $SDL_LIBS"
  97.           cat >conftest.$ac_ext <<_ACEOF
  98. /* confdefs.h.  */
  99. _ACEOF
  100. cat confdefs.h >>conftest.$ac_ext
  101. cat >>conftest.$ac_ext <<_ACEOF
  102. /* end confdefs.h.  */
  103. #include <stdio.h>
  104. #include "SDL.h"
  105. int main(int argc, char *argv[])
  106. { return 0; }
  107. #undef  main
  108. #define main K_and_R_C_main
  109. int
  110. main ()
  111. {
  112.  return 0;
  113.   ;
  114.   return 0;
  115. }
  116. _ACEOF
  117. rm -f conftest.$ac_objext conftest$ac_exeext
  118. if { (ac_try="$ac_link"
  119. case "(($ac_try" in
  120.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  121.   *) ac_try_echo=$ac_try;;
  122. esac
  123. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  124. $as_echo "$ac_try_echo") >&5
  125.   (eval "$ac_link") 2>conftest.er1
  126.   ac_status=$?
  127.   grep -v '^ *+' conftest.er1 >conftest.err
  128.   rm -f conftest.er1
  129.   cat conftest.err >&5
  130.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  131.   (exit $ac_status); } && {
  132.  test -z "$ac_c_werror_flag" ||
  133.  test ! -s conftest.err
  134.        } && test -s conftest$ac_exeext && {
  135.  test "$cross_compiling" = yes ||
  136.  $as_test_x conftest$ac_exeext
  137.        }; then
  138.    echo "*** The test program compiled, but did not run. This usually means"
  139.           echo "*** that the run-time linker is not finding SDL or finding the wrong"
  140.           echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
  141.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  142.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  143.           echo "*** is required on your system"
  144.   echo "***"
  145.           echo "*** If you have an old version installed, it is best to remove it, although"
  146.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
  147. else
  148.   $as_echo "$as_me: failed program was:" >&5
  149. sed 's/^/| /' conftest.$ac_ext >&5
  150.  echo "*** The test program failed to compile or link. See the file config.log for the"
  151.           echo "*** exact error that occured. This usually means SDL was incorrectly installed"
  152.           echo "*** or that you have moved SDL since it was installed. In the latter case, you"
  153.           echo "*** may want to edit the sdl-config script: $SDL_CONFIG"
  154. fi
  155. rm -rf conftest.dSYM
  156. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  157.       conftest$ac_exeext conftest.$ac_ext
  158.           CFLAGS="$ac_save_CFLAGS"
  159.           CXXFLAGS="$ac_save_CXXFLAGS"
  160.           LIBS="$ac_save_LIBS"
  161.        fi
  162.      fi
  163.      SDL_CFLAGS=""
  164.      SDL_LIBS=""
  165.      { { $as_echo "$as_me:$LINENO: error: *** SDL version $SDL_VERSION not found!" >&5
  166. $as_echo "$as_me: error: *** SDL version $SDL_VERSION not found!" >&2;}
  167.    { (exit 1); exit 1; }; }
  168.   fi
  169.   rm -f conf.sdltest
  170. EXTRA_CFLAGS="$EXTRA_CFLAGS $SDL_CFLAGS"
  171. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SDL_LIBS"
  172. { $as_echo "$as_me:$LINENO: checking for pow in -lm" >&5
  173. $as_echo_n "checking for pow in -lm... " >&6; }
  174. if test "${ac_cv_lib_m_pow+set}" = set; then
  175.   $as_echo_n "(cached) " >&6
  176. else
  177.   ac_check_lib_save_LIBS=$LIBS
  178. LIBS="-lm  $LIBS"
  179. cat >conftest.$ac_ext <<_ACEOF
  180. /* confdefs.h.  */
  181. _ACEOF
  182. cat confdefs.h >>conftest.$ac_ext
  183. cat >>conftest.$ac_ext <<_ACEOF
  184. /* end confdefs.h.  */
  185. /* Override any GCC internal prototype to avoid an error.
  186.    Use char because int might match the return type of a GCC
  187.    builtin and then its argument prototype would still apply.  */
  188. #ifdef __cplusplus
  189. extern "C"
  190. #endif
  191. char pow ();
  192. int
  193. main ()
  194. {
  195. return pow ();
  196.   ;
  197.   return 0;
  198. }
  199. _ACEOF
  200. rm -f conftest.$ac_objext conftest$ac_exeext
  201. if { (ac_try="$ac_link"
  202. case "(($ac_try" in
  203.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  204.   *) ac_try_echo=$ac_try;;
  205. esac
  206. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  207. $as_echo "$ac_try_echo") >&5
  208.   (eval "$ac_link") 2>conftest.er1
  209.   ac_status=$?
  210.   grep -v '^ *+' conftest.er1 >conftest.err
  211.   rm -f conftest.er1
  212.   cat conftest.err >&5
  213.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  214.   (exit $ac_status); } && {
  215.  test -z "$ac_c_werror_flag" ||
  216.  test ! -s conftest.err
  217.        } && test -s conftest$ac_exeext && {
  218.  test "$cross_compiling" = yes ||
  219.  $as_test_x conftest$ac_exeext
  220.        }; then
  221.   ac_cv_lib_m_pow=yes
  222. else
  223.   $as_echo "$as_me: failed program was:" >&5
  224. sed 's/^/| /' conftest.$ac_ext >&5
  225. ac_cv_lib_m_pow=no
  226. fi
  227. rm -rf conftest.dSYM
  228. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  229.       conftest$ac_exeext conftest.$ac_ext
  230. LIBS=$ac_check_lib_save_LIBS
  231. fi
  232. { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_m_pow" >&5
  233. $as_echo "$ac_cv_lib_m_pow" >&6; }
  234. if test "x$ac_cv_lib_m_pow" = x""yes; then
  235.   LIBM="-lm"
  236. fi
  237. # Check whether --enable-music-cmd was given.
  238. if test "${enable_music_cmd+set}" = set; then
  239.   enableval=$enable_music_cmd;
  240. else
  241.   enable_music_cmd=detect
  242. fi
  243. if test "x$enable_music_cmd" != xno; then
  244. for ac_func in fork vfork
  245. do
  246. as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
  247. { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
  248. $as_echo_n "checking for $ac_func... " >&6; }
  249. if { as_var=$as_ac_var; eval "test "${$as_var+set}" = set"; }; then
  250.   $as_echo_n "(cached) " >&6
  251. else
  252.   cat >conftest.$ac_ext <<_ACEOF
  253. /* confdefs.h.  */
  254. _ACEOF
  255. cat confdefs.h >>conftest.$ac_ext
  256. cat >>conftest.$ac_ext <<_ACEOF
  257. /* end confdefs.h.  */
  258. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  259.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  260. #define $ac_func innocuous_$ac_func
  261. /* System header to define __stub macros and hopefully few prototypes,
  262.     which can conflict with char $ac_func (); below.
  263.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  264.     <limits.h> exists even on freestanding compilers.  */
  265. #ifdef __STDC__
  266. # include <limits.h>
  267. #else
  268. # include <assert.h>
  269. #endif
  270. #undef $ac_func
  271. /* Override any GCC internal prototype to avoid an error.
  272.    Use char because int might match the return type of a GCC
  273.    builtin and then its argument prototype would still apply.  */
  274. #ifdef __cplusplus
  275. extern "C"
  276. #endif
  277. char $ac_func ();
  278. /* The GNU C library defines this for functions which it implements
  279.     to always fail with ENOSYS.  Some functions are actually named
  280.     something starting with __ and the normal name is an alias.  */
  281. #if defined __stub_$ac_func || defined __stub___$ac_func
  282. choke me
  283. #endif
  284. int
  285. main ()
  286. {
  287. return $ac_func ();
  288.   ;
  289.   return 0;
  290. }
  291. _ACEOF
  292. rm -f conftest.$ac_objext conftest$ac_exeext
  293. if { (ac_try="$ac_link"
  294. case "(($ac_try" in
  295.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  296.   *) ac_try_echo=$ac_try;;
  297. esac
  298. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  299. $as_echo "$ac_try_echo") >&5
  300.   (eval "$ac_link") 2>conftest.er1
  301.   ac_status=$?
  302.   grep -v '^ *+' conftest.er1 >conftest.err
  303.   rm -f conftest.er1
  304.   cat conftest.err >&5
  305.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  306.   (exit $ac_status); } && {
  307.  test -z "$ac_c_werror_flag" ||
  308.  test ! -s conftest.err
  309.        } && test -s conftest$ac_exeext && {
  310.  test "$cross_compiling" = yes ||
  311.  $as_test_x conftest$ac_exeext
  312.        }; then
  313.   eval "$as_ac_var=yes"
  314. else
  315.   $as_echo "$as_me: failed program was:" >&5
  316. sed 's/^/| /' conftest.$ac_ext >&5
  317. eval "$as_ac_var=no"
  318. fi
  319. rm -rf conftest.dSYM
  320. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  321.       conftest$ac_exeext conftest.$ac_ext
  322. fi
  323. ac_res=`eval 'as_val=${'$as_ac_var'}
  324.  $as_echo "$as_val"'`
  325.        { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
  326. $as_echo "$ac_res" >&6; }
  327. as_val=`eval 'as_val=${'$as_ac_var'}
  328.  $as_echo "$as_val"'`
  329.    if test "x$as_val" = x""yes; then
  330.   cat >>confdefs.h <<_ACEOF
  331. #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
  332. _ACEOF
  333. fi
  334. done
  335.     if test "x$ac_cv_func_fork" = "xyes"; then
  336.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_FORK"
  337.     elif test "x$ac_cv_func_vfork" = "xyes"; then
  338.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_VFORK"
  339.     elif test "x$enable_music_cmd" = "xyes"; then
  340.         { { $as_echo "$as_me:$LINENO: error: external music player not available on your platform" >&5
  341. $as_echo "$as_me: error: external music player not available on your platform" >&2;}
  342.    { (exit 1); exit 1; }; }
  343.     else
  344.         enable_music_cmd=no
  345.     fi
  346.     if test "x$enable_music_cmd" != xno; then
  347.         SOURCES="$SOURCES $srcdir/music_cmd.c"
  348.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DCMD_MUSIC"
  349.     fi
  350. fi
  351. # Check whether --enable-music-wave was given.
  352. if test "${enable_music_wave+set}" = set; then
  353.   enableval=$enable_music_wave;
  354. else
  355.   enable_music_wave=yes
  356. fi
  357. if test x$enable_music_wave = xyes; then
  358.     SOURCES="$SOURCES $srcdir/wavestream.c"
  359.     EXTRA_CFLAGS="$EXTRA_CFLAGS -DWAV_MUSIC"
  360. fi
  361. # Check whether --enable-music-mod was given.
  362. if test "${enable_music_mod+set}" = set; then
  363.   enableval=$enable_music_mod;
  364. else
  365.   enable_music_mod=yes
  366. fi
  367. # Check whether --enable-music-mod-shared was given.
  368. if test "${enable_music_mod_shared+set}" = set; then
  369.   enableval=$enable_music_mod_shared;
  370. else
  371.   enable_music_mod_shared=yes
  372. fi
  373. if test x$enable_music_mod = xyes; then
  374.     have_libmikmod=no
  375.     libmikmod_maj=3
  376.     libmikmod_min=1
  377.     libmikmod_rev=10
  378.     libmikmod_ver="$libmikmod_maj.$libmikmod_min.$libmikmod_rev"
  379.     # Extract the first word of "libmikmod-config", so it can be a program name with args.
  380. set dummy libmikmod-config; ac_word=$2
  381. { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
  382. $as_echo_n "checking for $ac_word... " >&6; }
  383. if test "${ac_cv_path_LIBMIKMOD_CONFIG+set}" = set; then
  384.   $as_echo_n "(cached) " >&6
  385. else
  386.   case $LIBMIKMOD_CONFIG in
  387.   [\/]* | ?:[\/]*)
  388.   ac_cv_path_LIBMIKMOD_CONFIG="$LIBMIKMOD_CONFIG" # Let the user override the test with a path.
  389.   ;;
  390.   *)
  391.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  392. for as_dir in $PATH
  393. do
  394.   IFS=$as_save_IFS
  395.   test -z "$as_dir" && as_dir=.
  396.   for ac_exec_ext in '' $ac_executable_extensions; do
  397.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  398.     ac_cv_path_LIBMIKMOD_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  399.     $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  400.     break 2
  401.   fi
  402. done
  403. done
  404. IFS=$as_save_IFS
  405.   test -z "$ac_cv_path_LIBMIKMOD_CONFIG" && ac_cv_path_LIBMIKMOD_CONFIG="no"
  406.   ;;
  407. esac
  408. fi
  409. LIBMIKMOD_CONFIG=$ac_cv_path_LIBMIKMOD_CONFIG
  410. if test -n "$LIBMIKMOD_CONFIG"; then
  411.   { $as_echo "$as_me:$LINENO: result: $LIBMIKMOD_CONFIG" >&5
  412. $as_echo "$LIBMIKMOD_CONFIG" >&6; }
  413. else
  414.   { $as_echo "$as_me:$LINENO: result: no" >&5
  415. $as_echo "no" >&6; }
  416. fi
  417.     if test "$LIBMIKMOD_CONFIG" != "no" ; then
  418.         CFLAGS_SAVED="$CFLAGS"
  419.         LIBS_SAVED="$LIBS"
  420.         CFLAGS="$CFLAGS -DLIBMIKMOD_MUSIC `$LIBMIKMOD_CONFIG --cflags`"
  421.         LIBS="$LIBS `$LIBMIKMOD_CONFIG --libs`"
  422.         have_libmikmod=yes
  423.         { $as_echo "$as_me:$LINENO: checking for libmikmod - version >= $libmikmod_ver" >&5
  424. $as_echo_n "checking for libmikmod - version >= $libmikmod_ver... " >&6; }
  425.         if test "$cross_compiling" = yes; then
  426.   echo $ac_n "cross compiling; assumed OK... $ac_c"
  427. else
  428.   cat >conftest.$ac_ext <<_ACEOF
  429. /* confdefs.h.  */
  430. _ACEOF
  431. cat confdefs.h >>conftest.$ac_ext
  432. cat >>conftest.$ac_ext <<_ACEOF
  433. /* end confdefs.h.  */
  434. #include "mikmod.h"
  435. #include "stdio.h"
  436. int main(int argc, char **argv)
  437. {
  438. long maj=$libmikmod_maj,min=$libmikmod_min,rev=$libmikmod_rev,ver=MikMod_GetVersion();
  439. /*printf("(%d.%d.%d) ",ver>>16,(ver>>8)&0xff,ver&0xff);*/
  440. if(ver>=((maj<<16)|(min<<8)|(rev))) {
  441.     printf("yesn");
  442.     return 0;
  443. }
  444. printf("non*** libmikmod is older than %d.%d.%d, not using.n",maj,min,rev);
  445. return 1;
  446. }
  447. _ACEOF
  448. rm -f conftest$ac_exeext
  449. if { (ac_try="$ac_link"
  450. case "(($ac_try" in
  451.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  452.   *) ac_try_echo=$ac_try;;
  453. esac
  454. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  455. $as_echo "$ac_try_echo") >&5
  456.   (eval "$ac_link") 2>&5
  457.   ac_status=$?
  458.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  459.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  460.   { (case "(($ac_try" in
  461.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  462.   *) ac_try_echo=$ac_try;;
  463. esac
  464. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  465. $as_echo "$ac_try_echo") >&5
  466.   (eval "$ac_try") 2>&5
  467.   ac_status=$?
  468.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  469.   (exit $ac_status); }; }; then
  470.   :
  471. else
  472.   $as_echo "$as_me: program exited with status $ac_status" >&5
  473. $as_echo "$as_me: failed program was:" >&5
  474. sed 's/^/| /' conftest.$ac_ext >&5
  475. ( exit $ac_status )
  476. have_libmikmod=no; CFLAGS="$CFLAGS_SAVED"; LIBS="$LIBS_SAVED"
  477. fi
  478. rm -rf conftest.dSYM
  479. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  480. fi
  481.     fi
  482.     if test x$have_libmikmod = xyes; then
  483.         case "$host" in
  484.             *-*-darwin*)
  485.                 mikmod_lib=`find_lib libmikmod.dylib`
  486.                 ;;
  487.             *-*-cygwin* | *-*-mingw32*)
  488.                 mikmod_lib=`find_lib "mikmod*.dll"`
  489.                 ;;
  490.             *)
  491.                 mikmod_lib=`find_lib "libmikmod*.so.[0-9]"`
  492.                 if test x$mikmod_lib = x; then
  493.                     mikmod_lib=`find_lib "libmikmod*.so.[0-9]*"`
  494.                 fi
  495.                 ;;
  496.         esac
  497.         SOURCES="$SOURCES $srcdir/*_mod.c"
  498.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DMOD_MUSIC `$LIBMIKMOD_CONFIG --cflags`"
  499.         if test x$enable_music_mod_shared = xyes && test x$mikmod_lib != x; then
  500.             echo "-- dynamic libmikmod -> $mikmod_lib"
  501.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DMOD_DYNAMIC=\"$mikmod_lib\""
  502.         else
  503.             EXTRA_LDFLAGS="$EXTRA_LDFLAGS `$LIBMIKMOD_CONFIG --libs`"
  504.         fi
  505.     else
  506.         { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find MikMod library (http://mikmod.raphnet.net/)" >&5
  507. $as_echo "$as_me: WARNING: *** Unable to find MikMod library (http://mikmod.raphnet.net/)" >&2;}
  508.         { $as_echo "$as_me:$LINENO: WARNING: MOD support disabled" >&5
  509. $as_echo "$as_me: WARNING: MOD support disabled" >&2;}
  510.     fi
  511. fi
  512. # Check whether --enable-music-midi was given.
  513. if test "${enable_music_midi+set}" = set; then
  514.   enableval=$enable_music_midi;
  515. else
  516.   enable_music_midi=yes
  517. fi
  518. if test x$enable_music_midi = xyes; then
  519.     EXTRA_CFLAGS="$EXTRA_CFLAGS -DMID_MUSIC"
  520.     # Check whether --enable-music-timidity-midi was given.
  521. if test "${enable_music_timidity_midi+set}" = set; then
  522.   enableval=$enable_music_timidity_midi;
  523. else
  524.   enable_music_timidity_midi=yes
  525. fi
  526.     if test x$enable_music_timidity_midi = xyes; then
  527.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_TIMIDITY_MIDI -I$(srcdir)/timidity"
  528.         SOURCES="$SOURCES $srcdir/timidity/*.c"
  529.     fi
  530.     # Check whether --enable-music-native-midi was given.
  531. if test "${enable_music_native_midi+set}" = set; then
  532.   enableval=$enable_music_native_midi;
  533. else
  534.   enable_music_native_midi=yes
  535. fi
  536.     if test x$enable_music_native_midi = xyes; then
  537.         use_music_native_midi=no
  538.         case "$host" in
  539.             *-*-cygwin* | *-*-mingw32*)
  540.                 use_music_native_midi=yes
  541.                 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lwinmm"
  542.                 ;;
  543.             *-*-darwin*)
  544.                 use_music_native_midi=yes
  545.                 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit -Wl,-framework,CoreServices"
  546.                 ;;
  547.         esac
  548.         if test x$use_music_native_midi = xyes; then
  549.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_NATIVE_MIDI -I$(srcdir)/native_midi"
  550.             SOURCES="$SOURCES $srcdir/native_midi/*.c"
  551.         fi
  552.     fi
  553.     # Check whether --enable-music-native-midi-gpl was given.
  554. if test "${enable_music_native_midi_gpl+set}" = set; then
  555.   enableval=$enable_music_native_midi_gpl;
  556. else
  557.   enable_music_native_midi_gpl=no
  558. fi
  559.     if test x$enable_music_native_midi_gpl = xyes; then
  560.         use_music_native_midi_gpl=no
  561.         case "$host" in
  562.             *-*-linux* | *-*-freebsd*)
  563.                 use_music_native_midi_gpl=yes
  564.                 ;;
  565.         esac
  566.         if test x$use_music_native_midi_gpl = xyes; then
  567.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DUSE_NATIVE_MIDI -I$(srcdir)/native_midi"
  568.             SOURCES="$SOURCES $srcdir/native_midi_gpl/*.c"
  569.         fi
  570.     fi
  571. fi
  572. # Check whether --enable-music-ogg was given.
  573. if test "${enable_music_ogg+set}" = set; then
  574.   enableval=$enable_music_ogg;
  575. else
  576.   enable_music_ogg=yes
  577. fi
  578. # Check whether --enable-music-ogg-tremor was given.
  579. if test "${enable_music_ogg_tremor+set}" = set; then
  580.   enableval=$enable_music_ogg_tremor;
  581. else
  582.   enable_music_ogg_tremor=no
  583. fi
  584. # Check whether --enable-music-ogg-shared was given.
  585. if test "${enable_music_ogg_shared+set}" = set; then
  586.   enableval=$enable_music_ogg_shared;
  587. else
  588.   enable_music_ogg_shared=yes
  589. fi
  590. if test x$enable_music_ogg = xyes; then
  591.     if test x$enable_music_ogg_tremor = xyes; then
  592.         if test "${ac_cv_header_tremor_ivorbisfile_h+set}" = set; then
  593.   { $as_echo "$as_me:$LINENO: checking for tremor/ivorbisfile.h" >&5
  594. $as_echo_n "checking for tremor/ivorbisfile.h... " >&6; }
  595. if test "${ac_cv_header_tremor_ivorbisfile_h+set}" = set; then
  596.   $as_echo_n "(cached) " >&6
  597. fi
  598. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_tremor_ivorbisfile_h" >&5
  599. $as_echo "$ac_cv_header_tremor_ivorbisfile_h" >&6; }
  600. else
  601.   # Is the header compilable?
  602. { $as_echo "$as_me:$LINENO: checking tremor/ivorbisfile.h usability" >&5
  603. $as_echo_n "checking tremor/ivorbisfile.h usability... " >&6; }
  604. cat >conftest.$ac_ext <<_ACEOF
  605. /* confdefs.h.  */
  606. _ACEOF
  607. cat confdefs.h >>conftest.$ac_ext
  608. cat >>conftest.$ac_ext <<_ACEOF
  609. /* end confdefs.h.  */
  610. $ac_includes_default
  611. #include <tremor/ivorbisfile.h>
  612. _ACEOF
  613. rm -f conftest.$ac_objext
  614. if { (ac_try="$ac_compile"
  615. case "(($ac_try" in
  616.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  617.   *) ac_try_echo=$ac_try;;
  618. esac
  619. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  620. $as_echo "$ac_try_echo") >&5
  621.   (eval "$ac_compile") 2>conftest.er1
  622.   ac_status=$?
  623.   grep -v '^ *+' conftest.er1 >conftest.err
  624.   rm -f conftest.er1
  625.   cat conftest.err >&5
  626.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  627.   (exit $ac_status); } && {
  628.  test -z "$ac_c_werror_flag" ||
  629.  test ! -s conftest.err
  630.        } && test -s conftest.$ac_objext; then
  631.   ac_header_compiler=yes
  632. else
  633.   $as_echo "$as_me: failed program was:" >&5
  634. sed 's/^/| /' conftest.$ac_ext >&5
  635. ac_header_compiler=no
  636. fi
  637. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  638. { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  639. $as_echo "$ac_header_compiler" >&6; }
  640. # Is the header present?
  641. { $as_echo "$as_me:$LINENO: checking tremor/ivorbisfile.h presence" >&5
  642. $as_echo_n "checking tremor/ivorbisfile.h presence... " >&6; }
  643. cat >conftest.$ac_ext <<_ACEOF
  644. /* confdefs.h.  */
  645. _ACEOF
  646. cat confdefs.h >>conftest.$ac_ext
  647. cat >>conftest.$ac_ext <<_ACEOF
  648. /* end confdefs.h.  */
  649. #include <tremor/ivorbisfile.h>
  650. _ACEOF
  651. if { (ac_try="$ac_cpp conftest.$ac_ext"
  652. case "(($ac_try" in
  653.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  654.   *) ac_try_echo=$ac_try;;
  655. esac
  656. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  657. $as_echo "$ac_try_echo") >&5
  658.   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  659.   ac_status=$?
  660.   grep -v '^ *+' conftest.er1 >conftest.err
  661.   rm -f conftest.er1
  662.   cat conftest.err >&5
  663.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  664.   (exit $ac_status); } >/dev/null && {
  665.  test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  666.  test ! -s conftest.err
  667.        }; then
  668.   ac_header_preproc=yes
  669. else
  670.   $as_echo "$as_me: failed program was:" >&5
  671. sed 's/^/| /' conftest.$ac_ext >&5
  672.   ac_header_preproc=no
  673. fi
  674. rm -f conftest.err conftest.$ac_ext
  675. { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  676. $as_echo "$ac_header_preproc" >&6; }
  677. # So?  What about this header?
  678. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  679.   yes:no: )
  680.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: accepted by the compiler, rejected by the preprocessor!" >&5
  681. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  682.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: proceeding with the compiler's result" >&5
  683. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: proceeding with the compiler's result" >&2;}
  684.     ac_header_preproc=yes
  685.     ;;
  686.   no:yes:* )
  687.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: present but cannot be compiled" >&5
  688. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: present but cannot be compiled" >&2;}
  689.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h:     check for missing prerequisite headers?" >&5
  690. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h:     check for missing prerequisite headers?" >&2;}
  691.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: see the Autoconf documentation" >&5
  692. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: see the Autoconf documentation" >&2;}
  693.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h:     section "Present But Cannot Be Compiled"" >&5
  694. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h:     section "Present But Cannot Be Compiled"" >&2;}
  695.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: proceeding with the preprocessor's result" >&5
  696. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: proceeding with the preprocessor's result" >&2;}
  697.     { $as_echo "$as_me:$LINENO: WARNING: tremor/ivorbisfile.h: in the future, the compiler will take precedence" >&5
  698. $as_echo "$as_me: WARNING: tremor/ivorbisfile.h: in the future, the compiler will take precedence" >&2;}
  699.     ;;
  700. esac
  701. { $as_echo "$as_me:$LINENO: checking for tremor/ivorbisfile.h" >&5
  702. $as_echo_n "checking for tremor/ivorbisfile.h... " >&6; }
  703. if test "${ac_cv_header_tremor_ivorbisfile_h+set}" = set; then
  704.   $as_echo_n "(cached) " >&6
  705. else
  706.   ac_cv_header_tremor_ivorbisfile_h=$ac_header_preproc
  707. fi
  708. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_tremor_ivorbisfile_h" >&5
  709. $as_echo "$ac_cv_header_tremor_ivorbisfile_h" >&6; }
  710. fi
  711. if test "x$ac_cv_header_tremor_ivorbisfile_h" = x""yes; then
  712.   have_tremor_hdr=yes
  713. fi
  714.         { $as_echo "$as_me:$LINENO: checking for ov_open_callbacks in -lvorbisidec" >&5
  715. $as_echo_n "checking for ov_open_callbacks in -lvorbisidec... " >&6; }
  716. if test "${ac_cv_lib_vorbisidec_ov_open_callbacks+set}" = set; then
  717.   $as_echo_n "(cached) " >&6
  718. else
  719.   ac_check_lib_save_LIBS=$LIBS
  720. LIBS="-lvorbisidec  $LIBS"
  721. cat >conftest.$ac_ext <<_ACEOF
  722. /* confdefs.h.  */
  723. _ACEOF
  724. cat confdefs.h >>conftest.$ac_ext
  725. cat >>conftest.$ac_ext <<_ACEOF
  726. /* end confdefs.h.  */
  727. /* Override any GCC internal prototype to avoid an error.
  728.    Use char because int might match the return type of a GCC
  729.    builtin and then its argument prototype would still apply.  */
  730. #ifdef __cplusplus
  731. extern "C"
  732. #endif
  733. char ov_open_callbacks ();
  734. int
  735. main ()
  736. {
  737. return ov_open_callbacks ();
  738.   ;
  739.   return 0;
  740. }
  741. _ACEOF
  742. rm -f conftest.$ac_objext conftest$ac_exeext
  743. if { (ac_try="$ac_link"
  744. case "(($ac_try" in
  745.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  746.   *) ac_try_echo=$ac_try;;
  747. esac
  748. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  749. $as_echo "$ac_try_echo") >&5
  750.   (eval "$ac_link") 2>conftest.er1
  751.   ac_status=$?
  752.   grep -v '^ *+' conftest.er1 >conftest.err
  753.   rm -f conftest.er1
  754.   cat conftest.err >&5
  755.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  756.   (exit $ac_status); } && {
  757.  test -z "$ac_c_werror_flag" ||
  758.  test ! -s conftest.err
  759.        } && test -s conftest$ac_exeext && {
  760.  test "$cross_compiling" = yes ||
  761.  $as_test_x conftest$ac_exeext
  762.        }; then
  763.   ac_cv_lib_vorbisidec_ov_open_callbacks=yes
  764. else
  765.   $as_echo "$as_me: failed program was:" >&5
  766. sed 's/^/| /' conftest.$ac_ext >&5
  767. ac_cv_lib_vorbisidec_ov_open_callbacks=no
  768. fi
  769. rm -rf conftest.dSYM
  770. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  771.       conftest$ac_exeext conftest.$ac_ext
  772. LIBS=$ac_check_lib_save_LIBS
  773. fi
  774. { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_vorbisidec_ov_open_callbacks" >&5
  775. $as_echo "$ac_cv_lib_vorbisidec_ov_open_callbacks" >&6; }
  776. if test "x$ac_cv_lib_vorbisidec_ov_open_callbacks" = x""yes; then
  777.   have_tremor_lib=yes
  778. fi
  779.         if test x$have_tremor_hdr = xyes -a x$have_tremor_lib = xyes; then
  780.             case "$host" in
  781.                 *-*-darwin*)
  782.                     ogg_lib=`find_lib libvorbisidec.dylib`
  783.                     if test x$ogg_lib = x; then
  784.                         ogg_lib=`find_lib libvorbisidec.[0-9]`
  785.                     fi
  786.                     if test x$ogg_lib = x; then
  787.                         ogg_lib=`find_lib libvorbisidec.[0-9]*`
  788.                     fi
  789.                     ;;
  790.                 *-*-cygwin* | *-*-mingw32*)
  791.                     ogg_lib=`find_lib "vorbisidec*.dll"`
  792.                     ;;
  793.                 *)
  794.                     ogg_lib=`find_lib "libvorbisidec.so.[0-9]"`
  795.                     if test x$ogg_lib = x; then
  796.                         ogg_lib=`find_lib "libvorbisidec.so.[0-9]*"`
  797.                     fi
  798.                     ;;
  799.             esac
  800.             SOURCES="$SOURCES $srcdir/*_ogg.c"
  801.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_MUSIC -DOGG_USE_TREMOR"
  802.             if test x$enable_music_ogg_shared = xyes && test x$ogg_lib != x; then
  803.                 echo "-- dynamic libvorbisidec -> $ogg_lib"
  804.                 EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_DYNAMIC=\"$ogg_lib\""
  805.             else
  806.                 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvorbisidec -lvorbis -logg $LIBM"
  807.             fi
  808.         else
  809.             { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/)" >&5
  810. $as_echo "$as_me: WARNING: *** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/)" >&2;}
  811.             { $as_echo "$as_me:$LINENO: WARNING: Ogg Vorbis support disabled" >&5
  812. $as_echo "$as_me: WARNING: Ogg Vorbis support disabled" >&2;}
  813.         fi
  814.     else
  815.         if test "${ac_cv_header_vorbis_vorbisfile_h+set}" = set; then
  816.   { $as_echo "$as_me:$LINENO: checking for vorbis/vorbisfile.h" >&5
  817. $as_echo_n "checking for vorbis/vorbisfile.h... " >&6; }
  818. if test "${ac_cv_header_vorbis_vorbisfile_h+set}" = set; then
  819.   $as_echo_n "(cached) " >&6
  820. fi
  821. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_vorbis_vorbisfile_h" >&5
  822. $as_echo "$ac_cv_header_vorbis_vorbisfile_h" >&6; }
  823. else
  824.   # Is the header compilable?
  825. { $as_echo "$as_me:$LINENO: checking vorbis/vorbisfile.h usability" >&5
  826. $as_echo_n "checking vorbis/vorbisfile.h usability... " >&6; }
  827. cat >conftest.$ac_ext <<_ACEOF
  828. /* confdefs.h.  */
  829. _ACEOF
  830. cat confdefs.h >>conftest.$ac_ext
  831. cat >>conftest.$ac_ext <<_ACEOF
  832. /* end confdefs.h.  */
  833. $ac_includes_default
  834. #include <vorbis/vorbisfile.h>
  835. _ACEOF
  836. rm -f conftest.$ac_objext
  837. if { (ac_try="$ac_compile"
  838. case "(($ac_try" in
  839.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  840.   *) ac_try_echo=$ac_try;;
  841. esac
  842. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  843. $as_echo "$ac_try_echo") >&5
  844.   (eval "$ac_compile") 2>conftest.er1
  845.   ac_status=$?
  846.   grep -v '^ *+' conftest.er1 >conftest.err
  847.   rm -f conftest.er1
  848.   cat conftest.err >&5
  849.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  850.   (exit $ac_status); } && {
  851.  test -z "$ac_c_werror_flag" ||
  852.  test ! -s conftest.err
  853.        } && test -s conftest.$ac_objext; then
  854.   ac_header_compiler=yes
  855. else
  856.   $as_echo "$as_me: failed program was:" >&5
  857. sed 's/^/| /' conftest.$ac_ext >&5
  858. ac_header_compiler=no
  859. fi
  860. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  861. { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  862. $as_echo "$ac_header_compiler" >&6; }
  863. # Is the header present?
  864. { $as_echo "$as_me:$LINENO: checking vorbis/vorbisfile.h presence" >&5
  865. $as_echo_n "checking vorbis/vorbisfile.h presence... " >&6; }
  866. cat >conftest.$ac_ext <<_ACEOF
  867. /* confdefs.h.  */
  868. _ACEOF
  869. cat confdefs.h >>conftest.$ac_ext
  870. cat >>conftest.$ac_ext <<_ACEOF
  871. /* end confdefs.h.  */
  872. #include <vorbis/vorbisfile.h>
  873. _ACEOF
  874. if { (ac_try="$ac_cpp conftest.$ac_ext"
  875. case "(($ac_try" in
  876.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  877.   *) ac_try_echo=$ac_try;;
  878. esac
  879. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  880. $as_echo "$ac_try_echo") >&5
  881.   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  882.   ac_status=$?
  883.   grep -v '^ *+' conftest.er1 >conftest.err
  884.   rm -f conftest.er1
  885.   cat conftest.err >&5
  886.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  887.   (exit $ac_status); } >/dev/null && {
  888.  test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  889.  test ! -s conftest.err
  890.        }; then
  891.   ac_header_preproc=yes
  892. else
  893.   $as_echo "$as_me: failed program was:" >&5
  894. sed 's/^/| /' conftest.$ac_ext >&5
  895.   ac_header_preproc=no
  896. fi
  897. rm -f conftest.err conftest.$ac_ext
  898. { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  899. $as_echo "$ac_header_preproc" >&6; }
  900. # So?  What about this header?
  901. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  902.   yes:no: )
  903.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: accepted by the compiler, rejected by the preprocessor!" >&5
  904. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  905.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: proceeding with the compiler's result" >&5
  906. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: proceeding with the compiler's result" >&2;}
  907.     ac_header_preproc=yes
  908.     ;;
  909.   no:yes:* )
  910.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: present but cannot be compiled" >&5
  911. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: present but cannot be compiled" >&2;}
  912.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h:     check for missing prerequisite headers?" >&5
  913. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h:     check for missing prerequisite headers?" >&2;}
  914.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: see the Autoconf documentation" >&5
  915. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: see the Autoconf documentation" >&2;}
  916.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h:     section "Present But Cannot Be Compiled"" >&5
  917. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h:     section "Present But Cannot Be Compiled"" >&2;}
  918.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: proceeding with the preprocessor's result" >&5
  919. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: proceeding with the preprocessor's result" >&2;}
  920.     { $as_echo "$as_me:$LINENO: WARNING: vorbis/vorbisfile.h: in the future, the compiler will take precedence" >&5
  921. $as_echo "$as_me: WARNING: vorbis/vorbisfile.h: in the future, the compiler will take precedence" >&2;}
  922.     ;;
  923. esac
  924. { $as_echo "$as_me:$LINENO: checking for vorbis/vorbisfile.h" >&5
  925. $as_echo_n "checking for vorbis/vorbisfile.h... " >&6; }
  926. if test "${ac_cv_header_vorbis_vorbisfile_h+set}" = set; then
  927.   $as_echo_n "(cached) " >&6
  928. else
  929.   ac_cv_header_vorbis_vorbisfile_h=$ac_header_preproc
  930. fi
  931. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_vorbis_vorbisfile_h" >&5
  932. $as_echo "$ac_cv_header_vorbis_vorbisfile_h" >&6; }
  933. fi
  934. if test "x$ac_cv_header_vorbis_vorbisfile_h" = x""yes; then
  935.   have_ogg_hdr=yes
  936. fi
  937.         { $as_echo "$as_me:$LINENO: checking for ov_open_callbacks in -lvorbisfile" >&5
  938. $as_echo_n "checking for ov_open_callbacks in -lvorbisfile... " >&6; }
  939. if test "${ac_cv_lib_vorbisfile_ov_open_callbacks+set}" = set; then
  940.   $as_echo_n "(cached) " >&6
  941. else
  942.   ac_check_lib_save_LIBS=$LIBS
  943. LIBS="-lvorbisfile  $LIBS"
  944. cat >conftest.$ac_ext <<_ACEOF
  945. /* confdefs.h.  */
  946. _ACEOF
  947. cat confdefs.h >>conftest.$ac_ext
  948. cat >>conftest.$ac_ext <<_ACEOF
  949. /* end confdefs.h.  */
  950. /* Override any GCC internal prototype to avoid an error.
  951.    Use char because int might match the return type of a GCC
  952.    builtin and then its argument prototype would still apply.  */
  953. #ifdef __cplusplus
  954. extern "C"
  955. #endif
  956. char ov_open_callbacks ();
  957. int
  958. main ()
  959. {
  960. return ov_open_callbacks ();
  961.   ;
  962.   return 0;
  963. }
  964. _ACEOF
  965. rm -f conftest.$ac_objext conftest$ac_exeext
  966. if { (ac_try="$ac_link"
  967. case "(($ac_try" in
  968.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  969.   *) ac_try_echo=$ac_try;;
  970. esac
  971. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  972. $as_echo "$ac_try_echo") >&5
  973.   (eval "$ac_link") 2>conftest.er1
  974.   ac_status=$?
  975.   grep -v '^ *+' conftest.er1 >conftest.err
  976.   rm -f conftest.er1
  977.   cat conftest.err >&5
  978.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  979.   (exit $ac_status); } && {
  980.  test -z "$ac_c_werror_flag" ||
  981.  test ! -s conftest.err
  982.        } && test -s conftest$ac_exeext && {
  983.  test "$cross_compiling" = yes ||
  984.  $as_test_x conftest$ac_exeext
  985.        }; then
  986.   ac_cv_lib_vorbisfile_ov_open_callbacks=yes
  987. else
  988.   $as_echo "$as_me: failed program was:" >&5
  989. sed 's/^/| /' conftest.$ac_ext >&5
  990. ac_cv_lib_vorbisfile_ov_open_callbacks=no
  991. fi
  992. rm -rf conftest.dSYM
  993. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  994.       conftest$ac_exeext conftest.$ac_ext
  995. LIBS=$ac_check_lib_save_LIBS
  996. fi
  997. { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_vorbisfile_ov_open_callbacks" >&5
  998. $as_echo "$ac_cv_lib_vorbisfile_ov_open_callbacks" >&6; }
  999. if test "x$ac_cv_lib_vorbisfile_ov_open_callbacks" = x""yes; then
  1000.   have_ogg_lib=yes
  1001. fi
  1002.         if test x$have_ogg_hdr = xyes -a x$have_ogg_lib = xyes; then
  1003.             case "$host" in
  1004.                 *-*-darwin*)
  1005.                     ogg_lib=`find_lib libvorbisfile.dylib`
  1006.                     ;;
  1007.                 *-*-cygwin* | *-*-mingw32*)
  1008.                     ogg_lib=`find_lib "libvorbisfile*.dll"`
  1009.                     ;;
  1010.                 *)
  1011.                     ogg_lib=`find_lib "libvorbisfile.so.[0-9]"`
  1012.                     if test x$ogg_lib = x; then
  1013.                         ogg_lib=`find_lib "libvorbisfile.so.[0-9]*"`
  1014.                     fi
  1015.                     ;;
  1016.             esac
  1017.             SOURCES="$SOURCES $srcdir/*_ogg.c"
  1018.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_MUSIC"
  1019.             if test x$enable_music_ogg_shared = xyes && test x$ogg_lib != x; then
  1020.                 echo "-- dynamic libvorbisfile -> $ogg_lib"
  1021.                 EXTRA_CFLAGS="$EXTRA_CFLAGS -DOGG_DYNAMIC=\"$ogg_lib\""
  1022.             else
  1023.                 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvorbisfile -lvorbis -logg $LIBM"
  1024.             fi
  1025.         else
  1026.             { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find Ogg Vorbis library (http://www.xiph.org/)" >&5
  1027. $as_echo "$as_me: WARNING: *** Unable to find Ogg Vorbis library (http://www.xiph.org/)" >&2;}
  1028.             { $as_echo "$as_me:$LINENO: WARNING: Ogg Vorbis support disabled" >&5
  1029. $as_echo "$as_me: WARNING: Ogg Vorbis support disabled" >&2;}
  1030.         fi
  1031.     fi
  1032. fi
  1033. libflac_ver=8
  1034. # Check whether --enable-music-flac was given.
  1035. if test "${enable_music_flac+set}" = set; then
  1036.   enableval=$enable_music_flac;
  1037. else
  1038.   enable_music_flac=yes
  1039. fi
  1040. # Check whether --enable-music-flac-shared was given.
  1041. if test "${enable_music_flac_shared+set}" = set; then
  1042.   enableval=$enable_music_flac_shared;
  1043. else
  1044.   enable_music_flac_shared=yes
  1045. fi
  1046. if test x$enable_music_flac = xyes; then
  1047.     if test "${ac_cv_header_FLAC_export_h+set}" = set; then
  1048.   { $as_echo "$as_me:$LINENO: checking for FLAC/export.h" >&5
  1049. $as_echo_n "checking for FLAC/export.h... " >&6; }
  1050. if test "${ac_cv_header_FLAC_export_h+set}" = set; then
  1051.   $as_echo_n "(cached) " >&6
  1052. fi
  1053. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_export_h" >&5
  1054. $as_echo "$ac_cv_header_FLAC_export_h" >&6; }
  1055. else
  1056.   # Is the header compilable?
  1057. { $as_echo "$as_me:$LINENO: checking FLAC/export.h usability" >&5
  1058. $as_echo_n "checking FLAC/export.h usability... " >&6; }
  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. $ac_includes_default
  1066. #include <FLAC/export.h>
  1067. _ACEOF
  1068. rm -f conftest.$ac_objext
  1069. if { (ac_try="$ac_compile"
  1070. case "(($ac_try" in
  1071.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1072.   *) ac_try_echo=$ac_try;;
  1073. esac
  1074. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1075. $as_echo "$ac_try_echo") >&5
  1076.   (eval "$ac_compile") 2>conftest.er1
  1077.   ac_status=$?
  1078.   grep -v '^ *+' conftest.er1 >conftest.err
  1079.   rm -f conftest.er1
  1080.   cat conftest.err >&5
  1081.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1082.   (exit $ac_status); } && {
  1083.  test -z "$ac_c_werror_flag" ||
  1084.  test ! -s conftest.err
  1085.        } && test -s conftest.$ac_objext; then
  1086.   ac_header_compiler=yes
  1087. else
  1088.   $as_echo "$as_me: failed program was:" >&5
  1089. sed 's/^/| /' conftest.$ac_ext >&5
  1090. ac_header_compiler=no
  1091. fi
  1092. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1093. { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1094. $as_echo "$ac_header_compiler" >&6; }
  1095. # Is the header present?
  1096. { $as_echo "$as_me:$LINENO: checking FLAC/export.h presence" >&5
  1097. $as_echo_n "checking FLAC/export.h presence... " >&6; }
  1098. cat >conftest.$ac_ext <<_ACEOF
  1099. /* confdefs.h.  */
  1100. _ACEOF
  1101. cat confdefs.h >>conftest.$ac_ext
  1102. cat >>conftest.$ac_ext <<_ACEOF
  1103. /* end confdefs.h.  */
  1104. #include <FLAC/export.h>
  1105. _ACEOF
  1106. if { (ac_try="$ac_cpp conftest.$ac_ext"
  1107. case "(($ac_try" in
  1108.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1109.   *) ac_try_echo=$ac_try;;
  1110. esac
  1111. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1112. $as_echo "$ac_try_echo") >&5
  1113.   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  1114.   ac_status=$?
  1115.   grep -v '^ *+' conftest.er1 >conftest.err
  1116.   rm -f conftest.er1
  1117.   cat conftest.err >&5
  1118.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1119.   (exit $ac_status); } >/dev/null && {
  1120.  test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  1121.  test ! -s conftest.err
  1122.        }; then
  1123.   ac_header_preproc=yes
  1124. else
  1125.   $as_echo "$as_me: failed program was:" >&5
  1126. sed 's/^/| /' conftest.$ac_ext >&5
  1127.   ac_header_preproc=no
  1128. fi
  1129. rm -f conftest.err conftest.$ac_ext
  1130. { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1131. $as_echo "$ac_header_preproc" >&6; }
  1132. # So?  What about this header?
  1133. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1134.   yes:no: )
  1135.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: accepted by the compiler, rejected by the preprocessor!" >&5
  1136. $as_echo "$as_me: WARNING: FLAC/export.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1137.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: proceeding with the compiler's result" >&5
  1138. $as_echo "$as_me: WARNING: FLAC/export.h: proceeding with the compiler's result" >&2;}
  1139.     ac_header_preproc=yes
  1140.     ;;
  1141.   no:yes:* )
  1142.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: present but cannot be compiled" >&5
  1143. $as_echo "$as_me: WARNING: FLAC/export.h: present but cannot be compiled" >&2;}
  1144.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h:     check for missing prerequisite headers?" >&5
  1145. $as_echo "$as_me: WARNING: FLAC/export.h:     check for missing prerequisite headers?" >&2;}
  1146.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: see the Autoconf documentation" >&5
  1147. $as_echo "$as_me: WARNING: FLAC/export.h: see the Autoconf documentation" >&2;}
  1148.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h:     section "Present But Cannot Be Compiled"" >&5
  1149. $as_echo "$as_me: WARNING: FLAC/export.h:     section "Present But Cannot Be Compiled"" >&2;}
  1150.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: proceeding with the preprocessor's result" >&5
  1151. $as_echo "$as_me: WARNING: FLAC/export.h: proceeding with the preprocessor's result" >&2;}
  1152.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/export.h: in the future, the compiler will take precedence" >&5
  1153. $as_echo "$as_me: WARNING: FLAC/export.h: in the future, the compiler will take precedence" >&2;}
  1154.     ;;
  1155. esac
  1156. { $as_echo "$as_me:$LINENO: checking for FLAC/export.h" >&5
  1157. $as_echo_n "checking for FLAC/export.h... " >&6; }
  1158. if test "${ac_cv_header_FLAC_export_h+set}" = set; then
  1159.   $as_echo_n "(cached) " >&6
  1160. else
  1161.   ac_cv_header_FLAC_export_h=$ac_header_preproc
  1162. fi
  1163. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_export_h" >&5
  1164. $as_echo "$ac_cv_header_FLAC_export_h" >&6; }
  1165. fi
  1166. if test "x$ac_cv_header_FLAC_export_h" = x""yes; then
  1167.   have_flac_export=yes
  1168. fi
  1169.     if test x$have_flac_export = xyes; then
  1170.         LIBS_SAVED="$LIBS"
  1171.         LIBS="-lFLAC"
  1172.         { $as_echo "$as_me:$LINENO: checking for libflac so-name version >= $libflac_ver" >&5
  1173. $as_echo_n "checking for libflac so-name version >= $libflac_ver... " >&6; }
  1174.         if test "$cross_compiling" = yes; then
  1175.   { { $as_echo "$as_me:$LINENO: error: in `$ac_pwd':" >&5
  1176. $as_echo "$as_me: error: in `$ac_pwd':" >&2;}
  1177. { { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling
  1178. See `config.log' for more details." >&5
  1179. $as_echo "$as_me: error: cannot run test program while cross compiling
  1180. See `config.log' for more details." >&2;}
  1181.    { (exit 1); exit 1; }; }; }
  1182. else
  1183.   cat >conftest.$ac_ext <<_ACEOF
  1184. /* confdefs.h.  */
  1185. _ACEOF
  1186. cat confdefs.h >>conftest.$ac_ext
  1187. cat >>conftest.$ac_ext <<_ACEOF
  1188. /* end confdefs.h.  */
  1189. #include "FLAC/export.h"
  1190. #include "stdio.h"
  1191. int main( int argc, char *argv[] ) {
  1192. #if defined(FLAC_API_VERSION_CURRENT) && (FLAC_API_VERSION_CURRENT >= $libflac_ver)
  1193.     return 0;
  1194. #else
  1195.     return 1;
  1196. #endif
  1197. }
  1198. _ACEOF
  1199. rm -f conftest$ac_exeext
  1200. if { (ac_try="$ac_link"
  1201. case "(($ac_try" in
  1202.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1203.   *) ac_try_echo=$ac_try;;
  1204. esac
  1205. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1206. $as_echo "$ac_try_echo") >&5
  1207.   (eval "$ac_link") 2>&5
  1208.   ac_status=$?
  1209.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1210.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  1211.   { (case "(($ac_try" in
  1212.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1213.   *) ac_try_echo=$ac_try;;
  1214. esac
  1215. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1216. $as_echo "$ac_try_echo") >&5
  1217.   (eval "$ac_try") 2>&5
  1218.   ac_status=$?
  1219.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1220.   (exit $ac_status); }; }; then
  1221.   have_flac_ver=yes
  1222. else
  1223.   $as_echo "$as_me: program exited with status $ac_status" >&5
  1224. $as_echo "$as_me: failed program was:" >&5
  1225. sed 's/^/| /' conftest.$ac_ext >&5
  1226. ( exit $ac_status )
  1227. have_flac_ver=no
  1228. fi
  1229. rm -rf conftest.dSYM
  1230. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  1231. fi
  1232.         LIBS="$LIBS_SAVED"
  1233.         { $as_echo "$as_me:$LINENO: result: $have_flac_ver" >&5
  1234. $as_echo "$have_flac_ver" >&6; }
  1235.     fi
  1236.     if test x$have_flac_ver = xyes; then
  1237.         if test "${ac_cv_header_FLAC_stream_decoder_h+set}" = set; then
  1238.   { $as_echo "$as_me:$LINENO: checking for FLAC/stream_decoder.h" >&5
  1239. $as_echo_n "checking for FLAC/stream_decoder.h... " >&6; }
  1240. if test "${ac_cv_header_FLAC_stream_decoder_h+set}" = set; then
  1241.   $as_echo_n "(cached) " >&6
  1242. fi
  1243. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_stream_decoder_h" >&5
  1244. $as_echo "$ac_cv_header_FLAC_stream_decoder_h" >&6; }
  1245. else
  1246.   # Is the header compilable?
  1247. { $as_echo "$as_me:$LINENO: checking FLAC/stream_decoder.h usability" >&5
  1248. $as_echo_n "checking FLAC/stream_decoder.h usability... " >&6; }
  1249. cat >conftest.$ac_ext <<_ACEOF
  1250. /* confdefs.h.  */
  1251. _ACEOF
  1252. cat confdefs.h >>conftest.$ac_ext
  1253. cat >>conftest.$ac_ext <<_ACEOF
  1254. /* end confdefs.h.  */
  1255. $ac_includes_default
  1256. #include <FLAC/stream_decoder.h>
  1257. _ACEOF
  1258. rm -f conftest.$ac_objext
  1259. if { (ac_try="$ac_compile"
  1260. case "(($ac_try" in
  1261.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1262.   *) ac_try_echo=$ac_try;;
  1263. esac
  1264. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1265. $as_echo "$ac_try_echo") >&5
  1266.   (eval "$ac_compile") 2>conftest.er1
  1267.   ac_status=$?
  1268.   grep -v '^ *+' conftest.er1 >conftest.err
  1269.   rm -f conftest.er1
  1270.   cat conftest.err >&5
  1271.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1272.   (exit $ac_status); } && {
  1273.  test -z "$ac_c_werror_flag" ||
  1274.  test ! -s conftest.err
  1275.        } && test -s conftest.$ac_objext; then
  1276.   ac_header_compiler=yes
  1277. else
  1278.   $as_echo "$as_me: failed program was:" >&5
  1279. sed 's/^/| /' conftest.$ac_ext >&5
  1280. ac_header_compiler=no
  1281. fi
  1282. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1283. { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1284. $as_echo "$ac_header_compiler" >&6; }
  1285. # Is the header present?
  1286. { $as_echo "$as_me:$LINENO: checking FLAC/stream_decoder.h presence" >&5
  1287. $as_echo_n "checking FLAC/stream_decoder.h presence... " >&6; }
  1288. cat >conftest.$ac_ext <<_ACEOF
  1289. /* confdefs.h.  */
  1290. _ACEOF
  1291. cat confdefs.h >>conftest.$ac_ext
  1292. cat >>conftest.$ac_ext <<_ACEOF
  1293. /* end confdefs.h.  */
  1294. #include <FLAC/stream_decoder.h>
  1295. _ACEOF
  1296. if { (ac_try="$ac_cpp conftest.$ac_ext"
  1297. case "(($ac_try" in
  1298.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1299.   *) ac_try_echo=$ac_try;;
  1300. esac
  1301. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1302. $as_echo "$ac_try_echo") >&5
  1303.   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  1304.   ac_status=$?
  1305.   grep -v '^ *+' conftest.er1 >conftest.err
  1306.   rm -f conftest.er1
  1307.   cat conftest.err >&5
  1308.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1309.   (exit $ac_status); } >/dev/null && {
  1310.  test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  1311.  test ! -s conftest.err
  1312.        }; then
  1313.   ac_header_preproc=yes
  1314. else
  1315.   $as_echo "$as_me: failed program was:" >&5
  1316. sed 's/^/| /' conftest.$ac_ext >&5
  1317.   ac_header_preproc=no
  1318. fi
  1319. rm -f conftest.err conftest.$ac_ext
  1320. { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1321. $as_echo "$ac_header_preproc" >&6; }
  1322. # So?  What about this header?
  1323. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1324.   yes:no: )
  1325.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: accepted by the compiler, rejected by the preprocessor!" >&5
  1326. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1327.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: proceeding with the compiler's result" >&5
  1328. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: proceeding with the compiler's result" >&2;}
  1329.     ac_header_preproc=yes
  1330.     ;;
  1331.   no:yes:* )
  1332.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: present but cannot be compiled" >&5
  1333. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: present but cannot be compiled" >&2;}
  1334.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h:     check for missing prerequisite headers?" >&5
  1335. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h:     check for missing prerequisite headers?" >&2;}
  1336.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: see the Autoconf documentation" >&5
  1337. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: see the Autoconf documentation" >&2;}
  1338.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h:     section "Present But Cannot Be Compiled"" >&5
  1339. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h:     section "Present But Cannot Be Compiled"" >&2;}
  1340.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: proceeding with the preprocessor's result" >&5
  1341. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: proceeding with the preprocessor's result" >&2;}
  1342.     { $as_echo "$as_me:$LINENO: WARNING: FLAC/stream_decoder.h: in the future, the compiler will take precedence" >&5
  1343. $as_echo "$as_me: WARNING: FLAC/stream_decoder.h: in the future, the compiler will take precedence" >&2;}
  1344.     ;;
  1345. esac
  1346. { $as_echo "$as_me:$LINENO: checking for FLAC/stream_decoder.h" >&5
  1347. $as_echo_n "checking for FLAC/stream_decoder.h... " >&6; }
  1348. if test "${ac_cv_header_FLAC_stream_decoder_h+set}" = set; then
  1349.   $as_echo_n "(cached) " >&6
  1350. else
  1351.   ac_cv_header_FLAC_stream_decoder_h=$ac_header_preproc
  1352. fi
  1353. { $as_echo "$as_me:$LINENO: result: $ac_cv_header_FLAC_stream_decoder_h" >&5
  1354. $as_echo "$ac_cv_header_FLAC_stream_decoder_h" >&6; }
  1355. fi
  1356. if test "x$ac_cv_header_FLAC_stream_decoder_h" = x""yes; then
  1357.   have_flac_hdr=yes
  1358. fi
  1359.         { $as_echo "$as_me:$LINENO: checking for FLAC__stream_decoder_new in -lFLAC" >&5
  1360. $as_echo_n "checking for FLAC__stream_decoder_new in -lFLAC... " >&6; }
  1361. if test "${ac_cv_lib_FLAC_FLAC__stream_decoder_new+set}" = set; then
  1362.   $as_echo_n "(cached) " >&6
  1363. else
  1364.   ac_check_lib_save_LIBS=$LIBS
  1365. LIBS="-lFLAC  $LIBS"
  1366. cat >conftest.$ac_ext <<_ACEOF
  1367. /* confdefs.h.  */
  1368. _ACEOF
  1369. cat confdefs.h >>conftest.$ac_ext
  1370. cat >>conftest.$ac_ext <<_ACEOF
  1371. /* end confdefs.h.  */
  1372. /* Override any GCC internal prototype to avoid an error.
  1373.    Use char because int might match the return type of a GCC
  1374.    builtin and then its argument prototype would still apply.  */
  1375. #ifdef __cplusplus
  1376. extern "C"
  1377. #endif
  1378. char FLAC__stream_decoder_new ();
  1379. int
  1380. main ()
  1381. {
  1382. return FLAC__stream_decoder_new ();
  1383.   ;
  1384.   return 0;
  1385. }
  1386. _ACEOF
  1387. rm -f conftest.$ac_objext conftest$ac_exeext
  1388. if { (ac_try="$ac_link"
  1389. case "(($ac_try" in
  1390.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1391.   *) ac_try_echo=$ac_try;;
  1392. esac
  1393. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1394. $as_echo "$ac_try_echo") >&5
  1395.   (eval "$ac_link") 2>conftest.er1
  1396.   ac_status=$?
  1397.   grep -v '^ *+' conftest.er1 >conftest.err
  1398.   rm -f conftest.er1
  1399.   cat conftest.err >&5
  1400.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1401.   (exit $ac_status); } && {
  1402.  test -z "$ac_c_werror_flag" ||
  1403.  test ! -s conftest.err
  1404.        } && test -s conftest$ac_exeext && {
  1405.  test "$cross_compiling" = yes ||
  1406.  $as_test_x conftest$ac_exeext
  1407.        }; then
  1408.   ac_cv_lib_FLAC_FLAC__stream_decoder_new=yes
  1409. else
  1410.   $as_echo "$as_me: failed program was:" >&5
  1411. sed 's/^/| /' conftest.$ac_ext >&5
  1412. ac_cv_lib_FLAC_FLAC__stream_decoder_new=no
  1413. fi
  1414. rm -rf conftest.dSYM
  1415. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  1416.       conftest$ac_exeext conftest.$ac_ext
  1417. LIBS=$ac_check_lib_save_LIBS
  1418. fi
  1419. { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_FLAC_FLAC__stream_decoder_new" >&5
  1420. $as_echo "$ac_cv_lib_FLAC_FLAC__stream_decoder_new" >&6; }
  1421. if test "x$ac_cv_lib_FLAC_FLAC__stream_decoder_new" = x""yes; then
  1422.   have_flac_lib=yes
  1423. fi
  1424.         if test x$have_flac_hdr = xyes -a x$have_flac_lib = xyes; then
  1425.             case "$host" in
  1426.                 *-*-darwin*)
  1427.                     flac_lib=`find_lib libFLAC.dylib`
  1428.                     ;;
  1429.                 *-*-cygwin* | *-*-mingw32*)
  1430.                     flac_lib=`find_lib "libFLAC*.dll"`
  1431.                     ;;
  1432.                 *)
  1433.                     flac_lib=`find_lib "libFLAC.so.[0-9]"`
  1434.                     if test x$flac_lib = x; then
  1435.                         flac_lib=`find_lib "libFLAC.so.[0-9]*"`
  1436.                     fi
  1437.                     ;;
  1438.             esac
  1439.             SOURCES="$SOURCES $srcdir/*_flac.c"
  1440.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DFLAC_MUSIC"
  1441.             if test x$enable_music_flac_shared = xyes && test x$flac_lib != x; then
  1442.                 echo "-- dynamic libFLAC -> $flac_lib"
  1443.                 EXTRA_CFLAGS="$EXTRA_CFLAGS -DFLAC_DYNAMIC=\"$flac_lib\""
  1444.             else
  1445.                 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lFLAC"
  1446.             fi
  1447.         fi
  1448.     else
  1449.         { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find FLAC library (http://flac.sourceforge.net/)" >&5
  1450. $as_echo "$as_me: WARNING: *** Unable to find FLAC library (http://flac.sourceforge.net/)" >&2;}
  1451.         { $as_echo "$as_me:$LINENO: WARNING: FLAC support disabled" >&5
  1452. $as_echo "$as_me: WARNING: FLAC support disabled" >&2;}
  1453.     fi
  1454. fi
  1455. # Check whether --enable-music-mp3 was given.
  1456. if test "${enable_music_mp3+set}" = set; then
  1457.   enableval=$enable_music_mp3;
  1458. else
  1459.   enable_music_mp3=yes
  1460. fi
  1461. # Check whether --enable-music-mp3-shared was given.
  1462. if test "${enable_music_mp3_shared+set}" = set; then
  1463.   enableval=$enable_music_mp3_shared;
  1464. else
  1465.   enable_music_mp3_shared=yes
  1466. fi
  1467. if test x$enable_music_mp3 = xyes; then
  1468.     SMPEG_VERSION=0.4.3
  1469. # Check whether --with-smpeg-prefix was given.
  1470. if test "${with_smpeg_prefix+set}" = set; then
  1471.   withval=$with_smpeg_prefix; smpeg_prefix="$withval"
  1472. else
  1473.   smpeg_prefix=""
  1474. fi
  1475. # Check whether --with-smpeg-exec-prefix was given.
  1476. if test "${with_smpeg_exec_prefix+set}" = set; then
  1477.   withval=$with_smpeg_exec_prefix; smpeg_exec_prefix="$withval"
  1478. else
  1479.   smpeg_exec_prefix=""
  1480. fi
  1481. # Check whether --enable-smpegtest was given.
  1482. if test "${enable_smpegtest+set}" = set; then
  1483.   enableval=$enable_smpegtest;
  1484. else
  1485.   enable_smpegtest=yes
  1486. fi
  1487.   if test x$smpeg_exec_prefix != x ; then
  1488.      smpeg_args="$smpeg_args --exec-prefix=$smpeg_exec_prefix"
  1489.      if test x${SMPEG_CONFIG+set} != xset ; then
  1490.         SMPEG_CONFIG=$smpeg_exec_prefix/bin/smpeg-config
  1491.      fi
  1492.   fi
  1493.   if test x$smpeg_prefix != x ; then
  1494.      smpeg_args="$smpeg_args --prefix=$smpeg_prefix"
  1495.      if test x${SMPEG_CONFIG+set} != xset ; then
  1496.         SMPEG_CONFIG=$smpeg_prefix/bin/smpeg-config
  1497.      fi
  1498.   fi
  1499.   # Extract the first word of "smpeg-config", so it can be a program name with args.
  1500. set dummy smpeg-config; ac_word=$2
  1501. { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
  1502. $as_echo_n "checking for $ac_word... " >&6; }
  1503. if test "${ac_cv_path_SMPEG_CONFIG+set}" = set; then
  1504.   $as_echo_n "(cached) " >&6
  1505. else
  1506.   case $SMPEG_CONFIG in
  1507.   [\/]* | ?:[\/]*)
  1508.   ac_cv_path_SMPEG_CONFIG="$SMPEG_CONFIG" # Let the user override the test with a path.
  1509.   ;;
  1510.   *)
  1511.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1512. for as_dir in $PATH
  1513. do
  1514.   IFS=$as_save_IFS
  1515.   test -z "$as_dir" && as_dir=.
  1516.   for ac_exec_ext in '' $ac_executable_extensions; do
  1517.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1518.     ac_cv_path_SMPEG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  1519.     $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
  1520.     break 2
  1521.   fi
  1522. done
  1523. done
  1524. IFS=$as_save_IFS
  1525.   test -z "$ac_cv_path_SMPEG_CONFIG" && ac_cv_path_SMPEG_CONFIG="no"
  1526.   ;;
  1527. esac
  1528. fi
  1529. SMPEG_CONFIG=$ac_cv_path_SMPEG_CONFIG
  1530. if test -n "$SMPEG_CONFIG"; then
  1531.   { $as_echo "$as_me:$LINENO: result: $SMPEG_CONFIG" >&5
  1532. $as_echo "$SMPEG_CONFIG" >&6; }
  1533. else
  1534.   { $as_echo "$as_me:$LINENO: result: no" >&5
  1535. $as_echo "no" >&6; }
  1536. fi
  1537.   min_smpeg_version=$SMPEG_VERSION
  1538.   { $as_echo "$as_me:$LINENO: checking for SMPEG - version >= $min_smpeg_version" >&5
  1539. $as_echo_n "checking for SMPEG - version >= $min_smpeg_version... " >&6; }
  1540.   no_smpeg=""
  1541.   if test "$SMPEG_CONFIG" = "no" ; then
  1542.     no_smpeg=yes
  1543.   else
  1544.     SMPEG_CFLAGS=`$SMPEG_CONFIG $smpegconf_args --cflags`
  1545.     SMPEG_LIBS=`$SMPEG_CONFIG $smpegconf_args --libs`
  1546.     smpeg_major_version=`$SMPEG_CONFIG $smpeg_args --version | 
  1547.            sed 's/([0-9]*).([0-9]*).([0-9]*)/1/'`
  1548.     smpeg_minor_version=`$SMPEG_CONFIG $smpeg_args --version | 
  1549.            sed 's/([0-9]*).([0-9]*).([0-9]*)/2/'`
  1550.     smpeg_micro_version=`$SMPEG_CONFIG $smpeg_config_args --version | 
  1551.            sed 's/([0-9]*).([0-9]*).([0-9]*)/3/'`
  1552.     if test "x$enable_smpegtest" = "xyes" ; then
  1553.       ac_save_CFLAGS="$CFLAGS"
  1554.       ac_save_LIBS="$LIBS"
  1555.       CFLAGS="$CFLAGS $SMPEG_CFLAGS $SDL_CFLAGS"
  1556.       LIBS="$LIBS $SMPEG_LIBS $SDL_LIBS"
  1557.       rm -f conf.smpegtest
  1558.       if test "$cross_compiling" = yes; then
  1559.   echo $ac_n "cross compiling; assumed OK... $ac_c"
  1560. else
  1561.   cat >conftest.$ac_ext <<_ACEOF
  1562. /* confdefs.h.  */
  1563. _ACEOF
  1564. cat confdefs.h >>conftest.$ac_ext
  1565. cat >>conftest.$ac_ext <<_ACEOF
  1566. /* end confdefs.h.  */
  1567. #include <stdio.h>
  1568. #include <stdlib.h>
  1569. #include <string.h>
  1570. #include "smpeg.h"
  1571. char*
  1572. my_strdup (char *str)
  1573. {
  1574.   char *new_str;
  1575.   if (str)
  1576.     {
  1577.       new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
  1578.       strcpy (new_str, str);
  1579.     }
  1580.   else
  1581.     new_str = NULL;
  1582.   return new_str;
  1583. }
  1584. int main (int argc, char *argv[])
  1585. {
  1586.   int major, minor, micro;
  1587.   char *tmp_version;
  1588.   /* This hangs on some systems (?)
  1589.   system ("touch conf.smpegtest");
  1590.   */
  1591.   { FILE *fp = fopen("conf.smpegtest", "a"); if ( fp ) fclose(fp); }
  1592.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  1593.   tmp_version = my_strdup("$min_smpeg_version");
  1594.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  1595.      printf("%s, bad version stringn", "$min_smpeg_version");
  1596.      exit(1);
  1597.    }
  1598.    if (($smpeg_major_version > major) ||
  1599.       (($smpeg_major_version == major) && ($smpeg_minor_version > minor)) ||
  1600.       (($smpeg_major_version == major) && ($smpeg_minor_version == minor) && ($smpeg_micro_version >= micro)))
  1601.     {
  1602.       return 0;
  1603.     }
  1604.   else
  1605.     {
  1606.       printf("n*** 'smpeg-config --version' returned %d.%d.%d, but the minimum versionn", $smpeg_major_version, $smpeg_minor_version, $smpeg_micro_version);
  1607.       printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is correct, then it isn", major, minor, micro);
  1608.       printf("*** best to upgrade to the required version.n");
  1609.       printf("*** If smpeg-config was wrong, set the environment variable SMPEG_CONFIGn");
  1610.       printf("*** to point to the correct copy of smpeg-config, and remove the filen");
  1611.       printf("*** config.cache before re-running configuren");
  1612.       return 1;
  1613.     }
  1614. }
  1615. _ACEOF
  1616. rm -f conftest$ac_exeext
  1617. if { (ac_try="$ac_link"
  1618. case "(($ac_try" in
  1619.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1620.   *) ac_try_echo=$ac_try;;
  1621. esac
  1622. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1623. $as_echo "$ac_try_echo") >&5
  1624.   (eval "$ac_link") 2>&5
  1625.   ac_status=$?
  1626.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1627.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  1628.   { (case "(($ac_try" in
  1629.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1630.   *) ac_try_echo=$ac_try;;
  1631. esac
  1632. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1633. $as_echo "$ac_try_echo") >&5
  1634.   (eval "$ac_try") 2>&5
  1635.   ac_status=$?
  1636.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1637.   (exit $ac_status); }; }; then
  1638.   :
  1639. else
  1640.   $as_echo "$as_me: program exited with status $ac_status" >&5
  1641. $as_echo "$as_me: failed program was:" >&5
  1642. sed 's/^/| /' conftest.$ac_ext >&5
  1643. ( exit $ac_status )
  1644. no_smpeg=yes
  1645. fi
  1646. rm -rf conftest.dSYM
  1647. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  1648. fi
  1649.        CFLAGS="$ac_save_CFLAGS"
  1650.        LIBS="$ac_save_LIBS"
  1651.      fi
  1652.   fi
  1653.   if test "x$no_smpeg" = x ; then
  1654.      { $as_echo "$as_me:$LINENO: result: yes" >&5
  1655. $as_echo "yes" >&6; }
  1656.      have_smpeg=yes
  1657.   else
  1658.      { $as_echo "$as_me:$LINENO: result: no" >&5
  1659. $as_echo "no" >&6; }
  1660.      if test "$SMPEG_CONFIG" = "no" ; then
  1661.        echo "*** The smpeg-config script installed by SMPEG could not be found"
  1662.        echo "*** If SMPEG was installed in PREFIX, make sure PREFIX/bin is in"
  1663.        echo "*** your path, or set the SMPEG_CONFIG environment variable to the"
  1664.        echo "*** full path to smpeg-config."
  1665.      else
  1666.        if test -f conf.smpegtest ; then
  1667.         :
  1668.        else
  1669.           echo "*** Could not run SMPEG test program, checking why..."
  1670.           CFLAGS="$CFLAGS $SMPEG_CFLAGS $SDL_CFLAGS"
  1671.           LIBS="$LIBS $SMPEG_LIBS $SDL_LIBS"
  1672.           cat >conftest.$ac_ext <<_ACEOF
  1673. /* confdefs.h.  */
  1674. _ACEOF
  1675. cat confdefs.h >>conftest.$ac_ext
  1676. cat >>conftest.$ac_ext <<_ACEOF
  1677. /* end confdefs.h.  */
  1678. #include <stdio.h>
  1679. #include "smpeg.h"
  1680. int
  1681. main ()
  1682. {
  1683.  return 0;
  1684.   ;
  1685.   return 0;
  1686. }
  1687. _ACEOF
  1688. rm -f conftest.$ac_objext conftest$ac_exeext
  1689. if { (ac_try="$ac_link"
  1690. case "(($ac_try" in
  1691.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1692.   *) ac_try_echo=$ac_try;;
  1693. esac
  1694. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1695. $as_echo "$ac_try_echo") >&5
  1696.   (eval "$ac_link") 2>conftest.er1
  1697.   ac_status=$?
  1698.   grep -v '^ *+' conftest.er1 >conftest.err
  1699.   rm -f conftest.er1
  1700.   cat conftest.err >&5
  1701.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1702.   (exit $ac_status); } && {
  1703.  test -z "$ac_c_werror_flag" ||
  1704.  test ! -s conftest.err
  1705.        } && test -s conftest$ac_exeext && {
  1706.  test "$cross_compiling" = yes ||
  1707.  $as_test_x conftest$ac_exeext
  1708.        }; then
  1709.    echo "*** The test program compiled, but did not run. This usually means"
  1710.           echo "*** that the run-time linker is not finding SMPEG or finding the wrong"
  1711.           echo "*** version of SMPEG. If it is not finding SMPEG, you'll need to set your"
  1712.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  1713.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  1714.           echo "*** is required on your system"
  1715.           echo "***"
  1716.           echo "*** If you have an old version installed, it is best to remove it, although"
  1717.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
  1718. else
  1719.   $as_echo "$as_me: failed program was:" >&5
  1720. sed 's/^/| /' conftest.$ac_ext >&5
  1721.  echo "*** The test program failed to compile or link. See the file config.log for the"
  1722.           echo "*** exact error that occured. This usually means SMPEG was incorrectly installed"
  1723.           echo "*** or that you have moved SMPEG since it was installed. In the latter case, you"
  1724.           echo "*** may want to edit the smpeg-config script: $SMPEG_CONFIG"
  1725. fi
  1726. rm -rf conftest.dSYM
  1727. rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo 
  1728.       conftest$ac_exeext conftest.$ac_ext
  1729.           CFLAGS="$ac_save_CFLAGS"
  1730.           LIBS="$ac_save_LIBS"
  1731.        fi
  1732.      fi
  1733.      SMPEG_CFLAGS=""
  1734.      SMPEG_LIBS=""
  1735.      have_smpeg=no
  1736.   fi
  1737.   rm -f conf.smpegtest
  1738.     if test x$have_smpeg = xyes; then
  1739.         case "$host" in
  1740.             *-*-darwin*)
  1741.                 smpeg_lib=`find_lib libsmpeg.dylib`
  1742.                 ;;
  1743.             *-*-cygwin* | *-*-mingw32*)
  1744.                 smpeg_lib=`find_lib "smpeg*.dll"`
  1745.                 ;;
  1746.             *)
  1747.                 smpeg_lib=`find_lib "libsmpeg*.so.[0-9]"`
  1748.                 if test x$smpeg_lib = x; then
  1749.                     smpeg_lib=`find_lib "libsmpeg*.so.[0-9]*"`
  1750.                 fi
  1751.                 ;;
  1752.         esac
  1753.         SOURCES="$SOURCES $srcdir/*_mp3.c"
  1754.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_MUSIC $SMPEG_CFLAGS"
  1755.         if test x$enable_music_mp3_shared = xyes && test x$smpeg_lib != x; then
  1756.             echo "-- dynamic libsmpeg -> $smpeg_lib"
  1757.             EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_DYNAMIC=\"$smpeg_lib\""
  1758.         else
  1759.             EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SMPEG_LIBS"
  1760.         fi
  1761.     else
  1762.         { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find SMPEG library (http://icculus.org/smpeg/)" >&5
  1763. $as_echo "$as_me: WARNING: *** Unable to find SMPEG library (http://icculus.org/smpeg/)" >&2;}
  1764.     fi
  1765. fi
  1766. # Check whether --enable-music-mp3-mad-gpl was given.
  1767. if test "${enable_music_mp3_mad_gpl+set}" = set; then
  1768.   enableval=$enable_music_mp3_mad_gpl;
  1769. else
  1770.   enable_music_mp3_mad_gpl=no
  1771. fi
  1772. if test x$enable_music_mp3_mad_gpl = xyes; then
  1773.     { $as_echo "$as_me:$LINENO: checking for libmad headers" >&5
  1774. $as_echo_n "checking for libmad headers... " >&6; }
  1775.     have_libmad=no
  1776.     cat >conftest.$ac_ext <<_ACEOF
  1777. /* confdefs.h.  */
  1778. _ACEOF
  1779. cat confdefs.h >>conftest.$ac_ext
  1780. cat >>conftest.$ac_ext <<_ACEOF
  1781. /* end confdefs.h.  */
  1782.      #include "mad.h"
  1783. int
  1784. main ()
  1785. {
  1786.   ;
  1787.   return 0;
  1788. }
  1789. _ACEOF
  1790. rm -f conftest.$ac_objext
  1791. if { (ac_try="$ac_compile"
  1792. case "(($ac_try" in
  1793.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  1794.   *) ac_try_echo=$ac_try;;
  1795. esac
  1796. eval ac_try_echo=""$as_me:$LINENO: $ac_try_echo""
  1797. $as_echo "$ac_try_echo") >&5
  1798.   (eval "$ac_compile") 2>conftest.er1
  1799.   ac_status=$?
  1800.   grep -v '^ *+' conftest.er1 >conftest.err
  1801.   rm -f conftest.er1
  1802.   cat conftest.err >&5
  1803.   $as_echo "$as_me:$LINENO: $? = $ac_status" >&5
  1804.   (exit $ac_status); } && {
  1805.  test -z "$ac_c_werror_flag" ||
  1806.  test ! -s conftest.err
  1807.        } && test -s conftest.$ac_objext; then
  1808.     have_libmad=yes
  1809. else
  1810.   $as_echo "$as_me: failed program was:" >&5
  1811. sed 's/^/| /' conftest.$ac_ext >&5
  1812. fi
  1813. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1814.     { $as_echo "$as_me:$LINENO: result: $have_libmad" >&5
  1815. $as_echo "$have_libmad" >&6; }
  1816.     if test x$have_libmad = xyes; then
  1817.         SOURCES="$SOURCES $srcdir/music_mad.c"
  1818.         EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_MAD_MUSIC"
  1819.         EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lmad"
  1820.     else
  1821.         { $as_echo "$as_me:$LINENO: WARNING: *** Unable to find MAD library (http://www.underbit.com/products/mad/)" >&5
  1822. $as_echo "$as_me: WARNING: *** Unable to find MAD library (http://www.underbit.com/products/mad/)" >&2;}
  1823.     fi
  1824. fi
  1825. if test x$have_smpeg != xyes -a x$have_libmad != xyes; then
  1826.     { $as_echo "$as_me:$LINENO: WARNING: MP3 support disabled" >&5
  1827. $as_echo "$as_me: WARNING: MP3 support disabled" >&2;}
  1828. fi
  1829. OBJECTS=`echo $SOURCES`
  1830. DEPENDS=`echo $SOURCES`
  1831. OBJECTS=`echo "$OBJECTS" | sed 's,[^ ]*/([^ ]*).c,$(objects)/1.lo,g'`
  1832. DEPENDS=`echo "$DEPENDS" | sed 's,([^ ]*)/([^ ]*).c,\
  1833. $(objects)/2.lo: 1/2.c\
  1834. $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) '"$DEPENDENCY_TRACKING_OPTIONS"' -c $< -o $@,g'`
  1835. VERSION_OBJECTS=`echo $VERSION_SOURCES`
  1836. VERSION_DEPENDS=`echo $VERSION_SOURCES`
  1837. VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[^ ]*/([^ ]*).rc,$(objects)/1.o,g'`
  1838. VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed 's,([^ ]*)/([^ ]*).rc,\
  1839. $(objects)/2.o: 1/2.rc\
  1840. $(WINDRES) $< $@,g'`
  1841. PLAYWAVE_SOURCES="$srcdir/playwave.c"
  1842. PLAYWAVE_OBJECTS=`echo $PLAYWAVE_SOURCES`
  1843. PLAYWAVE_DEPENDS=`echo $PLAYWAVE_SOURCES`
  1844. PLAYWAVE_OBJECTS=`echo "$PLAYWAVE_OBJECTS" | sed 's,[^ ]*/([^ ]*).c,$(objects)/1.lo,g'`
  1845. PLAYWAVE_DEPENDS=`echo "$PLAYWAVE_DEPENDS" | sed 's,([^ ]*)/([^ ]*).c,\
  1846. $(objects)/2.lo: 1/2.c\
  1847. $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) '"$DEPENDENCY_TRACKING_OPTIONS"' -c $< -o $@,g'`
  1848. PLAYMUS_SOURCES="$srcdir/playmus.c"
  1849. PLAYMUS_OBJECTS=`echo $PLAYMUS_SOURCES`
  1850. PLAYMUS_DEPENDS=`echo $PLAYMUS_SOURCES`
  1851. PLAYMUS_OBJECTS=`echo "$PLAYMUS_OBJECTS" | sed 's,[^ ]*/([^ ]*).c,$(objects)/1.lo,g'`
  1852. PLAYMUS_DEPENDS=`echo "$PLAYMUS_DEPENDS" | sed 's,([^ ]*)/([^ ]*).c,\
  1853. $(objects)/2.lo: 1/2.c\
  1854. $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) '"$DEPENDENCY_TRACKING_OPTIONS"' -c $< -o $@,g'`
  1855. ac_config_files="$ac_config_files Makefile SDL_mixer.spec SDL_mixer.qpg SDL_mixer.pc"
  1856. cat >confcache <<_ACEOF
  1857. # This file is a shell script that caches the results of configure
  1858. # tests run on this system so they can be shared between configure
  1859. # scripts and configure runs, see configure's option --config-cache.
  1860. # It is not useful on other systems.  If it contains results you don't
  1861. # want to keep, you may remove or edit it.
  1862. #
  1863. # config.status only pays attention to the cache file if you give it
  1864. # the --recheck option to rerun configure.
  1865. #
  1866. # `ac_cv_env_foo' variables (set or unset) will be overridden when
  1867. # loading this file, other *unset* `ac_cv_foo' will be assigned the
  1868. # following values.
  1869. _ACEOF
  1870. # The following way of writing the cache mishandles newlines in values,
  1871. # but we know of no workaround that is simple, portable, and efficient.
  1872. # So, we kill variables containing newlines.
  1873. # Ultrix sh set writes to stderr and can't be redirected directly,
  1874. # and sets the high bit in the cache file unless we assign to the vars.
  1875. (
  1876.   for ac_var in `(set) 2>&1 | sed -n 's/^([a-zA-Z_][a-zA-Z0-9_]*)=.*/1/p'`; do
  1877.     eval ac_val=$$ac_var
  1878.     case $ac_val in #(
  1879.     *${as_nl}*)
  1880.       case $ac_var in #(
  1881.       *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
  1882. $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
  1883.       esac
  1884.       case $ac_var in #(
  1885.       _ | IFS | as_nl) ;; #(
  1886.       BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
  1887.       *) $as_unset $ac_var ;;
  1888.       esac ;;
  1889.     esac
  1890.   done
  1891.   (set) 2>&1 |
  1892.     case $as_nl`(ac_space=' '; set) 2>&1` in #(
  1893.     *${as_nl}ac_space= *)
  1894.       # `set' does not quote correctly, so add quotes (double-quote
  1895.       # substitution turns \\ into \, and sed turns \ into ).
  1896.       sed -n 
  1897. "s/'/'\\''/g;
  1898.   s/^\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\)=\(.*\)/\1='\2'/p"
  1899.       ;; #(
  1900.     *)
  1901.       # `set' quotes correctly as required by POSIX, so do not add quotes.
  1902.       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
  1903.       ;;
  1904.     esac |
  1905.     sort
  1906. ) |
  1907.   sed '
  1908.      /^ac_cv_env_/b end
  1909.      t clear
  1910.      :clear
  1911.      s/^([^=]*)=(.*[{}].*)$/test "${1+set}" = set || &/
  1912.      t end
  1913.      s/^([^=]*)=(.*)$/1=${1=2}/
  1914.      :end' >>confcache
  1915. if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  1916.   if test -w "$cache_file"; then
  1917.     test "x$cache_file" != "x/dev/null" &&
  1918.       { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5
  1919. $as_echo "$as_me: updating cache $cache_file" >&6;}
  1920.     cat confcache >$cache_file
  1921.   else
  1922.     { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
  1923. $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  1924.   fi
  1925. fi
  1926. rm -f confcache
  1927. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  1928. # Let make expand exec_prefix.
  1929. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  1930. # Transform confdefs.h into DEFS.
  1931. # Protect against shell expansion while executing Makefile rules.
  1932. # Protect against Makefile macro expansion.
  1933. #
  1934. # If the first sed substitution is executed (which looks for macros that
  1935. # take arguments), then branch to the quote section.  Otherwise,
  1936. # look for a macro that doesn't take arguments.
  1937. ac_script='
  1938. :mline
  1939. /\$/{
  1940.  N
  1941.  s,\n,,
  1942.  b mline
  1943. }
  1944. t clear
  1945. :clear
  1946. s/^[  ]*#[  ]*define[  ][  ]*([^  (][^  (]*([^)]*))[  ]*(.*)/-D1=2/g
  1947. t quote
  1948. s/^[  ]*#[  ]*define[  ][  ]*([^  ][^  ]*)[  ]*(.*)/-D1=2/g
  1949. t quote
  1950. b any
  1951. :quote
  1952. s/[  `~#$^&*(){}\|;'''"<>?]/\&/g
  1953. s/[/\&/g
  1954. s/]/\&/g
  1955. s/$/$$/g
  1956. H
  1957. :any
  1958. ${
  1959. g
  1960. s/^n//
  1961. s/n/ /g
  1962. p
  1963. }
  1964. '
  1965. DEFS=`sed -n "$ac_script" confdefs.h`
  1966. ac_libobjs=
  1967. ac_ltlibobjs=
  1968. for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  1969.   # 1. Remove the extension, and $U if already installed.
  1970.   ac_script='s/$U././;s/.o$//;s/.obj$//'
  1971.   ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
  1972.   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
  1973.   #    will be set to the directory where LIBOBJS objects are built.
  1974.   ac_libobjs="$ac_libobjs ${LIBOBJDIR}$ac_i$U.$ac_objext"
  1975.   ac_ltlibobjs="$ac_ltlibobjs ${LIBOBJDIR}$ac_i"'$U.lo'
  1976. done
  1977. LIBOBJS=$ac_libobjs
  1978. LTLIBOBJS=$ac_ltlibobjs
  1979. : ${CONFIG_STATUS=./config.status}
  1980. ac_write_fail=0
  1981. ac_clean_files_save=$ac_clean_files
  1982. ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  1983. { $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
  1984. $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
  1985. cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1986. #! $SHELL
  1987. # Generated by $as_me.
  1988. # Run this file to recreate the current configuration.
  1989. # Compiler output produced by configure, useful for debugging
  1990. # configure, is in config.log if it exists.
  1991. debug=false
  1992. ac_cs_recheck=false
  1993. ac_cs_silent=false
  1994. SHELL=${CONFIG_SHELL-$SHELL}
  1995. _ACEOF
  1996. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  1997. ## --------------------- ##
  1998. ## M4sh Initialization.  ##
  1999. ## --------------------- ##
  2000. # Be more Bourne compatible
  2001. DUALCASE=1; export DUALCASE # for MKS sh
  2002. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  2003.   emulate sh
  2004.   NULLCMD=:
  2005.   # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  2006.   # is contrary to our usage.  Disable this feature.
  2007.   alias -g '${1+"$@"}'='"$@"'
  2008.   setopt NO_GLOB_SUBST
  2009. else
  2010.   case `(set -o) 2>/dev/null` in
  2011.   *posix*) set -o posix ;;
  2012. esac
  2013. fi
  2014. # PATH needs CR
  2015. # Avoid depending upon Character Ranges.
  2016. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  2017. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  2018. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  2019. as_cr_digits='0123456789'
  2020. as_cr_alnum=$as_cr_Letters$as_cr_digits
  2021. as_nl='
  2022. '
  2023. export as_nl
  2024. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  2025. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  2026. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  2027. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  2028. if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  2029.   as_echo='printf %sn'
  2030.   as_echo_n='printf %s'
  2031. else
  2032.   if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  2033.     as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  2034.     as_echo_n='/usr/ucb/echo -n'
  2035.   else
  2036.     as_echo_body='eval expr "X$1" : "X\(.*\)"'
  2037.     as_echo_n_body='eval
  2038.       arg=$1;
  2039.       case $arg in
  2040.       *"$as_nl"*)
  2041. expr "X$arg" : "X\(.*\)$as_nl";
  2042. arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;;
  2043.       esac;
  2044.       expr "X$arg" : "X\(.*\)" | tr -d "$as_nl"
  2045.     '
  2046.     export as_echo_n_body
  2047.     as_echo_n='sh -c $as_echo_n_body as_echo'
  2048.   fi
  2049.   export as_echo_body
  2050.   as_echo='sh -c $as_echo_body as_echo'
  2051. fi
  2052. # The user is always right.
  2053. if test "${PATH_SEPARATOR+set}" != set; then
  2054.   PATH_SEPARATOR=:
  2055.   (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  2056.     (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  2057.       PATH_SEPARATOR=';'
  2058.   }
  2059. fi
  2060. # Support unset when possible.
  2061. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  2062.   as_unset=unset
  2063. else
  2064.   as_unset=false
  2065. fi
  2066. # IFS
  2067. # We need space, tab and new line, in precisely that order.  Quoting is
  2068. # there to prevent editors from complaining about space-tab.
  2069. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  2070. # splitting by setting IFS to empty value.)
  2071. IFS=" "" $as_nl"
  2072. # Find who we are.  Look in the path if we contain no directory separator.
  2073. case $0 in
  2074.   *[\/]* ) as_myself=$0 ;;
  2075.   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2076. for as_dir in $PATH
  2077. do
  2078.   IFS=$as_save_IFS
  2079.   test -z "$as_dir" && as_dir=.
  2080.   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  2081. done
  2082. IFS=$as_save_IFS
  2083.      ;;
  2084. esac
  2085. # We did not find ourselves, most probably we were run as `sh COMMAND'
  2086. # in which case we are not to be found in the path.
  2087. if test "x$as_myself" = x; then
  2088.   as_myself=$0
  2089. fi
  2090. if test ! -f "$as_myself"; then
  2091.   $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  2092.   { (exit 1); exit 1; }
  2093. fi
  2094. # Work around bugs in pre-3.0 UWIN ksh.
  2095. for as_var in ENV MAIL MAILPATH
  2096. do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  2097. done
  2098. PS1='$ '
  2099. PS2='> '
  2100. PS4='+ '
  2101. # NLS nuisances.
  2102. LC_ALL=C
  2103. export LC_ALL
  2104. LANGUAGE=C
  2105. export LANGUAGE
  2106. # Required to use basename.
  2107. if expr a : '(a)' >/dev/null 2>&1 &&
  2108.    test "X`expr 00001 : '.*(...)'`" = X001; then
  2109.   as_expr=expr
  2110. else
  2111.   as_expr=false
  2112. fi
  2113. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  2114.   as_basename=basename
  2115. else
  2116.   as_basename=false
  2117. fi
  2118. # Name of the executable.
  2119. as_me=`$as_basename -- "$0" ||
  2120. $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | 
  2121.  X"$0" : 'X(//)$' | 
  2122.  X"$0" : 'X(/)' | . 2>/dev/null ||
  2123. $as_echo X/"$0" |
  2124.     sed '/^.*/([^/][^/]*)/*$/{
  2125.     s//1/
  2126.     q
  2127.   }
  2128.   /^X/(//)$/{
  2129.     s//1/
  2130.     q
  2131.   }
  2132.   /^X/(/).*/{
  2133.     s//1/
  2134.     q
  2135.   }
  2136.   s/.*/./; q'`
  2137. # CDPATH.
  2138. $as_unset CDPATH
  2139.   as_lineno_1=$LINENO
  2140.   as_lineno_2=$LINENO
  2141.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  2142.   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
  2143.   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  2144.   # uniformly replaced by the line number.  The first 'sed' inserts a
  2145.   # line-number line after each line using $LINENO; the second 'sed'
  2146.   # does the real work.  The second script uses 'N' to pair each
  2147.   # line-number line with the line containing $LINENO, and appends
  2148.   # trailing '-' during substitution so that $LINENO is not a special
  2149.   # case at line end.
  2150.   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  2151.   # scripts with optimization help from Paolo Bonzini.  Blame Lee
  2152.   # E. McMahon (1931-1989) for sed's syntax.  :-)
  2153.   sed -n '
  2154.     p
  2155.     /[$]LINENO/=
  2156.   ' <$as_myself |
  2157.     sed '
  2158.       s/[$]LINENO.*/&-/
  2159.       t lineno
  2160.       b
  2161.       :lineno
  2162.       N
  2163.       :loop
  2164.       s/[$]LINENO([^'$as_cr_alnum'_].*n)(.*)/212/
  2165.       t loop
  2166.       s/-n.*//
  2167.     ' >$as_me.lineno &&
  2168.   chmod +x "$as_me.lineno" ||
  2169.     { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  2170.    { (exit 1); exit 1; }; }
  2171.   # Don't try to exec as it changes $[0], causing all sort of problems
  2172.   # (the dirname of $[0] is not the place where we might find the
  2173.   # original and so on.  Autoconf is especially sensitive to this).
  2174.   . "./$as_me.lineno"
  2175.   # Exit status is that of the last command.
  2176.   exit
  2177. }
  2178. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  2179.   as_dirname=dirname
  2180. else
  2181.   as_dirname=false
  2182. fi
  2183. ECHO_C= ECHO_N= ECHO_T=
  2184. case `echo -n x` in
  2185. -n*)
  2186.   case `echo 'xc'` in
  2187.   *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  2188.   *)   ECHO_C='c';;
  2189.   esac;;
  2190. *)
  2191.   ECHO_N='-n';;
  2192. esac
  2193. if expr a : '(a)' >/dev/null 2>&1 &&
  2194.    test "X`expr 00001 : '.*(...)'`" = X001; then
  2195.   as_expr=expr
  2196. else
  2197.   as_expr=false
  2198. fi
  2199. rm -f conf$$ conf$$.exe conf$$.file
  2200. if test -d conf$$.dir; then
  2201.   rm -f conf$$.dir/conf$$.file
  2202. else
  2203.   rm -f conf$$.dir
  2204.   mkdir conf$$.dir 2>/dev/null
  2205. fi
  2206. if (echo >conf$$.file) 2>/dev/null; then
  2207.   if ln -s conf$$.file conf$$ 2>/dev/null; then
  2208.     as_ln_s='ln -s'
  2209.     # ... but there are two gotchas:
  2210.     # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  2211.     # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  2212.     # In both cases, we have to default to `cp -p'.
  2213.     ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  2214.       as_ln_s='cp -p'
  2215.   elif ln conf$$.file conf$$ 2>/dev/null; then
  2216.     as_ln_s=ln
  2217.   else
  2218.     as_ln_s='cp -p'
  2219.   fi
  2220. else
  2221.   as_ln_s='cp -p'
  2222. fi
  2223. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  2224. rmdir conf$$.dir 2>/dev/null
  2225. if mkdir -p . 2>/dev/null; then
  2226.   as_mkdir_p=:
  2227. else
  2228.   test -d ./-p && rmdir ./-p
  2229.   as_mkdir_p=false
  2230. fi
  2231. if test -x / >/dev/null 2>&1; then
  2232.   as_test_x='test -x'
  2233. else
  2234.   if ls -dL / >/dev/null 2>&1; then
  2235.     as_ls_L_option=L
  2236.   else
  2237.     as_ls_L_option=
  2238.   fi
  2239.   as_test_x='
  2240.     eval sh -c '''
  2241.       if test -d "$1"; then
  2242. test -d "$1/.";
  2243.       else
  2244. case $1 in
  2245. -*)set "./$1";;
  2246. esac;
  2247. case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
  2248. ???[sx]*):;;*)false;;esac;fi
  2249.     ''' sh
  2250.   '
  2251. fi
  2252. as_executable_p=$as_test_x
  2253. # Sed expression to map a string onto a valid CPP name.
  2254. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  2255. # Sed expression to map a string onto a valid variable name.
  2256. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  2257. exec 6>&1
  2258. # Save the log message, to keep $[0] and so on meaningful, and to
  2259. # report actual input values of CONFIG_FILES etc. instead of their
  2260. # values after options handling.
  2261. ac_log="
  2262. This file was extended by $as_me, which was
  2263. generated by GNU Autoconf 2.63.  Invocation command line was
  2264.   CONFIG_FILES    = $CONFIG_FILES
  2265.   CONFIG_HEADERS  = $CONFIG_HEADERS
  2266.   CONFIG_LINKS    = $CONFIG_LINKS
  2267.   CONFIG_COMMANDS = $CONFIG_COMMANDS
  2268.   $ $0 $@
  2269. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  2270. "
  2271. _ACEOF
  2272. case $ac_config_files in *"
  2273. "*) set x $ac_config_files; shift; ac_config_files=$*;;
  2274. esac
  2275. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2276. # Files that config.status was made for.
  2277. config_files="$ac_config_files"
  2278. config_commands="$ac_config_commands"
  2279. _ACEOF
  2280. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2281. ac_cs_usage="
  2282. `$as_me' instantiates files from templates according to the
  2283. current configuration.
  2284. Usage: $0 [OPTION]... [FILE]...
  2285.   -h, --help       print this help, then exit
  2286.   -V, --version    print version number and configuration settings, then exit
  2287.   -q, --quiet, --silent
  2288.                    do not print progress messages
  2289.   -d, --debug      don't remove temporary files
  2290.       --recheck    update $as_me by reconfiguring in the same conditions
  2291.       --file=FILE[:TEMPLATE]
  2292.                    instantiate the configuration file FILE
  2293. Configuration files:
  2294. $config_files
  2295. Configuration commands:
  2296. $config_commands
  2297. Report bugs to <bug-autoconf@gnu.org>."
  2298. _ACEOF
  2299. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2300. ac_cs_version="\
  2301. config.status
  2302. configured by $0, generated by GNU Autoconf 2.63,
  2303.   with options \"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\""`$]/\\&/g'`\"
  2304. Copyright (C) 2008 Free Software Foundation, Inc.
  2305. This config.status script is free software; the Free Software Foundation
  2306. gives unlimited permission to copy, distribute and modify it."
  2307. ac_pwd='$ac_pwd'
  2308. srcdir='$srcdir'
  2309. INSTALL='$INSTALL'
  2310. test -n "$AWK" || AWK=awk
  2311. _ACEOF
  2312. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2313. # The default lists apply if the user does not specify any file.
  2314. ac_need_defaults=:
  2315. while test $# != 0
  2316. do
  2317.   case $1 in
  2318.   --*=*)
  2319.     ac_option=`expr "X$1" : 'X([^=]*)='`
  2320.     ac_optarg=`expr "X$1" : 'X[^=]*=(.*)'`
  2321.     ac_shift=:
  2322.     ;;
  2323.   *)
  2324.     ac_option=$1
  2325.     ac_optarg=$2
  2326.     ac_shift=shift
  2327.     ;;
  2328.   esac
  2329.   case $ac_option in
  2330.   # Handling of the options.
  2331.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2332.     ac_cs_recheck=: ;;
  2333.   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  2334.     $as_echo "$ac_cs_version"; exit ;;
  2335.   --debug | --debu | --deb | --de | --d | -d )
  2336.     debug=: ;;
  2337.   --file | --fil | --fi | --f )
  2338.     $ac_shift
  2339.     case $ac_optarg in
  2340.     *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;;
  2341.     esac
  2342.     CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
  2343.     ac_need_defaults=false;;
  2344.   --he | --h |  --help | --hel | -h )
  2345.     $as_echo "$ac_cs_usage"; exit ;;
  2346.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  2347.   | -silent | --silent | --silen | --sile | --sil | --si | --s)
  2348.     ac_cs_silent=: ;;
  2349.   # This is an error.
  2350.   -*) { $as_echo "$as_me: error: unrecognized option: $1
  2351. Try `$0 --help' for more information." >&2
  2352.    { (exit 1); exit 1; }; } ;;
  2353.   *) ac_config_targets="$ac_config_targets $1"
  2354.      ac_need_defaults=false ;;
  2355.   esac
  2356.   shift
  2357. done
  2358. ac_configure_extra_args=
  2359. if $ac_cs_silent; then
  2360.   exec 6>/dev/null
  2361.   ac_configure_extra_args="$ac_configure_extra_args --silent"
  2362. fi
  2363. _ACEOF
  2364. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2365. if $ac_cs_recheck; then
  2366.   set X '$SHELL' '$0' $ac_configure_args $ac_configure_extra_args --no-create --no-recursion
  2367.   shift
  2368.   $as_echo "running CONFIG_SHELL=$SHELL $*" >&6
  2369.   CONFIG_SHELL='$SHELL'
  2370.   export CONFIG_SHELL
  2371.   exec "$@"
  2372. fi
  2373. _ACEOF
  2374. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2375. exec 5>>config.log
  2376. {
  2377.   echo
  2378.   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  2379. ## Running $as_me. ##
  2380. _ASBOX
  2381.   $as_echo "$ac_log"
  2382. } >&5
  2383. _ACEOF
  2384. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2385. #
  2386. # INIT-COMMANDS
  2387. #
  2388. # The HP-UX ksh and POSIX shell print the target directory to stdout
  2389. # if CDPATH is set.
  2390. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  2391. sed_quote_subst='$sed_quote_subst'
  2392. double_quote_subst='$double_quote_subst'
  2393. delay_variable_subst='$delay_variable_subst'
  2394. macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`'
  2395. macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`'
  2396. AS='`$ECHO "X$AS" | $Xsed -e "$delay_single_quote_subst"`'
  2397. DLLTOOL='`$ECHO "X$DLLTOOL" | $Xsed -e "$delay_single_quote_subst"`'
  2398. OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`'
  2399. enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`'
  2400. enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`'
  2401. pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`'
  2402. enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`'
  2403. host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`'
  2404. host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`'
  2405. host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`'
  2406. build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`'
  2407. build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`'
  2408. build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`'
  2409. SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`'
  2410. Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`'
  2411. GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`'
  2412. EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`'
  2413. FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`'
  2414. LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`'
  2415. NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`'
  2416. LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`'
  2417. max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`'
  2418. ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`'
  2419. exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`'
  2420. lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`'
  2421. lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`'
  2422. lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`'
  2423. reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`'
  2424. reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2425. deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`'
  2426. file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`'
  2427. AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`'
  2428. AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`'
  2429. STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`'
  2430. RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`'
  2431. old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2432. old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2433. old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2434. CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`'
  2435. CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`'
  2436. compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`'
  2437. GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`'
  2438. lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`'
  2439. lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`'
  2440. lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`'
  2441. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
  2442. objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`'
  2443. SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`'
  2444. ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`'
  2445. MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`'
  2446. lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`'
  2447. lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`'
  2448. lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`'
  2449. lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`'
  2450. lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`'
  2451. need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`'
  2452. DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`'
  2453. NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`'
  2454. LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`'
  2455. OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`'
  2456. OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`'
  2457. libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`'
  2458. shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2459. extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2460. archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`'
  2461. enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`'
  2462. export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2463. whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2464. compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`'
  2465. old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2466. old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2467. archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2468. archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2469. module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2470. module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2471. with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`'
  2472. allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
  2473. no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
  2474. hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2475. hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`'
  2476. hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`'
  2477. hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`'
  2478. hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`'
  2479. hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`'
  2480. hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  2481. hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`'
  2482. inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`'
  2483. link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`'
  2484. fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`'
  2485. always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`'
  2486. export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2487. exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
  2488. include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
  2489. prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2490. file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2491. variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`'
  2492. need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
  2493. need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`'
  2494. version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`'
  2495. runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  2496. shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
  2497. shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`'
  2498. libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2499. library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2500. soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2501. postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2502. postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2503. finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`'
  2504. finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`'
  2505. hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`'
  2506. sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2507. sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
  2508. hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`'
  2509. enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`'
  2510. enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`'
  2511. enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`'
  2512. old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`'
  2513. striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`'
  2514. LTCC='$LTCC'
  2515. LTCFLAGS='$LTCFLAGS'
  2516. compiler='$compiler_DEFAULT'
  2517. # Quote evaled strings.
  2518. for var in SED 
  2519. GREP 
  2520. EGREP 
  2521. FGREP 
  2522. LD 
  2523. NM 
  2524. LN_S 
  2525. lt_SP2NL 
  2526. lt_NL2SP 
  2527. reload_flag 
  2528. deplibs_check_method 
  2529. file_magic_cmd 
  2530. AR 
  2531. AR_FLAGS 
  2532. STRIP 
  2533. RANLIB 
  2534. CC 
  2535. CFLAGS 
  2536. compiler 
  2537. lt_cv_sys_global_symbol_pipe 
  2538. lt_cv_sys_global_symbol_to_cdecl 
  2539. lt_cv_sys_global_symbol_to_c_name_address 
  2540. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix 
  2541. SHELL 
  2542. ECHO 
  2543. lt_prog_compiler_no_builtin_flag 
  2544. lt_prog_compiler_wl 
  2545. lt_prog_compiler_pic 
  2546. lt_prog_compiler_static 
  2547. lt_cv_prog_compiler_c_o 
  2548. need_locks 
  2549. DSYMUTIL 
  2550. NMEDIT 
  2551. LIPO 
  2552. OTOOL 
  2553. OTOOL64 
  2554. shrext_cmds 
  2555. export_dynamic_flag_spec 
  2556. whole_archive_flag_spec 
  2557. compiler_needs_object 
  2558. with_gnu_ld 
  2559. allow_undefined_flag 
  2560. no_undefined_flag 
  2561. hardcode_libdir_flag_spec 
  2562. hardcode_libdir_flag_spec_ld 
  2563. hardcode_libdir_separator 
  2564. fix_srcfile_path 
  2565. exclude_expsyms 
  2566. include_expsyms 
  2567. file_list_spec 
  2568. variables_saved_for_relink 
  2569. libname_spec 
  2570. library_names_spec 
  2571. soname_spec 
  2572. finish_eval 
  2573. old_striplib 
  2574. striplib; do
  2575.     case `eval \\$ECHO "X\\$$var"` in
  2576.     *[\\\`\"\$]*)
  2577.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
  2578.       ;;
  2579.     *)
  2580.       eval "lt_$var=\\\"\$$var\\\""
  2581.       ;;
  2582.     esac
  2583. done
  2584. # Double-quote double-evaled strings.
  2585. for var in reload_cmds 
  2586. old_postinstall_cmds 
  2587. old_postuninstall_cmds 
  2588. old_archive_cmds 
  2589. extract_expsyms_cmds 
  2590. old_archive_from_new_cmds 
  2591. old_archive_from_expsyms_cmds 
  2592. archive_cmds 
  2593. archive_expsym_cmds 
  2594. module_cmds 
  2595. module_expsym_cmds 
  2596. export_symbols_cmds 
  2597. prelink_cmds 
  2598. postinstall_cmds 
  2599. postuninstall_cmds 
  2600. finish_cmds 
  2601. sys_lib_search_path_spec 
  2602. sys_lib_dlsearch_path_spec; do
  2603.     case `eval \\$ECHO "X\\$$var"` in
  2604.     *[\\\`\"\$]*)
  2605.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
  2606.       ;;
  2607.     *)
  2608.       eval "lt_$var=\\\"\$$var\\\""
  2609.       ;;
  2610.     esac
  2611. done
  2612. # Fix-up fallback echo if it was mangled by the above quoting rules.
  2613. case $lt_ECHO in
  2614. *'\$0 --fallback-echo"')  lt_ECHO=`$ECHO "X$lt_ECHO" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  2615.   ;;
  2616. esac
  2617. ac_aux_dir='$ac_aux_dir'
  2618. xsi_shell='$xsi_shell'
  2619. lt_shell_append='$lt_shell_append'
  2620. # See if we are running on zsh, and set the options which allow our
  2621. # commands through without removal of  escapes INIT.
  2622. if test -n "${ZSH_VERSION+set}" ; then
  2623.    setopt NO_GLOB_SUBST
  2624. fi
  2625.     PACKAGE='$PACKAGE'
  2626.     VERSION='$VERSION'
  2627.     TIMESTAMP='$TIMESTAMP'
  2628.     RM='$RM'
  2629.     ofile='$ofile'
  2630. _ACEOF
  2631. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2632. # Handling of arguments.
  2633. for ac_config_target in $ac_config_targets
  2634. do
  2635.   case $ac_config_target in
  2636.     "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
  2637.     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  2638.     "SDL_mixer.spec") CONFIG_FILES="$CONFIG_FILES SDL_mixer.spec" ;;
  2639.     "SDL_mixer.qpg") CONFIG_FILES="$CONFIG_FILES SDL_mixer.qpg" ;;
  2640.     "SDL_mixer.pc") CONFIG_FILES="$CONFIG_FILES SDL_mixer.pc" ;;
  2641.   *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  2642. $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
  2643.    { (exit 1); exit 1; }; };;
  2644.   esac
  2645. done
  2646. # If the user did not use the arguments to specify the items to instantiate,
  2647. # then the envvar interface is used.  Set only those that are not.
  2648. # We use the long form for the default assignment because of an extremely
  2649. # bizarre bug on SunOS 4.1.3.
  2650. if $ac_need_defaults; then
  2651.   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  2652.   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  2653. fi
  2654. # Have a temporary directory for convenience.  Make it in the build tree
  2655. # simply because there is no reason against having it here, and in addition,
  2656. # creating and moving files from /tmp can sometimes cause problems.
  2657. # Hook for its removal unless debugging.
  2658. # Note that there is a small window in which the directory will not be cleaned:
  2659. # after its creation but before its name has been assigned to `$tmp'.
  2660. $debug ||
  2661. {
  2662.   tmp=
  2663.   trap 'exit_status=$?
  2664.   { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  2665. ' 0
  2666.   trap '{ (exit 1); exit 1; }' 1 2 13 15
  2667. }
  2668. # Create a (secure) tmp directory for tmp files.
  2669. {
  2670.   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  2671.   test -n "$tmp" && test -d "$tmp"
  2672. }  ||
  2673. {
  2674.   tmp=./conf$$-$RANDOM
  2675.   (umask 077 && mkdir "$tmp")
  2676. } ||
  2677. {
  2678.    $as_echo "$as_me: cannot create a temporary directory in ." >&2
  2679.    { (exit 1); exit 1; }
  2680. }
  2681. # Set up the scripts for CONFIG_FILES section.
  2682. # No need to generate them if there are no CONFIG_FILES.
  2683. # This happens for instance with `./config.status config.h'.
  2684. if test -n "$CONFIG_FILES"; then
  2685. ac_cr=' '
  2686. ac_cs_awk_cr=`$AWK 'BEGIN { print "arb" }' </dev/null 2>/dev/null`
  2687. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  2688.   ac_cs_awk_cr='\r'
  2689. else
  2690.   ac_cs_awk_cr=$ac_cr
  2691. fi
  2692. echo 'BEGIN {' >"$tmp/subs1.awk" &&
  2693. _ACEOF
  2694. {
  2695.   echo "cat >conf$$subs.awk <<_ACEOF" &&
  2696.   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  2697.   echo "_ACEOF"
  2698. } >conf$$subs.sh ||
  2699.   { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2700. $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2701.    { (exit 1); exit 1; }; }
  2702. ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
  2703. ac_delim='%!_!# '
  2704. for ac_last_try in false false false false false :; do
  2705.   . ./conf$$subs.sh ||
  2706.     { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2707. $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2708.    { (exit 1); exit 1; }; }
  2709.   ac_delim_n=`sed -n "s/.*$ac_delim$/X/p" conf$$subs.awk | grep -c X`
  2710.   if test $ac_delim_n = $ac_delim_num; then
  2711.     break
  2712.   elif $ac_last_try; then
  2713.     { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2714. $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2715.    { (exit 1); exit 1; }; }
  2716.   else
  2717.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2718.   fi
  2719. done
  2720. rm -f conf$$subs.sh
  2721. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2722. cat >>"$tmp/subs1.awk" <<\_ACAWK &&
  2723. _ACEOF
  2724. sed -n '
  2725. h
  2726. s/^/S["/; s/!.*/"]=/
  2727. p
  2728. g
  2729. s/^[^!]*!//
  2730. :repl
  2731. t repl
  2732. s/'"$ac_delim"'$//
  2733. t delim
  2734. :nl
  2735. h
  2736. s/(.{148}).*/1/
  2737. t more1
  2738. s/["\]/\&/g; s/^/"/; s/$/\n"\/
  2739. p
  2740. n
  2741. b repl
  2742. :more1
  2743. s/["\]/\&/g; s/^/"/; s/$/"\/
  2744. p
  2745. g
  2746. s/.{148}//
  2747. t nl
  2748. :delim
  2749. h
  2750. s/(.{148}).*/1/
  2751. t more2
  2752. s/["\]/\&/g; s/^/"/; s/$/"/
  2753. p
  2754. b
  2755. :more2
  2756. s/["\]/\&/g; s/^/"/; s/$/"\/
  2757. p
  2758. g
  2759. s/.{148}//
  2760. t delim
  2761. ' <conf$$subs.awk | sed '
  2762. /^[^""]/{
  2763.   N
  2764.   s/n//
  2765. }
  2766. ' >>$CONFIG_STATUS || ac_write_fail=1
  2767. rm -f conf$$subs.awk
  2768. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2769. _ACAWK
  2770. cat >>"$tmp/subs1.awk" <<_ACAWK &&
  2771.   for (key in S) S_is_set[key] = 1
  2772.   FS = ""
  2773. }
  2774. {
  2775.   line = $ 0
  2776.   nfields = split(line, field, "@")
  2777.   substed = 0
  2778.   len = length(field[1])
  2779.   for (i = 2; i < nfields; i++) {
  2780.     key = field[i]
  2781.     keylen = length(key)
  2782.     if (S_is_set[key]) {
  2783.       value = S[key]
  2784.       line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  2785.       len += length(value) + length(field[++i])
  2786.       substed = 1
  2787.     } else
  2788.       len += 1 + keylen
  2789.   }
  2790.   print line
  2791. }
  2792. _ACAWK
  2793. _ACEOF
  2794. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2795. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  2796.   sed "s/$ac_cr$//; s/$ac_cr/$ac_cs_awk_cr/g"
  2797. else
  2798.   cat
  2799. fi < "$tmp/subs1.awk" > "$tmp/subs.awk" 
  2800.   || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
  2801. $as_echo "$as_me: error: could not setup config files machinery" >&2;}
  2802.    { (exit 1); exit 1; }; }
  2803. _ACEOF
  2804. # VPATH may cause trouble with some makes, so we remove $(srcdir),
  2805. # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  2806. # trailing colons and then remove the whole line if VPATH becomes empty
  2807. # (actually we leave an empty line to preserve line numbers).
  2808. if test "x$srcdir" = x.; then
  2809.   ac_vpsub='/^[  ]*VPATH[  ]*=/{
  2810. s/:*$(srcdir):*/:/
  2811. s/:*${srcdir}:*/:/
  2812. s/:*@srcdir@:*/:/
  2813. s/^([^=]*=[  ]*):*/1/
  2814. s/:*$//
  2815. s/^[^=]*=[  ]*$//
  2816. }'
  2817. fi
  2818. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2819. fi # test -n "$CONFIG_FILES"
  2820. eval set X "  :F $CONFIG_FILES      :C $CONFIG_COMMANDS"
  2821. shift
  2822. for ac_tag
  2823. do
  2824.   case $ac_tag in
  2825.   :[FHLC]) ac_mode=$ac_tag; continue;;
  2826.   esac
  2827.   case $ac_mode$ac_tag in
  2828.   :[FHL]*:*);;
  2829.   :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
  2830. $as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
  2831.    { (exit 1); exit 1; }; };;
  2832.   :[FH]-) ac_tag=-:-;;
  2833.   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  2834.   esac
  2835.   ac_save_IFS=$IFS
  2836.   IFS=:
  2837.   set x $ac_tag
  2838.   IFS=$ac_save_IFS
  2839.   shift
  2840.   ac_file=$1
  2841.   shift
  2842.   case $ac_mode in
  2843.   :L) ac_source=$1;;
  2844.   :[FH])
  2845.     ac_file_inputs=
  2846.     for ac_f
  2847.     do
  2848.       case $ac_f in
  2849.       -) ac_f="$tmp/stdin";;
  2850.       *) # Look for the file first in the build tree, then in the source tree
  2851.  # (if the path is not absolute).  The absolute path cannot be DOS-style,
  2852.  # because $ac_f cannot contain `:'.
  2853.  test -f "$ac_f" ||
  2854.    case $ac_f in
  2855.    [\/$]*) false;;
  2856.    *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  2857.    esac ||
  2858.    { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
  2859. $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
  2860.    { (exit 1); exit 1; }; };;
  2861.       esac
  2862.       case $ac_f in *'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\''/g"`;; esac
  2863.       ac_file_inputs="$ac_file_inputs '$ac_f'"
  2864.     done
  2865.     # Let's still pretend it is `configure' which instantiates (i.e., don't
  2866.     # use $as_me), people would be surprised to read:
  2867.     #    /* config.h.  Generated by config.status.  */
  2868.     configure_input='Generated from '`
  2869.   $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  2870. `' by configure.'
  2871.     if test x"$ac_file" != x-; then
  2872.       configure_input="$ac_file.  $configure_input"
  2873.       { $as_echo "$as_me:$LINENO: creating $ac_file" >&5
  2874. $as_echo "$as_me: creating $ac_file" >&6;}
  2875.     fi
  2876.     # Neutralize special characters interpreted by sed in replacement strings.
  2877.     case $configure_input in #(
  2878.     *&* | *|* | *\* )
  2879.        ac_sed_conf_input=`$as_echo "$configure_input" |
  2880.        sed 's/[\\&|]/\\&/g'`;; #(
  2881.     *) ac_sed_conf_input=$configure_input;;
  2882.     esac
  2883.     case $ac_tag in
  2884.     *:-:* | *:-) cat >"$tmp/stdin" 
  2885.       || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  2886. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  2887.    { (exit 1); exit 1; }; } ;;
  2888.     esac
  2889.     ;;
  2890.   esac
  2891.   ac_dir=`$as_dirname -- "$ac_file" ||
  2892. $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2893.  X"$ac_file" : 'X(//)[^/]' | 
  2894.  X"$ac_file" : 'X(//)$' | 
  2895.  X"$ac_file" : 'X(/)' | . 2>/dev/null ||
  2896. $as_echo X"$ac_file" |
  2897.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  2898.     s//1/
  2899.     q
  2900.   }
  2901.   /^X(//)[^/].*/{
  2902.     s//1/
  2903.     q
  2904.   }
  2905.   /^X(//)$/{
  2906.     s//1/
  2907.     q
  2908.   }
  2909.   /^X(/).*/{
  2910.     s//1/
  2911.     q
  2912.   }
  2913.   s/.*/./; q'`
  2914.   { as_dir="$ac_dir"
  2915.   case $as_dir in #(
  2916.   -*) as_dir=./$as_dir;;
  2917.   esac
  2918.   test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
  2919.     as_dirs=
  2920.     while :; do
  2921.       case $as_dir in #(
  2922.       *'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #'(
  2923.       *) as_qdir=$as_dir;;
  2924.       esac
  2925.       as_dirs="'$as_qdir' $as_dirs"
  2926.       as_dir=`$as_dirname -- "$as_dir" ||
  2927. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  2928.  X"$as_dir" : 'X(//)[^/]' | 
  2929.  X"$as_dir" : 'X(//)$' | 
  2930.  X"$as_dir" : 'X(/)' | . 2>/dev/null ||
  2931. $as_echo X"$as_dir" |
  2932.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  2933.     s//1/
  2934.     q
  2935.   }
  2936.   /^X(//)[^/].*/{
  2937.     s//1/
  2938.     q
  2939.   }
  2940.   /^X(//)$/{
  2941.     s//1/
  2942.     q
  2943.   }
  2944.   /^X(/).*/{
  2945.     s//1/
  2946.     q
  2947.   }
  2948.   s/.*/./; q'`
  2949.       test -d "$as_dir" && break
  2950.     done
  2951.     test -z "$as_dirs" || eval "mkdir $as_dirs"
  2952.   } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
  2953. $as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
  2954.    { (exit 1); exit 1; }; }; }
  2955.   ac_builddir=.
  2956. case "$ac_dir" in
  2957. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  2958. *)
  2959.   ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'`
  2960.   # A ".." for each directory in $ac_dir_suffix.
  2961.   ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'`
  2962.   case $ac_top_builddir_sub in
  2963.   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  2964.   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  2965.   esac ;;
  2966. esac
  2967. ac_abs_top_builddir=$ac_pwd
  2968. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  2969. # for backward compatibility:
  2970. ac_top_builddir=$ac_top_build_prefix
  2971. case $srcdir in
  2972.   .)  # We are building in place.
  2973.     ac_srcdir=.
  2974.     ac_top_srcdir=$ac_top_builddir_sub
  2975.     ac_abs_top_srcdir=$ac_pwd ;;
  2976.   [\/]* | ?:[\/]* )  # Absolute name.
  2977.     ac_srcdir=$srcdir$ac_dir_suffix;
  2978.     ac_top_srcdir=$srcdir
  2979.     ac_abs_top_srcdir=$srcdir ;;
  2980.   *) # Relative name.
  2981.     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  2982.     ac_top_srcdir=$ac_top_build_prefix$srcdir
  2983.     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  2984. esac
  2985. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  2986.   case $ac_mode in
  2987.   :F)
  2988.   #
  2989.   # CONFIG_FILE
  2990.   #
  2991.   case $INSTALL in
  2992.   [\/$]* | ?:[\/]* ) ac_INSTALL=$INSTALL ;;
  2993.   *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  2994.   esac
  2995. _ACEOF
  2996. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  2997. # If the template does not know about datarootdir, expand it.
  2998. # FIXME: This hack should be removed a few years after 2.60.
  2999. ac_datarootdir_hack=; ac_datarootdir_seen=
  3000. ac_sed_dataroot='
  3001. /datarootdir/ {
  3002.   p
  3003.   q
  3004. }
  3005. /@datadir@/p
  3006. /@docdir@/p
  3007. /@infodir@/p
  3008. /@localedir@/p
  3009. /@mandir@/p
  3010. '
  3011. case `eval "sed -n "$ac_sed_dataroot" $ac_file_inputs"` in
  3012. *datarootdir*) ac_datarootdir_seen=yes;;
  3013. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  3014.   { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  3015. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  3016. _ACEOF
  3017. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  3018.   ac_datarootdir_hack='
  3019.   s&@datadir@&$datadir&g
  3020.   s&@docdir@&$docdir&g
  3021.   s&@infodir@&$infodir&g
  3022.   s&@localedir@&$localedir&g
  3023.   s&@mandir@&$mandir&g
  3024.     s&\${datarootdir}&$datarootdir&g' ;;
  3025. esac
  3026. _ACEOF
  3027. # Neutralize VPATH when `$srcdir' = `.'.
  3028. # Shell code in configure.ac might set extrasub.
  3029. # FIXME: do we really want to maintain this feature?
  3030. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  3031. ac_sed_extra="$ac_vpsub
  3032. $extrasub
  3033. _ACEOF
  3034. cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  3035. :t
  3036. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  3037. s|@configure_input@|$ac_sed_conf_input|;t t
  3038. s&@top_builddir@&$ac_top_builddir_sub&;t t
  3039. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  3040. s&@srcdir@&$ac_srcdir&;t t
  3041. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  3042. s&@top_srcdir@&$ac_top_srcdir&;t t
  3043. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  3044. s&@builddir@&$ac_builddir&;t t
  3045. s&@abs_builddir@&$ac_abs_builddir&;t t
  3046. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  3047. s&@INSTALL@&$ac_INSTALL&;t t
  3048. $ac_datarootdir_hack
  3049. "
  3050. eval sed "$ac_sed_extra" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out 
  3051.   || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  3052. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  3053.    { (exit 1); exit 1; }; }
  3054. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  3055.   { ac_out=`sed -n '/${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  3056.   { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  3057.   { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable `datarootdir'
  3058. which seems to be undefined.  Please make sure it is defined." >&5
  3059. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir'
  3060. which seems to be undefined.  Please make sure it is defined." >&2;}
  3061.   rm -f "$tmp/stdin"
  3062.   case $ac_file in
  3063.   -) cat "$tmp/out" && rm -f "$tmp/out";;
  3064.   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  3065.   esac 
  3066.   || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  3067. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  3068.    { (exit 1); exit 1; }; }
  3069.  ;;
  3070.   :C)  { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
  3071. $as_echo "$as_me: executing $ac_file commands" >&6;}
  3072.  ;;
  3073.   esac
  3074.   case $ac_file$ac_mode in
  3075.     "libtool":C)
  3076.     # See if we are running on zsh, and set the options which allow our
  3077.     # commands through without removal of  escapes.
  3078.     if test -n "${ZSH_VERSION+set}" ; then
  3079.       setopt NO_GLOB_SUBST
  3080.     fi
  3081.     cfgfile="${ofile}T"
  3082.     trap "$RM "$cfgfile"; exit 1" 1 2 15
  3083.     $RM "$cfgfile"
  3084.     cat <<_LT_EOF >> "$cfgfile"
  3085. #! $SHELL
  3086. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  3087. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  3088. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  3089. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  3090. #
  3091. #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  3092. #                 2006, 2007, 2008 Free Software Foundation, Inc.
  3093. #   Written by Gordon Matzigkeit, 1996
  3094. #
  3095. #   This file is part of GNU Libtool.
  3096. #
  3097. # GNU Libtool is free software; you can redistribute it and/or
  3098. # modify it under the terms of the GNU General Public License as
  3099. # published by the Free Software Foundation; either version 2 of
  3100. # the License, or (at your option) any later version.
  3101. #
  3102. # As a special exception to the GNU General Public License,
  3103. # if you distribute this file as part of a program or library that
  3104. # is built using GNU Libtool, you may include this file under the
  3105. # same distribution terms that you use for the rest of that program.
  3106. #
  3107. # GNU Libtool is distributed in the hope that it will be useful,
  3108. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  3109. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3110. # GNU General Public License for more details.
  3111. #
  3112. # You should have received a copy of the GNU General Public License
  3113. # along with GNU Libtool; see the file COPYING.  If not, a copy
  3114. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  3115. # obtained by writing to the Free Software Foundation, Inc.,
  3116. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  3117. # The names of the tagged configurations supported by this script.
  3118. available_tags=""
  3119. # ### BEGIN LIBTOOL CONFIG
  3120. # Which release of libtool.m4 was used?
  3121. macro_version=$macro_version
  3122. macro_revision=$macro_revision
  3123. # Assembler program.
  3124. AS=$AS
  3125. # DLL creation program.
  3126. DLLTOOL=$DLLTOOL
  3127. # Object dumper program.
  3128. OBJDUMP=$OBJDUMP
  3129. # Whether or not to build shared libraries.
  3130. build_libtool_libs=$enable_shared
  3131. # Whether or not to build static libraries.
  3132. build_old_libs=$enable_static
  3133. # What type of objects to build.
  3134. pic_mode=$pic_mode
  3135. # Whether or not to optimize for fast installation.
  3136. fast_install=$enable_fast_install
  3137. # The host system.
  3138. host_alias=$host_alias
  3139. host=$host
  3140. host_os=$host_os
  3141. # The build system.
  3142. build_alias=$build_alias
  3143. build=$build
  3144. build_os=$build_os
  3145. # A sed program that does not truncate output.
  3146. SED=$lt_SED
  3147. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  3148. Xsed="$SED -e 1s/^X//"
  3149. # A grep program that handles long lines.
  3150. GREP=$lt_GREP
  3151. # An ERE matcher.
  3152. EGREP=$lt_EGREP
  3153. # A literal string matcher.
  3154. FGREP=$lt_FGREP
  3155. # A BSD- or MS-compatible name lister.
  3156. NM=$lt_NM
  3157. # Whether we need soft or hard links.
  3158. LN_S=$lt_LN_S
  3159. # What is the maximum length of a command?
  3160. max_cmd_len=$max_cmd_len
  3161. # Object file suffix (normally "o").
  3162. objext=$ac_objext
  3163. # Executable file suffix (normally "").
  3164. exeext=$exeext
  3165. # whether the shell understands "unset".
  3166. lt_unset=$lt_unset
  3167. # turn spaces into newlines.
  3168. SP2NL=$lt_lt_SP2NL
  3169. # turn newlines into spaces.
  3170. NL2SP=$lt_lt_NL2SP
  3171. # How to create reloadable object files.
  3172. reload_flag=$lt_reload_flag
  3173. reload_cmds=$lt_reload_cmds
  3174. # Method to check whether dependent libraries are shared objects.
  3175. deplibs_check_method=$lt_deplibs_check_method
  3176. # Command to use when deplibs_check_method == "file_magic".
  3177. file_magic_cmd=$lt_file_magic_cmd
  3178. # The archiver.
  3179. AR=$lt_AR
  3180. AR_FLAGS=$lt_AR_FLAGS
  3181. # A symbol stripping program.
  3182. STRIP=$lt_STRIP
  3183. # Commands used to install an old-style archive.
  3184. RANLIB=$lt_RANLIB
  3185. old_postinstall_cmds=$lt_old_postinstall_cmds
  3186. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  3187. # A C compiler.
  3188. LTCC=$lt_CC
  3189. # LTCC compiler flags.
  3190. LTCFLAGS=$lt_CFLAGS
  3191. # Take the output of nm and produce a listing of raw symbols and C names.
  3192. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  3193. # Transform the output of nm in a proper C declaration.
  3194. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  3195. # Transform the output of nm in a C name address pair.
  3196. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  3197. # Transform the output of nm in a C name address pair when lib prefix is needed.
  3198. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
  3199. # The name of the directory that contains temporary libtool files.
  3200. objdir=$objdir
  3201. # Shell to use when invoking shell scripts.
  3202. SHELL=$lt_SHELL
  3203. # An echo program that does not interpret backslashes.
  3204. ECHO=$lt_ECHO
  3205. # Used to examine libraries when file_magic_cmd begins with "file".
  3206. MAGIC_CMD=$MAGIC_CMD
  3207. # Must we lock files when doing compilation?
  3208. need_locks=$lt_need_locks
  3209. # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
  3210. DSYMUTIL=$lt_DSYMUTIL
  3211. # Tool to change global to local symbols on Mac OS X.
  3212. NMEDIT=$lt_NMEDIT
  3213. # Tool to manipulate fat objects and archives on Mac OS X.
  3214. LIPO=$lt_LIPO
  3215. # ldd/readelf like tool for Mach-O binaries on Mac OS X.
  3216. OTOOL=$lt_OTOOL
  3217. # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
  3218. OTOOL64=$lt_OTOOL64
  3219. # Old archive suffix (normally "a").
  3220. libext=$libext
  3221. # Shared library suffix (normally ".so").
  3222. shrext_cmds=$lt_shrext_cmds
  3223. # The commands to extract the exported symbol list from a shared archive.
  3224. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  3225. # Variables whose values should be saved in libtool wrapper scripts and
  3226. # restored at link time.
  3227. variables_saved_for_relink=$lt_variables_saved_for_relink
  3228. # Do we need the "lib" prefix for modules?
  3229. need_lib_prefix=$need_lib_prefix
  3230. # Do we need a version for libraries?
  3231. need_version=$need_version
  3232. # Library versioning type.
  3233. version_type=$version_type
  3234. # Shared library runtime path variable.
  3235. runpath_var=$runpath_var
  3236. # Shared library path variable.
  3237. shlibpath_var=$shlibpath_var
  3238. # Is shlibpath searched before the hard-coded library search path?
  3239. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  3240. # Format of library name prefix.
  3241. libname_spec=$lt_libname_spec
  3242. # List of archive names.  First name is the real one, the rest are links.
  3243. # The last name is the one that the linker finds with -lNAME
  3244. library_names_spec=$lt_library_names_spec
  3245. # The coded name of the library, if different from the real name.
  3246. soname_spec=$lt_soname_spec
  3247. # Command to use after installation of a shared archive.
  3248. postinstall_cmds=$lt_postinstall_cmds
  3249. # Command to use after uninstallation of a shared archive.
  3250. postuninstall_cmds=$lt_postuninstall_cmds
  3251. # Commands used to finish a libtool library installation in a directory.
  3252. finish_cmds=$lt_finish_cmds
  3253. # As "finish_cmds", except a single script fragment to be evaled but
  3254. # not shown.
  3255. finish_eval=$lt_finish_eval
  3256. # Whether we should hardcode library paths into libraries.
  3257. hardcode_into_libs=$hardcode_into_libs
  3258. # Compile-time system search path for libraries.
  3259. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  3260. # Run-time system search path for libraries.
  3261. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  3262. # Whether dlopen is supported.
  3263. dlopen_support=$enable_dlopen
  3264. # Whether dlopen of programs is supported.
  3265. dlopen_self=$enable_dlopen_self
  3266. # Whether dlopen of statically linked programs is supported.
  3267. dlopen_self_static=$enable_dlopen_self_static
  3268. # Commands to strip libraries.
  3269. old_striplib=$lt_old_striplib
  3270. striplib=$lt_striplib
  3271. # The linker used to build libraries.
  3272. LD=$lt_LD
  3273. # Commands used to build an old-style archive.
  3274. old_archive_cmds=$lt_old_archive_cmds
  3275. # A language specific compiler.
  3276. CC=$lt_compiler
  3277. # Is the compiler the GNU compiler?
  3278. with_gcc=$GCC
  3279. # Compiler flag to turn off builtin functions.
  3280. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  3281. # How to pass a linker flag through the compiler.
  3282. wl=$lt_lt_prog_compiler_wl
  3283. # Additional compiler flags for building library objects.
  3284. pic_flag=$lt_lt_prog_compiler_pic
  3285. # Compiler flag to prevent dynamic linking.
  3286. link_static_flag=$lt_lt_prog_compiler_static
  3287. # Does compiler simultaneously support -c and -o options?
  3288. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  3289. # Whether or not to add -lc for building shared libraries.
  3290. build_libtool_need_lc=$archive_cmds_need_lc
  3291. # Whether or not to disallow shared libs when runtime libs are static.
  3292. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  3293. # Compiler flag to allow reflexive dlopens.
  3294. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  3295. # Compiler flag to generate shared objects directly from archives.
  3296. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  3297. # Whether the compiler copes with passing no objects directly.
  3298. compiler_needs_object=$lt_compiler_needs_object
  3299. # Create an old-style archive from a shared archive.
  3300. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  3301. # Create a temporary old-style archive to link instead of a shared archive.
  3302. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  3303. # Commands used to build a shared archive.
  3304. archive_cmds=$lt_archive_cmds
  3305. archive_expsym_cmds=$lt_archive_expsym_cmds
  3306. # Commands used to build a loadable module if different from building
  3307. # a shared archive.
  3308. module_cmds=$lt_module_cmds
  3309. module_expsym_cmds=$lt_module_expsym_cmds
  3310. # Whether we are building with GNU ld or not.
  3311. with_gnu_ld=$lt_with_gnu_ld
  3312. # Flag that allows shared libraries with undefined symbols to be built.
  3313. allow_undefined_flag=$lt_allow_undefined_flag
  3314. # Flag that enforces no undefined symbols.
  3315. no_undefined_flag=$lt_no_undefined_flag
  3316. # Flag to hardcode $libdir into a binary during linking.
  3317. # This must work even if $libdir does not exist
  3318. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  3319. # If ld is used when linking, flag to hardcode $libdir into a binary
  3320. # during linking.  This must work even if $libdir does not exist.
  3321. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
  3322. # Whether we need a single "-rpath" flag with a separated argument.
  3323. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  3324. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3325. # DIR into the resulting binary.
  3326. hardcode_direct=$hardcode_direct
  3327. # Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  3328. # DIR into the resulting binary and the resulting library dependency is
  3329. # "absolute",i.e impossible to change by setting ${shlibpath_var} if the
  3330. # library is relocated.
  3331. hardcode_direct_absolute=$hardcode_direct_absolute
  3332. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  3333. # into the resulting binary.
  3334. hardcode_minus_L=$hardcode_minus_L
  3335. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  3336. # into the resulting binary.
  3337. hardcode_shlibpath_var=$hardcode_shlibpath_var
  3338. # Set to "yes" if building a shared library automatically hardcodes DIR
  3339. # into the library and all subsequent libraries and executables linked
  3340. # against it.
  3341. hardcode_automatic=$hardcode_automatic
  3342. # Set to yes if linker adds runtime paths of dependent libraries
  3343. # to runtime path list.
  3344. inherit_rpath=$inherit_rpath
  3345. # Whether libtool must link a program against all its dependency libraries.
  3346. link_all_deplibs=$link_all_deplibs
  3347. # Fix the shell variable $srcfile for the compiler.
  3348. fix_srcfile_path=$lt_fix_srcfile_path
  3349. # Set to "yes" if exported symbols are required.
  3350. always_export_symbols=$always_export_symbols
  3351. # The commands to list exported symbols.
  3352. export_symbols_cmds=$lt_export_symbols_cmds
  3353. # Symbols that should not be listed in the preloaded symbols.
  3354. exclude_expsyms=$lt_exclude_expsyms
  3355. # Symbols that must always be exported.
  3356. include_expsyms=$lt_include_expsyms
  3357. # Commands necessary for linking programs (against libraries) with templates.
  3358. prelink_cmds=$lt_prelink_cmds
  3359. # Specify filename containing input files.
  3360. file_list_spec=$lt_file_list_spec
  3361. # How to hardcode a shared library path into an executable.
  3362. hardcode_action=$hardcode_action
  3363. # ### END LIBTOOL CONFIG
  3364. _LT_EOF
  3365.   case $host_os in
  3366.   aix3*)
  3367.     cat <<_LT_EOF >> "$cfgfile"
  3368. # AIX sometimes has problems with the GCC collect2 program.  For some
  3369. # reason, if we set the COLLECT_NAMES environment variable, the problems
  3370. # vanish in a puff of smoke.
  3371. if test "X${COLLECT_NAMES+set}" != Xset; then
  3372.   COLLECT_NAMES=
  3373.   export COLLECT_NAMES
  3374. fi
  3375. _LT_EOF
  3376.     ;;
  3377.   esac
  3378. ltmain="$ac_aux_dir/ltmain.sh"
  3379.   # We use sed instead of cat because bash on DJGPP gets confused if
  3380.   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
  3381.   # text mode, it properly converts lines to CR/LF.  This bash problem
  3382.   # is reportedly fixed, but why not run on old versions too?
  3383.   sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" 
  3384.     || (rm -f "$cfgfile"; exit 1)
  3385.   case $xsi_shell in
  3386.   yes)
  3387.     cat << _LT_EOF >> "$cfgfile"
  3388. # func_dirname file append nondir_replacement
  3389. # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
  3390. # otherwise set result to NONDIR_REPLACEMENT.
  3391. func_dirname ()
  3392. {
  3393.   case ${1} in
  3394.     */*) func_dirname_result="${1%/*}${2}" ;;
  3395.     *  ) func_dirname_result="${3}" ;;
  3396.   esac
  3397. }
  3398. # func_basename file
  3399. func_basename ()
  3400. {
  3401.   func_basename_result="${1##*/}"
  3402. }
  3403. # func_dirname_and_basename file append nondir_replacement
  3404. # perform func_basename and func_dirname in a single function
  3405. # call:
  3406. #   dirname:  Compute the dirname of FILE.  If nonempty,
  3407. #             add APPEND to the result, otherwise set result
  3408. #             to NONDIR_REPLACEMENT.
  3409. #             value returned in "$func_dirname_result"
  3410. #   basename: Compute filename of FILE.
  3411. #             value retuned in "$func_basename_result"
  3412. # Implementation must be kept synchronized with func_dirname
  3413. # and func_basename. For efficiency, we do not delegate to
  3414. # those functions but instead duplicate the functionality here.
  3415. func_dirname_and_basename ()
  3416. {
  3417.   case ${1} in
  3418.     */*) func_dirname_result="${1%/*}${2}" ;;
  3419.     *  ) func_dirname_result="${3}" ;;
  3420.   esac
  3421.   func_basename_result="${1##*/}"
  3422. }
  3423. # func_stripname prefix suffix name
  3424. # strip PREFIX and SUFFIX off of NAME.
  3425. # PREFIX and SUFFIX must not contain globbing or regex special
  3426. # characters, hashes, percent signs, but SUFFIX may contain a leading
  3427. # dot (in which case that matches only a dot).
  3428. func_stripname ()
  3429. {
  3430.   # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  3431.   # positional parameters, so assign one to ordinary parameter first.
  3432.   func_stripname_result=${3}
  3433.   func_stripname_result=${func_stripname_result#"${1}"}
  3434.   func_stripname_result=${func_stripname_result%"${2}"}
  3435. }
  3436. # func_opt_split
  3437. func_opt_split ()
  3438. {
  3439.   func_opt_split_opt=${1%%=*}
  3440.   func_opt_split_arg=${1#*=}
  3441. }
  3442. # func_lo2o object
  3443. func_lo2o ()
  3444. {
  3445.   case ${1} in
  3446.     *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  3447.     *)    func_lo2o_result=${1} ;;
  3448.   esac
  3449. }
  3450. # func_xform libobj-or-source
  3451. func_xform ()
  3452. {
  3453.   func_xform_result=${1%.*}.lo
  3454. }
  3455. # func_arith arithmetic-term...
  3456. func_arith ()
  3457. {
  3458.   func_arith_result=$(( $* ))
  3459. }
  3460. # func_len string
  3461. # STRING may not start with a hyphen.
  3462. func_len ()
  3463. {
  3464.   func_len_result=${#1}
  3465. }
  3466. _LT_EOF
  3467.     ;;
  3468.   *) # Bourne compatible functions.
  3469.     cat << _LT_EOF >> "$cfgfile"
  3470. # func_dirname file append nondir_replacement
  3471. # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
  3472. # otherwise set result to NONDIR_REPLACEMENT.
  3473. func_dirname ()
  3474. {
  3475.   # Extract subdirectory from the argument.
  3476.   func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
  3477.   if test "X$func_dirname_result" = "X${1}"; then
  3478.     func_dirname_result="${3}"
  3479.   else
  3480.     func_dirname_result="$func_dirname_result${2}"
  3481.   fi
  3482. }
  3483. # func_basename file
  3484. func_basename ()
  3485. {
  3486.   func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
  3487. }
  3488. # func_stripname prefix suffix name
  3489. # strip PREFIX and SUFFIX off of NAME.
  3490. # PREFIX and SUFFIX must not contain globbing or regex special
  3491. # characters, hashes, percent signs, but SUFFIX may contain a leading
  3492. # dot (in which case that matches only a dot).
  3493. # func_strip_suffix prefix name
  3494. func_stripname ()
  3495. {
  3496.   case ${2} in
  3497.     .*) func_stripname_result=`$ECHO "X${3}" 
  3498.            | $Xsed -e "s%^${1}%%" -e "s%\\${2}$%%"`;;
  3499.     *)  func_stripname_result=`$ECHO "X${3}" 
  3500.            | $Xsed -e "s%^${1}%%" -e "s%${2}$%%"`;;
  3501.   esac
  3502. }
  3503. # sed scripts:
  3504. my_sed_long_opt='1s/^(-[^=]*)=.*/1/;q'
  3505. my_sed_long_arg='1s/^-[^=]*=//'
  3506. # func_opt_split
  3507. func_opt_split ()
  3508. {
  3509.   func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
  3510.   func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
  3511. }
  3512. # func_lo2o object
  3513. func_lo2o ()
  3514. {
  3515.   func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
  3516. }
  3517. # func_xform libobj-or-source
  3518. func_xform ()
  3519. {
  3520.   func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/.[^.]*$/.lo/'`
  3521. }
  3522. # func_arith arithmetic-term...
  3523. func_arith ()
  3524. {
  3525.   func_arith_result=`expr "$@"`
  3526. }
  3527. # func_len string
  3528. # STRING may not start with a hyphen.
  3529. func_len ()
  3530. {
  3531.   func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
  3532. }
  3533. _LT_EOF
  3534. esac
  3535. case $lt_shell_append in
  3536.   yes)
  3537.     cat << _LT_EOF >> "$cfgfile"
  3538. # func_append var value
  3539. # Append VALUE to the end of shell variable VAR.
  3540. func_append ()
  3541. {
  3542.   eval "$1+=$2"
  3543. }
  3544. _LT_EOF
  3545.     ;;
  3546.   *)
  3547.     cat << _LT_EOF >> "$cfgfile"
  3548. # func_append var value
  3549. # Append VALUE to the end of shell variable VAR.
  3550. func_append ()
  3551. {
  3552.   eval "$1=$$1$2"
  3553. }
  3554. _LT_EOF
  3555.     ;;
  3556.   esac
  3557.   sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" 
  3558.     || (rm -f "$cfgfile"; exit 1)
  3559.   mv -f "$cfgfile" "$ofile" ||
  3560.     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  3561.   chmod +x "$ofile"
  3562.  ;;
  3563.   esac
  3564. done # for ac_tag
  3565. { (exit 0); exit 0; }
  3566. _ACEOF
  3567. chmod +x $CONFIG_STATUS
  3568. ac_clean_files=$ac_clean_files_save
  3569. test $ac_write_fail = 0 ||
  3570.   { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5
  3571. $as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;}
  3572.    { (exit 1); exit 1; }; }
  3573. # configure is writing to config.log, and then calls config.status.
  3574. # config.status does its own redirection, appending to config.log.
  3575. # Unfortunately, on DOS this fails, as config.log is still kept open
  3576. # by configure, so config.status won't be able to write to it; its
  3577. # output is simply discarded.  So we exec the FD to /dev/null,
  3578. # effectively closing config.log, so it can be properly (re)opened and
  3579. # appended to by config.status.  When coming back to configure, we
  3580. # need to make the FD available again.
  3581. if test "$no_create" != yes; then
  3582.   ac_cs_success=:
  3583.   ac_config_status_args=
  3584.   test "$silent" = yes &&
  3585.     ac_config_status_args="$ac_config_status_args --quiet"
  3586.   exec 5>/dev/null
  3587.   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  3588.   exec 5>>config.log
  3589.   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  3590.   # would make configure fail if this is the last instruction.
  3591.   $ac_cs_success || { (exit 1); exit 1; }
  3592. fi
  3593. if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  3594.   { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
  3595. $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
  3596. fi